fix(composio): stop direct-mode invalid key polling (#4318)

This commit is contained in:
YOMXXX
2026-06-30 20:20:24 +05:30
committed by GitHub
parent 943ece9c14
commit b286b2e226
13 changed files with 592 additions and 46 deletions
+9
View File
@@ -197,6 +197,15 @@ export function handleIntegrations(ctx) {
// (chat/completions is handled by routes/llm.mjs ahead of this route)
// ── Composio ───────────────────────────────────────────────
if (
method === "GET" &&
/^\/(?:api\/v3\/)?connected_accounts\/?(\?.*)?$/.test(url)
) {
const items = parseBehaviorJson("composioDirectConnectedAccounts", []);
json(res, 200, { items });
return true;
}
if (
method === "GET" &&
/^\/agent-integrations\/composio\/toolkits\/?(\?.*)?$/.test(url)