feat: add per-parameter pages for long-tail search#82
Merged
Conversation
Each LLM parameter now gets its own page at /parameters/<slug> with a by-model table of defaults, ranges, and conditions. The glossary becomes the hub that links to every parameter page. Model pages gain jump-nav, per-row anchors, links to each parameter page, and a plain-language parameter summary. Sitemap lastmod now reads each model's git commit date instead of the build date. Parameter pages are added to the sitemap and llms.txt, and carry DefinedTerm structured data.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
💭 Why
The catalog ranks one model at a time, but parameters had no page of their own. Searches like "gpt-4o temperature range" or "what is top_p" had nowhere to land. Everything lived on one shared glossary page.
✨ What changed
/parameters/<slug>with a by-model table of each model's default, range, and gating conditions.lastmodreads each model's git commit date instead of the build date.llms.txt, withDefinedTermstructured data.👤 For users
Anyone searching for a single parameter lands on a dedicated page showing its default and valid range across every model that accepts it (temperature alone covers 143 models).
🔧 For operators
After deploy, resubmit
sitemap.xmlin Google Search Console so the 60 new parameter URLs get crawled.📝 Notes
Adds 60 parameter pages (sitemap grows to 275 URLs). A build-time guard rejects slug collisions. Model-by-parameter pages are deliberately left for later, once these are indexed.