feat: LlmUserModel

This commit is contained in:
martsforever
2026-04-01 15:01:47 +08:00
parent 9a663619ca
commit e6291f82c6
2 changed files with 120 additions and 0 deletions
+2
View File
@@ -2,6 +2,7 @@ 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.LlmUserModel import add_llm_user_route
# /*@formatter:off*/
routes = [
@@ -9,5 +10,6 @@ routes = [
add_test_route, # 测试接口
add_graph_proxy_route, # 代理自定义工作流
add_custom_stream_route, # 自定义流式接口
add_llm_user_route, # LlmUser 测试用户模块
]
# /*@formatter:on*/