fix: #33 内置多模态工具现在在工具市场 /api/v1/tools 中可见

list_tools 端点合并内置工具(image_ocr/image_vision/speech_to_text/text_to_speech 等),
按 scope=public/all 时自动包含,无需额外种子到 DB。

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
renjianbo
2026-05-06 22:13:41 +08:00
parent 9054f42cda
commit 5b5eb84dfb
9 changed files with 1095 additions and 7 deletions

View File

@@ -141,6 +141,18 @@ const router = createRouter({
name: 'plugin-market',
component: () => import('@/views/PluginMarket.vue'),
meta: { requiresAuth: true }
},
{
path: '/agent-orchestration',
name: 'agent-orchestration',
component: () => import('@/views/AgentOrchestration.vue'),
meta: { requiresAuth: true }
},
{
path: '/agent-market',
name: 'agent-market',
component: () => import('@/views/AgentMarket.vue'),
meta: { requiresAuth: true }
}
]
})