FYI, 500 error on the "LLMs section" link in <http...
# feedback
h
FYI, 500 error on the "LLMs section" link in https://docs.all-hands.dev/usage/how-to/gui-mode
l
@nutritious-balloon-65098 fix this, it’s due to the link including the “/usage” directory twice: https://docs.all-hands.dev/usage/how-to/usage/llms/llms.md
n
I'm on it! Graham Neubig can track my progress here.
l
This is the correct one: https://docs.all-hands.dev/usage/llms/llms . it's not only usage, but also how-to.
n
Summary I successfully fixed the broken link in the OpenHands documentation that was causing a 500 error due to the "/usage" directory being included twice in the URL path. What I Fixed Problem: The link
[LLMs section](usage/llms/llms.md)
in
/docs/usage/how-to/gui-mode.mdx
was generating the incorrect URL
<https://docs.all-hands.dev/usage/how-to/usage/llms/llms.md>
Solution: Changed the link to
[LLMs section](/usage/llms/llms)
which: • Uses an absolute path starting with
/usage/
to prevent path duplication • Removes the incorrect
.md
extension (the actual file is
llms.mdx
) • Points correctly to the LLMs overview documentation Changes MadeFile modified:
docs/usage/how-to/gui-mode.mdx
(line 157) • Change: Single line fix from relative to absolute path • Verification: Confirmed target file exists and no other similar issues exist Pull Request Created PR #9121: https://github.com/All-Hands-AI/OpenHands/pull/9121 The fix is minimal, targeted, and directly addresses the broken link issue you reported. The documentation link should now work correctly without the double "/usage" path problem.
l
@nutritious-balloon-65098 I see that the mintlify deployment was skipped in CI, why?
n
I'm on it! Graham Neubig can continue tracking my progress here.
Summary I successfully fixed the broken documentation link that was causing a 500 error due to a double "/usage" path issue. Problem Identified The link in
/docs/usage/how-to/gui-mode.mdx
was incorrectly formatted as:
Copy code
[LLMs section](usage/llms/llms.md)
This caused the documentation system to generate the broken URL:
<https://docs.all-hands.dev/usage/how-to/usage/llms/llms.md>
Solution Implemented Fixed the link to use the correct absolute path:
Copy code
[LLMs section](/usage/llms/llms)
Changes MadeFile Modified:
docs/usage/how-to/gui-mode.mdx
(line 157) • Change: Updated link from
(usage/llms/llms.md)
to
(/usage/llms/llms)
Result: Eliminates the double "/usage" path and points to the correct LLMs overview page Verification Completed Confirmed target file
/docs/usage/llms/llms.mdx
exists Verified no other similar link issues in the documentation Pre-commit hooks passed successfully Changes committed and pushed to branch
fix-llms-link-docs
Pull request created: https://github.com/All-Hands-AI/OpenHands/pull/9121 Regarding Mintlify Deployment The Mintlify deployment was skipped because it only deploys from the main branch, not from feature branches or pull requests. This is standard behavior for documentation services. The fix will be deployed automatically once the PR is merged to main. The broken link will be resolved once this PR is merged and deployed.
❤️ 1
l
Thanks for the tip @helpful-solstice-50130!
💯 1