feat: add shadow LangGraph orchestrator runtime

This commit is contained in:
john
2026-07-24 21:25:40 +08:00
parent 46ea22b342
commit 24336d0178
29 changed files with 3247 additions and 25 deletions
+1 -1
View File
@@ -252,7 +252,7 @@ export function createAdminApi({
if (!orchestratorConfigService?.getRuntimeState) {
return res.status(503).json({ message: 'Orchestrator 配置服务未启用' });
}
return res.json(await orchestratorConfigService.getRuntimeState());
return res.json(await orchestratorConfigService.getRuntimeState({ probe: true }));
});
adminApi.get('/skill-runtime/config', requireAdmin, async (_req, res) => {