feat: 大模型池添加视觉能力开关配置

This commit is contained in:
2026-04-14 10:56:50 +08:00
parent d3e80c0afb
commit 54290019c3
5 changed files with 18 additions and 3 deletions

View File

@@ -120,6 +120,8 @@ async def get_providers(db: Session = Depends(get_db)):
"default_model": p.default_model,
"supports_thinking": p.supports_thinking,
"thinking_model": p.thinking_model,
"supports_vision": p.supports_vision,
"vision_model": p.vision_model,
"max_tokens": p.max_tokens,
"temperature": p.temperature,
"is_active": p.is_active,