fix(webui): add skillhub proxy to resolve 404#581
Merged
yaozheng-fang merged 2 commits intoJun 5, 2026
Conversation
yaozheng-fang
approved these changes
Jun 5, 2026
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.
Summary
修复生产环境下技能搜索返回 404 的问题,通过在 FastAPI 后端添加
/skillhub代理路由。Bug Description
用户在自定义创建 Agent 时使用技能搜索功能,所有请求返回 404 错误。开发环境(Vite dev server)正常工作,但生产环境(
veadk frontend命令)出现问题。Root Cause:
/skillhub代理到https://skills.volces.comChanges
/skillhub/{path:path}代理路由httpx.AsyncClient异步转发请求到https://skills.volces.comexempt_prefixes中添加/skillhub(未登录用户也可搜索技能)Testing
✅ 技能搜索功能恢复正常(搜索"画图"、"PDF"等关键词返回结果列表)
✅ 其他 API 路由不受影响
✅ OAuth2 登录流程正常
✅ 静态资源和 WebSocket 连接正常