diff --git a/wwwroot/api/agent_model_options.dspy b/wwwroot/api/agent_model_options.dspy index f37d925..0fb00b3 100644 --- a/wwwroot/api/agent_model_options.dspy +++ b/wwwroot/api/agent_model_options.dspy @@ -2,6 +2,8 @@ # 2026-09-04 收敛:实现统一在模型治理模块 pipeline_llm.selection.model_options, # 本文件只作 URL 入口(前端 AgentIO 的 model_dataurl 指向此处)。 # 返回格式与历史一致:value/model_id=模型id,model_id_text=模型名,含 selected 标记。 +# capabilities='chat':会话 agent 只列文本输出对话能力(t2t/i2t/m2t), +# 过滤掉 embedding/rerank/图视频生成等非对话模型(2026-09-06 用户定夺)。 uid = await get_user() org_id = (await get_userorgid()) or '' @@ -9,5 +11,6 @@ session_id = (params_kw or {}).get('session_id', '') or '' pipeline_id = (params_kw or {}).get('pipeline_id', '') or '' rows = await llm_model_options(org_id, uid=uid or '', session_id=session_id, - pipeline_id=pipeline_id, value_field='id') + pipeline_id=pipeline_id, value_field='id', + capabilities='chat') return rows