docs: fix mangled models link in video-generation guide#64
Open
DeweyMarco wants to merge 1 commit into
Open
Conversation
The Fern→Mintlify migration rewrote the "model list by video output" link from the website catalog (openrouter.ai/models?output_modalities=video) to a docs path (openrouter.ai/docs/guides/overview/models?...). The docs page ignores the output_modalities filter, so the link no longer took readers to the filtered video-model listing it promises. Later sync PRs repaired the mangled curl blocks in this file (and in tts/stt), but this prose link was missed because the fixups were curl-focused and Mintlify's link checker only validates internal links. Restores the website catalog URL, matching image-generation.mdx. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
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.
What
The video-generation guide's "model list by video output" link pointed at a docs path instead of the website model catalog:
Why
The Fern→Mintlify migration rewrote several website/API URLs into docs paths. It also mangled the curl blocks in this file and in
tts.mdx/stt.mdx(some rewritten twice, e.g./api/v1/docs/guides/overview/docs/guides/overview/models). Later sync PRs repaired all the curl blocks, but this one prose link slipped through — the fixups were curl-focused, and Mintlify's broken-link checker only validates internal relative links, so an externalopenrouter.ai/docs/...URL was never flagged.Both URLs return HTTP 200, so nothing surfaced it as broken. The difference is where they land: the docs path resolves to the guide page and silently ignores
?output_modalities=video, whileopenrouter.ai/models?output_modalities=videois the interactive catalog that honors the filter. This restores the intended behavior and matches howimage-generation.mdxwrites the equivalent link.Verification
mint broken-links— this file is not among the flagged files.curl "https://openrouter.ai/api/v1/models?output_modalities=video"→200, 16 models.api/v1/docs/guides, doubled-prefix, or query-bearing docs URLs.🤖 Generated with Claude Code