Files
ai-agent-server/app/routes.py
T
2026-04-02 00:10:18 +08:00

18 lines
789 B
Python

from app.controller.add_complex_search_route import add_complex_search_route
from app.controller.add_custom_stream_route import add_custom_stream_route
from app.controller.add_docs_route import add_docs_route
from app.controller.add_graph_proxy_route import add_graph_proxy_route
from app.controller.add_test_route import add_test_route
from app.model.LlmDemoMdel import add_llm_demo_route
# /*@formatter:off*/
routes = [
add_docs_route, # 代理文档静态资源
add_test_route, # 测试接口
add_graph_proxy_route, # 代理自定义工作流
add_custom_stream_route, # 自定义流式接口
add_llm_demo_route, # LlmDemo 测试用户模块
add_complex_search_route, # 多条件组合查询案例
]
# /*@formatter:on*/