@fudrouter/fsrouter 0.6.62 → 0.6.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/copyJs.js +0 -4
- package/dist/lib/oauth/constants/oauth.js +2 -2
- package/dist/lib/oauth/providers.js +1 -1
- package/dist/routes/providers/[id]/test/testUtils.js +3 -3
- package/dist/shared/constants/models.js +2 -2
- package/dist/sse/handlers/chat.js +10 -10
- package/dist/sse/handlers/embeddings.js +3 -3
- package/dist/sse/handlers/fetch.js +4 -4
- package/dist/sse/handlers/imageGeneration.js +5 -5
- package/dist/sse/handlers/search.js +4 -4
- package/dist/sse/handlers/stt.js +3 -3
- package/dist/sse/handlers/tts.js +4 -4
- package/dist/sse/handlers/videoGeneration.js +4 -4
- package/dist/sse/services/auth.js +2 -2
- package/dist/sse/services/model.js +1 -1
- package/dist/sse/services/tokenRefresh.js +3 -3
- package/open-sse/AGENTS.md +39 -0
- package/open-sse/config/anthropicHeaders.js +87 -0
- package/open-sse/config/appConstants.js +238 -0
- package/open-sse/config/audioRegistry.js +506 -0
- package/open-sse/config/cliFingerprints.js +304 -0
- package/open-sse/config/codexInstructions.js +119 -0
- package/open-sse/config/codexQuotaScopes.js +42 -0
- package/open-sse/config/constants.js +4 -0
- package/open-sse/config/contextEditing.js +68 -0
- package/open-sse/config/credentialLoader.js +83 -0
- package/open-sse/config/defaultThinkingSignature.js +12 -0
- package/open-sse/config/embeddingRegistry.js +264 -0
- package/open-sse/config/errorConfig.js +96 -0
- package/open-sse/config/freeModelCatalog.data.js +121 -0
- package/open-sse/config/freeModelCatalog.js +90 -0
- package/open-sse/config/freeTierCatalog.js +81 -0
- package/open-sse/config/googleTtsLanguages.js +62 -0
- package/open-sse/config/imageParamDefs.js +360 -0
- package/open-sse/config/imageRegistry.js +493 -0
- package/open-sse/config/kiroConstants.js +268 -0
- package/open-sse/config/mediaConfig.js +27 -0
- package/open-sse/config/mediaServiceKinds.js +71 -0
- package/open-sse/config/models.js +13 -0
- package/open-sse/config/moderationRegistry.js +71 -0
- package/open-sse/config/musicRegistry.js +99 -0
- package/open-sse/config/ocrRegistry.js +61 -0
- package/open-sse/config/ollamaModels.js +19 -0
- package/open-sse/config/providerErrorRules.js +114 -0
- package/open-sse/config/providerFieldStrips.js +35 -0
- package/open-sse/config/providerHeaderProfiles.js +191 -0
- package/open-sse/config/providerModels.js +106 -0
- package/open-sse/config/providerRegistry.js +16 -0
- package/open-sse/config/providers.js +19 -0
- package/open-sse/config/registryUtils.js +106 -0
- package/open-sse/config/rerankRegistry.js +177 -0
- package/open-sse/config/runtimeConfig.js +96 -0
- package/open-sse/config/runway.js +39 -0
- package/open-sse/config/searchRegistry.js +153 -0
- package/open-sse/config/toolCloaking.js +199 -0
- package/open-sse/config/ttsModels.js +129 -0
- package/open-sse/config/videoRegistry.js +207 -0
- package/open-sse/executors/adapta-web.js +435 -0
- package/open-sse/executors/antigravity.js +534 -0
- package/open-sse/executors/antigravityUpstreamError.js +13 -0
- package/open-sse/executors/auggie.js +437 -0
- package/open-sse/executors/azure-openai.js +32 -0
- package/open-sse/executors/azure.js +57 -0
- package/open-sse/executors/base.js +181 -0
- package/open-sse/executors/bedrock.js +633 -0
- package/open-sse/executors/blackbox-web.js +578 -0
- package/open-sse/executors/chatgpt-web.js +2042 -0
- package/open-sse/executors/chipotle.js +357 -0
- package/open-sse/executors/claude-web-with-auto-refresh.js +73 -0
- package/open-sse/executors/claude-web.js +586 -0
- package/open-sse/executors/cliproxyapi.js +296 -0
- package/open-sse/executors/cloudflare-ai.js +46 -0
- package/open-sse/executors/codebuddy-cn.js +40 -0
- package/open-sse/executors/codex.js +1324 -0
- package/open-sse/executors/commandCode.js +558 -0
- package/open-sse/executors/commandcode.js +88 -0
- package/open-sse/executors/copilot-m365-connection.js +176 -0
- package/open-sse/executors/copilot-m365-frames.js +192 -0
- package/open-sse/executors/copilot-m365-web.js +299 -0
- package/open-sse/executors/copilot-web.js +580 -0
- package/open-sse/executors/cursor.js +795 -0
- package/open-sse/executors/deepseek-web-with-auto-refresh.js +150 -0
- package/open-sse/executors/deepseek-web.js +875 -0
- package/open-sse/executors/default.js +430 -0
- package/open-sse/executors/devin-cli.js +351 -0
- package/open-sse/executors/doubao-web.js +550 -0
- package/open-sse/executors/duckduckgo-web.js +629 -0
- package/open-sse/executors/forceResponsesUpstream.js +33 -0
- package/open-sse/executors/gemini-business.js +320 -0
- package/open-sse/executors/gemini-cli.js +89 -0
- package/open-sse/executors/gemini-web.js +297 -0
- package/open-sse/executors/github.js +379 -0
- package/open-sse/executors/gitlab.js +569 -0
- package/open-sse/executors/glm.js +361 -0
- package/open-sse/executors/grok-cli.js +119 -0
- package/open-sse/executors/grok-web.js +345 -0
- package/open-sse/executors/huggingchat.js +467 -0
- package/open-sse/executors/iflow.js +108 -0
- package/open-sse/executors/index.js +78 -0
- package/open-sse/executors/inner-ai.js +527 -0
- package/open-sse/executors/kimchi.js +123 -0
- package/open-sse/executors/kimi-web.js +325 -0
- package/open-sse/executors/kimi.js +97 -0
- package/open-sse/executors/kiro.js +503 -0
- package/open-sse/executors/kiroThinking.js +44 -0
- package/open-sse/executors/lmarena.js +395 -0
- package/open-sse/executors/mimo-free.js +167 -0
- package/open-sse/executors/mimocode.js +392 -0
- package/open-sse/executors/ninerouter.js +155 -0
- package/open-sse/executors/nlpcloud.js +438 -0
- package/open-sse/executors/ollama-local.js +14 -0
- package/open-sse/executors/opencode-go.js +41 -0
- package/open-sse/executors/opencode.js +32 -0
- package/open-sse/executors/perplexity-web.js +581 -0
- package/open-sse/executors/poe-web.js +133 -0
- package/open-sse/executors/pollinations.js +95 -0
- package/open-sse/executors/puter.js +31 -0
- package/open-sse/executors/qoder.js +448 -0
- package/open-sse/executors/qwen-web.js +372 -0
- package/open-sse/executors/qwen.js +129 -0
- package/open-sse/executors/t3-chat-web.js +417 -0
- package/open-sse/executors/theoldllm.js +290 -0
- package/open-sse/executors/trae.js +418 -0
- package/open-sse/executors/v0-vercel-web.js +141 -0
- package/open-sse/executors/venice-web.js +142 -0
- package/open-sse/executors/vertex.js +131 -0
- package/open-sse/executors/vertexMedia.js +236 -0
- package/open-sse/executors/windsurf.js +560 -0
- package/open-sse/executors/xai.js +46 -0
- package/open-sse/executors/xiaomi-tokenplan.js +19 -0
- package/open-sse/executors/yuanbao-web.js +385 -0
- package/open-sse/executors/zed-hosted.js +281 -0
- package/open-sse/executors/zenmux-free.js +247 -0
- package/open-sse/handlers/audioSpeech.js +759 -0
- package/open-sse/handlers/audioTranscription.js +395 -0
- package/open-sse/handlers/audioTranslation.js +181 -0
- package/open-sse/handlers/chatCore/nonStreamingHandler.js +300 -0
- package/open-sse/handlers/chatCore/requestDetail.js +102 -0
- package/open-sse/handlers/chatCore/sseToJsonHandler.js +231 -0
- package/open-sse/handlers/chatCore/streamingHandler.js +95 -0
- package/open-sse/handlers/chatCore.js +404 -0
- package/open-sse/handlers/embeddingProviders/_base.js +4 -0
- package/open-sse/handlers/embeddingProviders/gemini.js +54 -0
- package/open-sse/handlers/embeddingProviders/index.js +23 -0
- package/open-sse/handlers/embeddingProviders/openai.js +39 -0
- package/open-sse/handlers/embeddingProviders/openaiCompatNode.js +13 -0
- package/open-sse/handlers/embeddingsCore.js +126 -0
- package/open-sse/handlers/fetch/index.js +237 -0
- package/open-sse/handlers/imageGenerationCore.js +230 -0
- package/open-sse/handlers/imageProviders/_base.js +31 -0
- package/open-sse/handlers/imageProviders/antigravity.js +73 -0
- package/open-sse/handlers/imageProviders/blackForestLabs.js +63 -0
- package/open-sse/handlers/imageProviders/cloudflareAi.js +207 -0
- package/open-sse/handlers/imageProviders/codex.js +217 -0
- package/open-sse/handlers/imageProviders/comfyui.js +25 -0
- package/open-sse/handlers/imageProviders/falAi.js +62 -0
- package/open-sse/handlers/imageProviders/gemini.js +40 -0
- package/open-sse/handlers/imageProviders/huggingface.js +38 -0
- package/open-sse/handlers/imageProviders/index.js +44 -0
- package/open-sse/handlers/imageProviders/leonardo.js +435 -0
- package/open-sse/handlers/imageProviders/nanobanana.js +79 -0
- package/open-sse/handlers/imageProviders/openai.js +61 -0
- package/open-sse/handlers/imageProviders/runwayml.js +72 -0
- package/open-sse/handlers/imageProviders/sdwebui.js +36 -0
- package/open-sse/handlers/imageProviders/stabilityAi.js +59 -0
- package/open-sse/handlers/imageProviders/weavy.js +222 -0
- package/open-sse/handlers/moderations.js +92 -0
- package/open-sse/handlers/ocr.js +89 -0
- package/open-sse/handlers/rerank.js +223 -0
- package/open-sse/handlers/responseSanitizer/reasoning.js +144 -0
- package/open-sse/handlers/responsesHandler.js +99 -0
- package/open-sse/handlers/search/callers.js +371 -0
- package/open-sse/handlers/search/chatSearch.js +409 -0
- package/open-sse/handlers/search/index.js +201 -0
- package/open-sse/handlers/search/normalizers.js +223 -0
- package/open-sse/handlers/search.js +1056 -0
- package/open-sse/handlers/sseParser.js +469 -0
- package/open-sse/handlers/sttCore.js +193 -0
- package/open-sse/handlers/ttsCore.js +74 -0
- package/open-sse/handlers/ttsProviders/_base.js +39 -0
- package/open-sse/handlers/ttsProviders/edgeTts.js +89 -0
- package/open-sse/handlers/ttsProviders/elevenlabs.js +48 -0
- package/open-sse/handlers/ttsProviders/gemini.js +117 -0
- package/open-sse/handlers/ttsProviders/genericFormats.js +169 -0
- package/open-sse/handlers/ttsProviders/googleTts.js +54 -0
- package/open-sse/handlers/ttsProviders/index.js +50 -0
- package/open-sse/handlers/ttsProviders/localDevice.js +87 -0
- package/open-sse/handlers/ttsProviders/minimax.js +59 -0
- package/open-sse/handlers/ttsProviders/openai.js +30 -0
- package/open-sse/handlers/ttsProviders/openrouter.js +70 -0
- package/open-sse/handlers/usageExtractor.js +93 -0
- package/open-sse/handlers/videoGenerationCore.js +119 -0
- package/open-sse/handlers/videoProviders/index.js +22 -0
- package/open-sse/handlers/videoProviders/leonardo.js +511 -0
- package/open-sse/handlers/videoProviders/weavy.js +198 -0
- package/open-sse/handlers/webFetch.js +200 -0
- package/open-sse/index.js +79 -0
- package/open-sse/mcp-server/audit.js +283 -0
- package/open-sse/mcp-server/catalog.js +184 -0
- package/open-sse/mcp-server/descriptionCompressor.js +175 -0
- package/open-sse/mcp-server/httpAuthContext.js +32 -0
- package/open-sse/mcp-server/httpTransport.js +229 -0
- package/open-sse/mcp-server/index.js +33 -0
- package/open-sse/mcp-server/mcpCallerIdentity.js +21 -0
- package/open-sse/mcp-server/runtimeHeartbeat.js +110 -0
- package/open-sse/mcp-server/schemas/a2a.js +153 -0
- package/open-sse/mcp-server/schemas/audit.js +17 -0
- package/open-sse/mcp-server/schemas/index.js +166 -0
- package/open-sse/mcp-server/schemas/pickFastestModel.js +90 -0
- package/open-sse/mcp-server/schemas/toolDefinition.js +0 -0
- package/open-sse/mcp-server/schemas/toolSearch.js +32 -0
- package/open-sse/mcp-server/schemas/tools.js +1219 -0
- package/open-sse/mcp-server/scopeEnforcement.js +80 -0
- package/open-sse/mcp-server/server.js +1168 -0
- package/open-sse/mcp-server/toolCardinality.js +78 -0
- package/open-sse/mcp-server/toolSearch/catalog.js +66 -0
- package/open-sse/mcp-server/toolSearch/handler.js +20 -0
- package/open-sse/mcp-server/toolSearch/index.js +10 -0
- package/open-sse/mcp-server/toolSearch/register.js +21 -0
- package/open-sse/mcp-server/toolSearch/search.js +55 -0
- package/open-sse/mcp-server/toolSearch/signature.js +67 -0
- package/open-sse/mcp-server/tools/advancedTools.js +893 -0
- package/open-sse/mcp-server/tools/agentSkillTools.js +69 -0
- package/open-sse/mcp-server/tools/compressionTools.js +309 -0
- package/open-sse/mcp-server/tools/gamificationTools.js +134 -0
- package/open-sse/mcp-server/tools/githubSkillTools.js +102 -0
- package/open-sse/mcp-server/tools/memoryTools.js +118 -0
- package/open-sse/mcp-server/tools/notionTools.js +101 -0
- package/open-sse/mcp-server/tools/obsidianTools.js +307 -0
- package/open-sse/mcp-server/tools/pickFastestModel.js +223 -0
- package/open-sse/mcp-server/tools/pluginTools.js +181 -0
- package/open-sse/mcp-server/tools/poolTools.js +139 -0
- package/open-sse/mcp-server/tools/skillTools.js +113 -0
- package/open-sse/package.json +10 -0
- package/open-sse/providers/REGISTRY_TEMPLATE.js +98 -0
- package/open-sse/providers/capabilities.js +293 -0
- package/open-sse/providers/index.js +51 -0
- package/open-sse/providers/models/helpers.js +20 -0
- package/open-sse/providers/models/namePatterns.js +33 -0
- package/open-sse/providers/models/schema.js +40 -0
- package/open-sse/providers/pricing.js +308 -0
- package/open-sse/providers/registry/alicode-intl.js +30 -0
- package/open-sse/providers/registry/alicode.js +31 -0
- package/open-sse/providers/registry/anthropic.js +37 -0
- package/open-sse/providers/registry/antigravity.js +81 -0
- package/open-sse/providers/registry/assemblyai.js +38 -0
- package/open-sse/providers/registry/aws-polly.js +45 -0
- package/open-sse/providers/registry/azure.js +21 -0
- package/open-sse/providers/registry/black-forest-labs.js +32 -0
- package/open-sse/providers/registry/blackbox.js +41 -0
- package/open-sse/providers/registry/brave-search.js +35 -0
- package/open-sse/providers/registry/byteplus.js +35 -0
- package/open-sse/providers/registry/cartesia.js +36 -0
- package/open-sse/providers/registry/cerebras.js +31 -0
- package/open-sse/providers/registry/chutes.js +24 -0
- package/open-sse/providers/registry/claude.js +87 -0
- package/open-sse/providers/registry/cline.js +51 -0
- package/open-sse/providers/registry/clinepass.js +57 -0
- package/open-sse/providers/registry/cloudflare-ai.js +55 -0
- package/open-sse/providers/registry/codebuddy-cn.js +77 -0
- package/open-sse/providers/registry/codex.js +100 -0
- package/open-sse/providers/registry/cohere.js +27 -0
- package/open-sse/providers/registry/comfyui.js +20 -0
- package/open-sse/providers/registry/commandcode.js +43 -0
- package/open-sse/providers/registry/coqui.js +30 -0
- package/open-sse/providers/registry/cursor.js +58 -0
- package/open-sse/providers/registry/deepgram.js +33 -0
- package/open-sse/providers/registry/deepseek.js +51 -0
- package/open-sse/providers/registry/digitalocean.js +92 -0
- package/open-sse/providers/registry/edge-tts.js +24 -0
- package/open-sse/providers/registry/elevenlabs.js +35 -0
- package/open-sse/providers/registry/exa.js +50 -0
- package/open-sse/providers/registry/fal-ai.js +34 -0
- package/open-sse/providers/registry/featherless.js +34 -0
- package/open-sse/providers/registry/firecrawl.js +34 -0
- package/open-sse/providers/registry/fireworks.js +29 -0
- package/open-sse/providers/registry/gemini-cli.js +58 -0
- package/open-sse/providers/registry/gemini.js +83 -0
- package/open-sse/providers/registry/github.js +88 -0
- package/open-sse/providers/registry/gitlab.js +32 -0
- package/open-sse/providers/registry/glm-cn.js +35 -0
- package/open-sse/providers/registry/glm.js +58 -0
- package/open-sse/providers/registry/google-pse.js +35 -0
- package/open-sse/providers/registry/google-tts.js +24 -0
- package/open-sse/providers/registry/grok-cli.js +86 -0
- package/open-sse/providers/registry/grok-web.js +39 -0
- package/open-sse/providers/registry/groq.js +37 -0
- package/open-sse/providers/registry/huggingface.js +34 -0
- package/open-sse/providers/registry/hyperbolic.js +35 -0
- package/open-sse/providers/registry/ibm-bob.js +27 -0
- package/open-sse/providers/registry/iflow.js +52 -0
- package/open-sse/providers/registry/index.js +210 -0
- package/open-sse/providers/registry/inworld.js +36 -0
- package/open-sse/providers/registry/jina-ai.js +42 -0
- package/open-sse/providers/registry/jina-reader.js +34 -0
- package/open-sse/providers/registry/kilocode.js +51 -0
- package/open-sse/providers/registry/kimchi.js +49 -0
- package/open-sse/providers/registry/kimi-coding.js +65 -0
- package/open-sse/providers/registry/kimi.js +56 -0
- package/open-sse/providers/registry/kiro.js +115 -0
- package/open-sse/providers/registry/linkup.js +34 -0
- package/open-sse/providers/registry/local-device.js +24 -0
- package/open-sse/providers/registry/mimo-free.js +24 -0
- package/open-sse/providers/registry/minimax-cn.js +76 -0
- package/open-sse/providers/registry/minimax.js +83 -0
- package/open-sse/providers/registry/mistral.js +34 -0
- package/open-sse/providers/registry/mmf.js +19 -0
- package/open-sse/providers/registry/nanobanana.js +35 -0
- package/open-sse/providers/registry/nebius.js +27 -0
- package/open-sse/providers/registry/nvidia.js +43 -0
- package/open-sse/providers/registry/ollama-local.js +19 -0
- package/open-sse/providers/registry/ollama.js +36 -0
- package/open-sse/providers/registry/openai.js +84 -0
- package/open-sse/providers/registry/opencode-go.js +41 -0
- package/open-sse/providers/registry/opencode.js +25 -0
- package/open-sse/providers/registry/openrouter.js +60 -0
- package/open-sse/providers/registry/perplexity-agent.js +49 -0
- package/open-sse/providers/registry/perplexity-web.js +33 -0
- package/open-sse/providers/registry/perplexity.js +37 -0
- package/open-sse/providers/registry/playht.js +36 -0
- package/open-sse/providers/registry/qoder.js +54 -0
- package/open-sse/providers/registry/qwen.js +33 -0
- package/open-sse/providers/registry/recraft.js +24 -0
- package/open-sse/providers/registry/runwayml.js +30 -0
- package/open-sse/providers/registry/sdwebui.js +20 -0
- package/open-sse/providers/registry/searchapi.js +35 -0
- package/open-sse/providers/registry/searxng.js +35 -0
- package/open-sse/providers/registry/serper.js +35 -0
- package/open-sse/providers/registry/siliconflow.js +39 -0
- package/open-sse/providers/registry/stability-ai.js +31 -0
- package/open-sse/providers/registry/tavily.js +50 -0
- package/open-sse/providers/registry/together.js +31 -0
- package/open-sse/providers/registry/topaz.js +19 -0
- package/open-sse/providers/registry/tortoise.js +30 -0
- package/open-sse/providers/registry/venice.js +56 -0
- package/open-sse/providers/registry/vercel-ai-gateway.js +41 -0
- package/open-sse/providers/registry/vertex-partner.js +29 -0
- package/open-sse/providers/registry/vertex.js +32 -0
- package/open-sse/providers/registry/volcengine-ark.js +35 -0
- package/open-sse/providers/registry/voyage-ai.js +30 -0
- package/open-sse/providers/registry/xai.js +45 -0
- package/open-sse/providers/registry/xiaomi-mimo.js +46 -0
- package/open-sse/providers/registry/xiaomi-tokenplan.js +63 -0
- package/open-sse/providers/registry/youcom.js +35 -0
- package/open-sse/providers/schema.js +76 -0
- package/open-sse/providers/shared.js +74 -0
- package/open-sse/providers/thinkingLevels.js +48 -0
- package/open-sse/rtk/applyFilter.js +15 -0
- package/open-sse/rtk/autodetect.js +111 -0
- package/open-sse/rtk/caveman.js +100 -0
- package/open-sse/rtk/cavemanPrompts.js +78 -0
- package/open-sse/rtk/constants.js +55 -0
- package/open-sse/rtk/filters/buildOutput.js +127 -0
- package/open-sse/rtk/filters/dedupLog.js +44 -0
- package/open-sse/rtk/filters/find.js +50 -0
- package/open-sse/rtk/filters/gitDiff.js +92 -0
- package/open-sse/rtk/filters/gitLog.js +99 -0
- package/open-sse/rtk/filters/gitStatus.js +117 -0
- package/open-sse/rtk/filters/grep.js +48 -0
- package/open-sse/rtk/filters/ls.js +79 -0
- package/open-sse/rtk/filters/readNumbered.js +27 -0
- package/open-sse/rtk/filters/searchList.js +52 -0
- package/open-sse/rtk/filters/smartTruncate.js +15 -0
- package/open-sse/rtk/filters/tree.js +32 -0
- package/open-sse/rtk/headroom.js +215 -0
- package/open-sse/rtk/index.js +155 -0
- package/open-sse/rtk/paleo.js +47 -0
- package/open-sse/rtk/ponytail.js +9 -0
- package/open-sse/rtk/ponytailPrompt.js +52 -0
- package/open-sse/rtk/ponytailPrompts.js +76 -0
- package/open-sse/rtk/pxpipe.js +104 -0
- package/open-sse/rtk/registry.js +38 -0
- package/open-sse/rtk/systemInject.js +98 -0
- package/open-sse/services/accountFallback.js +323 -0
- package/open-sse/services/antigravityHeaders.js +91 -0
- package/open-sse/services/antigravityVersion.js +154 -0
- package/open-sse/services/clinepassModels.js +63 -0
- package/open-sse/services/codexQuotaFetcher.js +312 -0
- package/open-sse/services/codexVerbosity.js +30 -0
- package/open-sse/services/combo/context.js +12 -0
- package/open-sse/services/combo/fingerprintExpansion.js +51 -0
- package/open-sse/services/combo/headroomRanking.js +28 -0
- package/open-sse/services/combo/quotaExhaustionCutoff.js +87 -0
- package/open-sse/services/combo/quotaScoring.js +226 -0
- package/open-sse/services/combo/quotaShareConcurrency.js +25 -0
- package/open-sse/services/combo/quotaShareInflight.js +50 -0
- package/open-sse/services/combo/quotaShareStrategy.js +130 -0
- package/open-sse/services/combo/resolveAutoStrategy.js +231 -0
- package/open-sse/services/combo/responseValidation.js +140 -0
- package/open-sse/services/combo/runtimeUnits.js +195 -0
- package/open-sse/services/combo/sessionStickiness.js +128 -0
- package/open-sse/services/combo/shadowRouting.js +131 -0
- package/open-sse/services/combo/targetExhaustion.js +75 -0
- package/open-sse/services/combo/targetSorters.js +126 -0
- package/open-sse/services/combo/targetTimeoutRunner.js +65 -0
- package/open-sse/services/combo/validateQuality.js +271 -0
- package/open-sse/services/combo.js +571 -0
- package/open-sse/services/comboAgentMiddleware.js +91 -0
- package/open-sse/services/comboConfig.js +153 -0
- package/open-sse/services/comboManifestMetrics.js +10 -0
- package/open-sse/services/comboMetrics.js +278 -0
- package/open-sse/services/compact.js +71 -0
- package/open-sse/services/copilotModels.js +155 -0
- package/open-sse/services/emergencyFallback.js +109 -0
- package/open-sse/services/errorClassifier.js +190 -0
- package/open-sse/services/evalRouting.js +201 -0
- package/open-sse/services/freeWebSearch.js +4 -0
- package/open-sse/services/fusion.js +223 -0
- package/open-sse/services/intentClassifier.js +631 -0
- package/open-sse/services/kimchiModels.js +176 -0
- package/open-sse/services/kiroModels.js +332 -0
- package/open-sse/services/model.js +136 -0
- package/open-sse/services/modelCapabilities.js +5 -0
- package/open-sse/services/modelDeprecation.js +101 -0
- package/open-sse/services/modelFamilyFallback.js +166 -0
- package/open-sse/services/oauthCredentialManager.js +156 -0
- package/open-sse/services/pipeline.js +107 -0
- package/open-sse/services/projectId.js +306 -0
- package/open-sse/services/provider.js +169 -0
- package/open-sse/services/providerCooldownTracker.js +94 -0
- package/open-sse/services/providerDefaultRateLimit.js +11 -0
- package/open-sse/services/proxyAutoSelector.js +24 -0
- package/open-sse/services/qoderModels.js +214 -0
- package/open-sse/services/quotaFetchThrottle.js +103 -0
- package/open-sse/services/quotaMonitor.js +310 -0
- package/open-sse/services/quotaPreflight.js +266 -0
- package/open-sse/services/rateLimitManager/headers.js +56 -0
- package/open-sse/services/rateLimitManager.js +616 -0
- package/open-sse/services/rateLimitSemaphore.js +112 -0
- package/open-sse/services/responsesInputSanitizer.js +99 -0
- package/open-sse/services/slidingWindowLimiter.js +44 -0
- package/open-sse/services/streamRecovery.js +355 -0
- package/open-sse/services/taskAwareRouter.js +227 -0
- package/open-sse/services/taskAwareRouting.js +332 -0
- package/open-sse/services/thinkingBudget.js +247 -0
- package/open-sse/services/tokenRefresh/dedup.js +31 -0
- package/open-sse/services/tokenRefresh/providers.js +624 -0
- package/open-sse/services/tokenRefresh.js +254 -0
- package/open-sse/services/usage/claude.js +147 -0
- package/open-sse/services/usage/codebuddy-cn.js +138 -0
- package/open-sse/services/usage/codex.js +267 -0
- package/open-sse/services/usage/github.js +100 -0
- package/open-sse/services/usage/google.js +241 -0
- package/open-sse/services/usage/grok-cli.js +274 -0
- package/open-sse/services/usage/kiro.js +188 -0
- package/open-sse/services/usage/minimax.js +234 -0
- package/open-sse/services/usage/misc.js +288 -0
- package/open-sse/services/usage/shared.js +70 -0
- package/open-sse/services/usage.js +62 -0
- package/open-sse/services/usageDb.js +2 -0
- package/open-sse/services/webSearchRouting.js +25 -0
- package/open-sse/services/wildcardRouter.js +59 -0
- package/open-sse/shared/clineAuth.js +37 -0
- package/open-sse/shared/machineId.js +19 -0
- package/open-sse/shared/qoder/constants.js +64 -0
- package/open-sse/shared/qoder/cosy.js +175 -0
- package/open-sse/shared/qoder/encoding.js +55 -0
- package/open-sse/transformer/responsesTransformer.js +439 -0
- package/open-sse/transformer/streamToJsonConverter.js +103 -0
- package/open-sse/translator/concerns/chunk.js +11 -0
- package/open-sse/translator/concerns/finishReason.js +63 -0
- package/open-sse/translator/concerns/image.js +124 -0
- package/open-sse/translator/concerns/json.js +5 -0
- package/open-sse/translator/concerns/message.js +7 -0
- package/open-sse/translator/concerns/modality.js +155 -0
- package/open-sse/translator/concerns/paramSupport.js +75 -0
- package/open-sse/translator/concerns/prefetch.js +96 -0
- package/open-sse/translator/concerns/reasoning.js +24 -0
- package/open-sse/translator/concerns/thinking.js +53 -0
- package/open-sse/translator/concerns/thinkingUnified.js +329 -0
- package/open-sse/translator/concerns/toolCall.js +153 -0
- package/open-sse/translator/concerns/usage.js +69 -0
- package/open-sse/translator/formats/claude.js +368 -0
- package/open-sse/translator/formats/gemini.js +380 -0
- package/open-sse/translator/formats/maxTokens.js +34 -0
- package/open-sse/translator/formats/openai.js +134 -0
- package/open-sse/translator/formats/responsesApi.js +141 -0
- package/open-sse/translator/formats.js +36 -0
- package/open-sse/translator/helpers/claudeHelper.js +216 -0
- package/open-sse/translator/helpers/geminiHelper.js +372 -0
- package/open-sse/translator/helpers/imageHelper.js +34 -0
- package/open-sse/translator/helpers/maxTokensHelper.js +27 -0
- package/open-sse/translator/helpers/openaiHelper.js +130 -0
- package/open-sse/translator/helpers/responsesApiHelper.js +139 -0
- package/open-sse/translator/helpers/toolCallHelper.js +148 -0
- package/open-sse/translator/index.js +252 -0
- package/open-sse/translator/request/antigravity-to-openai.js +242 -0
- package/open-sse/translator/request/claude-to-kiro.js +478 -0
- package/open-sse/translator/request/claude-to-openai.js +263 -0
- package/open-sse/translator/request/gemini-to-openai.js +152 -0
- package/open-sse/translator/request/openai-responses.js +385 -0
- package/open-sse/translator/request/openai-to-claude.js +383 -0
- package/open-sse/translator/request/openai-to-commandcode.js +176 -0
- package/open-sse/translator/request/openai-to-cursor.js +185 -0
- package/open-sse/translator/request/openai-to-gemini.js +442 -0
- package/open-sse/translator/request/openai-to-kiro.js +607 -0
- package/open-sse/translator/request/openai-to-kiro.old.js +278 -0
- package/open-sse/translator/request/openai-to-ollama.js +195 -0
- package/open-sse/translator/request/openai-to-vertex.js +42 -0
- package/open-sse/translator/response/claude-to-openai.js +195 -0
- package/open-sse/translator/response/commandcode-to-openai.js +188 -0
- package/open-sse/translator/response/cursor-to-openai.js +30 -0
- package/open-sse/translator/response/gemini-to-openai.js +147 -0
- package/open-sse/translator/response/kiro-to-claude.js +261 -0
- package/open-sse/translator/response/kiro-to-openai.js +160 -0
- package/open-sse/translator/response/ollama-to-openai.js +134 -0
- package/open-sse/translator/response/openai-responses.js +535 -0
- package/open-sse/translator/response/openai-to-antigravity.js +123 -0
- package/open-sse/translator/response/openai-to-claude.js +265 -0
- package/open-sse/translator/schema/blocks.js +43 -0
- package/open-sse/translator/schema/defaults.js +7 -0
- package/open-sse/translator/schema/finishReasons.js +27 -0
- package/open-sse/translator/schema/index.js +8 -0
- package/open-sse/translator/schema/roles.js +16 -0
- package/open-sse/utils/agentGoalPolicy.js +85 -0
- package/open-sse/utils/aiSdkCompat.js +75 -0
- package/open-sse/utils/bypassHandler.js +298 -0
- package/open-sse/utils/cacheControlPolicy.js +189 -0
- package/open-sse/utils/claudeCloaking.js +155 -0
- package/open-sse/utils/claudeHeaderCache.js +70 -0
- package/open-sse/utils/claudeSignature.js +41 -0
- package/open-sse/utils/clientDetector.js +63 -0
- package/open-sse/utils/codebuddySanitizer.js +96 -0
- package/open-sse/utils/composerToolCalls.js +158 -0
- package/open-sse/utils/cors.js +13 -0
- package/open-sse/utils/cursorChecksum.js +149 -0
- package/open-sse/utils/cursorImages.js +224 -0
- package/open-sse/utils/cursorProtobuf.js +904 -0
- package/open-sse/utils/cursorVersionDetector.js +55 -0
- package/open-sse/utils/debugLog.js +14 -0
- package/open-sse/utils/diagnostics.js +143 -0
- package/open-sse/utils/error.js +164 -0
- package/open-sse/utils/estimateSize.js +33 -0
- package/open-sse/utils/finishReason.js +32 -0
- package/open-sse/utils/flattenToolHistory.js +68 -0
- package/open-sse/utils/headers.js +36 -0
- package/open-sse/utils/heapPressure.js +35 -0
- package/open-sse/utils/jsonToSse.js +125 -0
- package/open-sse/utils/keepaliveThreshold.js +40 -0
- package/open-sse/utils/logger.js +104 -0
- package/open-sse/utils/noThinkingAlias.js +74 -0
- package/open-sse/utils/number.js +7 -0
- package/open-sse/utils/ollamaTransform.js +85 -0
- package/open-sse/utils/opencodeHeaders.js +47 -0
- package/open-sse/utils/progressTracker.js +81 -0
- package/open-sse/utils/providerRequestLogging.js +219 -0
- package/open-sse/utils/proxyFetch.js +369 -0
- package/open-sse/utils/reasoningContentInjector.js +79 -0
- package/open-sse/utils/reasoningFields.js +70 -0
- package/open-sse/utils/requestLogger.js +260 -0
- package/open-sse/utils/responsesInputNormalization.js +92 -0
- package/open-sse/utils/responsesStatePolicy.js +52 -0
- package/open-sse/utils/responsesStreamHelpers.js +49 -0
- package/open-sse/utils/sessionManager.js +240 -0
- package/open-sse/utils/sleep.js +6 -0
- package/open-sse/utils/sse.js +14 -0
- package/open-sse/utils/sseConstants.js +23 -0
- package/open-sse/utils/sseHeartbeat.js +104 -0
- package/open-sse/utils/stream.js +517 -0
- package/open-sse/utils/streamFailureFinalization.js +134 -0
- package/open-sse/utils/streamHandler.js +250 -0
- package/open-sse/utils/streamHelpers.js +137 -0
- package/open-sse/utils/textualToolCall.js +104 -0
- package/open-sse/utils/thinkCloseMarker.js +72 -0
- package/open-sse/utils/thinkTagParser.js +146 -0
- package/open-sse/utils/toolCallArguments.js +12 -0
- package/open-sse/utils/toolDeduper.js +49 -0
- package/open-sse/utils/toolSources.js +31 -0
- package/open-sse/utils/upstreamResponseHeaders.js +25 -0
- package/open-sse/utils/urlSanitize.js +15 -0
- package/open-sse/utils/usageTracking.js +347 -0
- package/package.json +1 -1
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Project ID Service - Fetch and cache real Project IDs from Google Cloud Code API
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* Instead of generating random project IDs (e.g. "useful-spark-a1b2c"),
|
|
6
|
+
* this service fetches the real Project ID bound to the authenticated user's account.
|
|
7
|
+
* This significantly reduces the risk of being flagged by Google's anti-abuse systems.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
import { CLOUD_CODE_API, LOAD_CODE_ASSIST_HEADERS, LOAD_CODE_ASSIST_METADATA } from "../config/appConstants.js";
|
|
11
|
+
|
|
12
|
+
// ─── Cache ────────────────────────────────────────────────────────────────────
|
|
13
|
+
// connectionId -> { projectId: string, fetchedAt: number }
|
|
14
|
+
const projectIdCache = new Map();
|
|
15
|
+
|
|
16
|
+
/** How long a cached project ID is considered fresh (1 hour). */
|
|
17
|
+
const CACHE_TTL_MS = 60 * 60 * 1000;
|
|
18
|
+
|
|
19
|
+
// ─── Pending-fetch deduplication ─────────────────────────────────────────────
|
|
20
|
+
// connectionId -> { promise: Promise<string|null>, controller: AbortController, startedAt: number }
|
|
21
|
+
const pendingFetches = new Map();
|
|
22
|
+
|
|
23
|
+
/** Abort and evict a pending fetch that has been running longer than this (2 min). */
|
|
24
|
+
const PENDING_TTL_MS = 2 * 60 * 1000;
|
|
25
|
+
|
|
26
|
+
// ─── Periodic cleanup ────────────────────────────────────────────────────────
|
|
27
|
+
/** How often the background sweep runs (10 min). */
|
|
28
|
+
const CLEANUP_INTERVAL_MS = 10 * 60 * 1000;
|
|
29
|
+
|
|
30
|
+
let _cleanupTimer = null;
|
|
31
|
+
|
|
32
|
+
/** Run one sweep immediately: evict stale cache entries and abort orphaned pending fetches. */
|
|
33
|
+
export function cleanupNow() {
|
|
34
|
+
const now = Date.now();
|
|
35
|
+
|
|
36
|
+
for (const [id, entry] of projectIdCache) {
|
|
37
|
+
if (!entry || now - entry.fetchedAt >= CACHE_TTL_MS) {
|
|
38
|
+
projectIdCache.delete(id);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
for (const [id, item] of pendingFetches) {
|
|
43
|
+
if (!item || typeof item.startedAt !== "number") {
|
|
44
|
+
pendingFetches.delete(id);
|
|
45
|
+
continue;
|
|
46
|
+
}
|
|
47
|
+
if (now - item.startedAt > PENDING_TTL_MS) {
|
|
48
|
+
try { item.controller.abort(); } catch (_) { /* ignore */ }
|
|
49
|
+
pendingFetches.delete(id);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/** Start the periodic background cleanup (idempotent). Called automatically on module load. */
|
|
55
|
+
export function startCacheCleanup() {
|
|
56
|
+
if (_cleanupTimer) return;
|
|
57
|
+
_cleanupTimer = setInterval(() => {
|
|
58
|
+
try { cleanupNow(); } catch (e) {
|
|
59
|
+
console.warn("[ProjectId] cleanup sweep error:", e?.message ?? e);
|
|
60
|
+
}
|
|
61
|
+
}, CLEANUP_INTERVAL_MS);
|
|
62
|
+
// Unref so the timer doesn't prevent Node from exiting when it is otherwise idle
|
|
63
|
+
_cleanupTimer?.unref?.();
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/** Stop the periodic background cleanup (e.g. during graceful shutdown). */
|
|
67
|
+
export function stopCacheCleanup() {
|
|
68
|
+
if (!_cleanupTimer) return;
|
|
69
|
+
clearInterval(_cleanupTimer);
|
|
70
|
+
_cleanupTimer = null;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// Start automatically when the module is first imported
|
|
74
|
+
startCacheCleanup();
|
|
75
|
+
|
|
76
|
+
// ─── Public API ───────────────────────────────────────────────────────────────
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Get the Project ID for a connection, with caching.
|
|
80
|
+
* Returns null on failure (callers should fall back to random generation).
|
|
81
|
+
*
|
|
82
|
+
* @param {string} connectionId - The connection identifier for cache keying
|
|
83
|
+
* @param {string} accessToken - Valid OAuth access token
|
|
84
|
+
* @returns {Promise<string|null>} Real project ID or null
|
|
85
|
+
*/
|
|
86
|
+
export async function getProjectIdForConnection(connectionId, accessToken) {
|
|
87
|
+
if (!connectionId || !accessToken) return null;
|
|
88
|
+
|
|
89
|
+
// Return cached value if still fresh
|
|
90
|
+
const cached = projectIdCache.get(connectionId);
|
|
91
|
+
if (cached && Date.now() - cached.fetchedAt < CACHE_TTL_MS) {
|
|
92
|
+
return cached.projectId;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// Deduplicate concurrent fetches for the same connection
|
|
96
|
+
if (pendingFetches.has(connectionId)) {
|
|
97
|
+
return pendingFetches.get(connectionId).promise;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// Each fetch gets its own AbortController so it can be canceled via removeConnection()
|
|
101
|
+
const controller = new AbortController();
|
|
102
|
+
|
|
103
|
+
const promise = (async () => {
|
|
104
|
+
try {
|
|
105
|
+
const projectId = await fetchProjectId(accessToken, controller.signal);
|
|
106
|
+
if (projectId) {
|
|
107
|
+
projectIdCache.set(connectionId, {projectId, fetchedAt: Date.now()});
|
|
108
|
+
return projectId;
|
|
109
|
+
}
|
|
110
|
+
console.warn("[ProjectId] could not fetch projectId for connection", connectionId.slice(0, 8));
|
|
111
|
+
return null;
|
|
112
|
+
} catch (error) {
|
|
113
|
+
console.warn(`[ProjectId] Error fetching project ID: ${error.message}`);
|
|
114
|
+
return null;
|
|
115
|
+
} finally {
|
|
116
|
+
pendingFetches.delete(connectionId);
|
|
117
|
+
}
|
|
118
|
+
})();
|
|
119
|
+
|
|
120
|
+
pendingFetches.set(connectionId, {promise, controller, startedAt: Date.now()});
|
|
121
|
+
return promise;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Invalidate the cached project ID for a connection.
|
|
126
|
+
* Call this when a connection's credentials are fully revoked or refreshed.
|
|
127
|
+
*/
|
|
128
|
+
export function invalidateProjectId(connectionId) {
|
|
129
|
+
projectIdCache.delete(connectionId);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* Fully remove a connection: abort any in-flight fetch and delete its cached project ID.
|
|
134
|
+
* Wire this into your connection close / disconnect lifecycle events to prevent memory leaks.
|
|
135
|
+
*
|
|
136
|
+
* @param {string} connectionId
|
|
137
|
+
*/
|
|
138
|
+
export function removeConnection(connectionId) {
|
|
139
|
+
if (!connectionId) return;
|
|
140
|
+
projectIdCache.delete(connectionId);
|
|
141
|
+
const pending = pendingFetches.get(connectionId);
|
|
142
|
+
if (pending) {
|
|
143
|
+
try { pending.controller.abort(); } catch (_) { /* ignore */ }
|
|
144
|
+
pendingFetches.delete(connectionId);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
// ─── Internal helpers ─────────────────────────────────────────────────────────
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Fetch project ID via loadCodeAssist endpoint.
|
|
152
|
+
* Falls back to onboardUser when loadCodeAssist returns no project.
|
|
153
|
+
*
|
|
154
|
+
* @param {string} accessToken
|
|
155
|
+
* @param {AbortSignal} signal
|
|
156
|
+
* @returns {Promise<string|null>}
|
|
157
|
+
*/
|
|
158
|
+
async function fetchProjectId(accessToken, signal) {
|
|
159
|
+
const response = await fetch(CLOUD_CODE_API.loadCodeAssist, {
|
|
160
|
+
method: "POST",
|
|
161
|
+
headers: { ...LOAD_CODE_ASSIST_HEADERS, "Authorization": `Bearer ${accessToken}` },
|
|
162
|
+
body: JSON.stringify({ metadata: LOAD_CODE_ASSIST_METADATA }),
|
|
163
|
+
signal
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
if (!response.ok) {
|
|
167
|
+
const errorText = await response.text().catch(() => "");
|
|
168
|
+
throw new Error(`loadCodeAssist failed: HTTP ${response.status} ${errorText.slice(0, 200)}`);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
const data = await response.json();
|
|
172
|
+
const projectId = extractProjectId(data);
|
|
173
|
+
if (projectId) return projectId;
|
|
174
|
+
|
|
175
|
+
// Determine the tier to use for onboarding
|
|
176
|
+
let tierID = "legacy-tier";
|
|
177
|
+
if (Array.isArray(data.allowedTiers)) {
|
|
178
|
+
for (const tier of data.allowedTiers) {
|
|
179
|
+
if (tier && typeof tier === "object" && tier.isDefault === true) {
|
|
180
|
+
if (tier.id && typeof tier.id === "string" && tier.id.trim()) {
|
|
181
|
+
tierID = tier.id.trim();
|
|
182
|
+
break;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
return onboardUser(accessToken, tierID, signal);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* Fetch project ID via onboardUser endpoint (polls until done).
|
|
193
|
+
*
|
|
194
|
+
* @param {string} accessToken
|
|
195
|
+
* @param {string} tierID
|
|
196
|
+
* @param {AbortSignal} externalSignal – propagated from the connection's AbortController
|
|
197
|
+
* @returns {Promise<string|null>}
|
|
198
|
+
*/
|
|
199
|
+
async function onboardUser(accessToken, tierID, externalSignal) {
|
|
200
|
+
console.log(`[ProjectId] Onboarding user with tier: ${tierID}`);
|
|
201
|
+
|
|
202
|
+
const reqBody = { tierId: tierID, metadata: LOAD_CODE_ASSIST_METADATA };
|
|
203
|
+
const MAX_ATTEMPTS = 5;
|
|
204
|
+
|
|
205
|
+
for (let attempt = 1; attempt <= MAX_ATTEMPTS; attempt++) {
|
|
206
|
+
// Bail out immediately if the connection was removed
|
|
207
|
+
if (externalSignal?.aborted) return null;
|
|
208
|
+
|
|
209
|
+
// Per-attempt timeout controller; forwards external abort as well
|
|
210
|
+
const localCtrl = new AbortController();
|
|
211
|
+
const timeoutId = setTimeout(() => localCtrl.abort(), 30_000);
|
|
212
|
+
const forwardAbort = () => localCtrl.abort();
|
|
213
|
+
externalSignal?.addEventListener("abort", forwardAbort);
|
|
214
|
+
|
|
215
|
+
try {
|
|
216
|
+
const response = await fetch(CLOUD_CODE_API.onboardUser, {
|
|
217
|
+
method: "POST",
|
|
218
|
+
headers: { ...LOAD_CODE_ASSIST_HEADERS, "Authorization": `Bearer ${accessToken}` },
|
|
219
|
+
body: JSON.stringify(reqBody),
|
|
220
|
+
signal: localCtrl.signal
|
|
221
|
+
});
|
|
222
|
+
|
|
223
|
+
clearTimeout(timeoutId);
|
|
224
|
+
|
|
225
|
+
if (!response.ok) {
|
|
226
|
+
const errorText = await response.text().catch(() => "");
|
|
227
|
+
throw new Error(`onboardUser HTTP ${response.status}: ${errorText.slice(0, 200)}`);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
const data = await response.json();
|
|
231
|
+
|
|
232
|
+
if (data.done === true) {
|
|
233
|
+
const projectId = extractProjectIdFromOnboard(data);
|
|
234
|
+
if (projectId) {
|
|
235
|
+
console.log(`[ProjectId] Successfully onboarded, project ID: ${projectId}`);
|
|
236
|
+
return projectId;
|
|
237
|
+
}
|
|
238
|
+
throw new Error("onboardUser done but no project_id in response");
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
// Server not done yet – wait and retry
|
|
242
|
+
console.log(`[ProjectId] Onboard attempt ${attempt}/${MAX_ATTEMPTS}: not done yet, waiting...`);
|
|
243
|
+
await new Promise(resolve => setTimeout(resolve, 2000));
|
|
244
|
+
|
|
245
|
+
} catch (error) {
|
|
246
|
+
clearTimeout(timeoutId);
|
|
247
|
+
if (error.name === "AbortError") {
|
|
248
|
+
console.warn(`[ProjectId] onboardUser attempt ${attempt} aborted (timeout or connection removed)`);
|
|
249
|
+
if (externalSignal?.aborted) return null; // connection gone – stop retrying
|
|
250
|
+
continue;
|
|
251
|
+
}
|
|
252
|
+
if (attempt === MAX_ATTEMPTS) {
|
|
253
|
+
console.warn(`[ProjectId] onboardUser failed after ${MAX_ATTEMPTS} attempts: ${error.message}`);
|
|
254
|
+
return null;
|
|
255
|
+
}
|
|
256
|
+
// Continue to next attempt instead of throwing (which would skip remaining retries)
|
|
257
|
+
console.warn(`[ProjectId] onboardUser attempt ${attempt} failed: ${error.message}, retrying...`);
|
|
258
|
+
await new Promise(resolve => setTimeout(resolve, 2000));
|
|
259
|
+
} finally {
|
|
260
|
+
clearTimeout(timeoutId);
|
|
261
|
+
externalSignal?.removeEventListener("abort", forwardAbort);
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
return null;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* Extract project ID from loadCodeAssist response.
|
|
270
|
+
*/
|
|
271
|
+
function extractProjectId(data) {
|
|
272
|
+
if (!data) return null;
|
|
273
|
+
|
|
274
|
+
if (typeof data.cloudaicompanionProject === "string") {
|
|
275
|
+
const id = data.cloudaicompanionProject.trim();
|
|
276
|
+
if (id) return id;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
if (data.cloudaicompanionProject && typeof data.cloudaicompanionProject === "object") {
|
|
280
|
+
const id = data.cloudaicompanionProject.id;
|
|
281
|
+
if (typeof id === "string" && id.trim()) return id.trim();
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
return null;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Extract project ID from onboardUser response.
|
|
289
|
+
*/
|
|
290
|
+
function extractProjectIdFromOnboard(data) {
|
|
291
|
+
if (!data?.response) return null;
|
|
292
|
+
|
|
293
|
+
const project = data.response.cloudaicompanionProject;
|
|
294
|
+
|
|
295
|
+
if (typeof project === "string") {
|
|
296
|
+
const id = project.trim();
|
|
297
|
+
if (id) return id;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
if (project && typeof project === "object") {
|
|
301
|
+
const id = project.id;
|
|
302
|
+
if (typeof id === "string" && id.trim()) return id.trim();
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
return null;
|
|
306
|
+
}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
import { PROVIDERS } from "../config/providers.js";
|
|
2
|
+
import { OPENAI_COMPAT_BASE, ANTHROPIC_COMPAT_BASE } from "../providers/shared.js";
|
|
3
|
+
|
|
4
|
+
const OPENAI_COMPATIBLE_PREFIX = "openai-compatible-";
|
|
5
|
+
const OPENAI_COMPATIBLE_DEFAULTS = {
|
|
6
|
+
baseUrl: OPENAI_COMPAT_BASE,
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const ANTHROPIC_COMPATIBLE_PREFIX = "anthropic-compatible-";
|
|
10
|
+
const ANTHROPIC_COMPATIBLE_DEFAULTS = {
|
|
11
|
+
baseUrl: ANTHROPIC_COMPAT_BASE,
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
function isOpenAICompatible(provider) {
|
|
15
|
+
return typeof provider === "string" && provider.startsWith(OPENAI_COMPATIBLE_PREFIX);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
function isAnthropicCompatible(provider) {
|
|
19
|
+
return typeof provider === "string" && provider.startsWith(ANTHROPIC_COMPATIBLE_PREFIX);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
function getOpenAICompatibleType(provider) {
|
|
23
|
+
if (!isOpenAICompatible(provider)) return "chat";
|
|
24
|
+
return provider.includes("responses") ? "responses" : "chat";
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// Detect request format from body structure
|
|
28
|
+
export function detectFormat(body) {
|
|
29
|
+
// OpenAI Responses API: has input (array or string) instead of messages[]
|
|
30
|
+
// The Responses API accepts both input as array and input as a plain string
|
|
31
|
+
if (body.input && (Array.isArray(body.input) || typeof body.input === "string") && !body.messages) {
|
|
32
|
+
return "openai-responses";
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// Antigravity format: Gemini wrapped in body.request
|
|
36
|
+
if (body.request?.contents && body.userAgent === "antigravity") {
|
|
37
|
+
return "antigravity";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// Gemini format: has contents array
|
|
41
|
+
if (body.contents && Array.isArray(body.contents)) {
|
|
42
|
+
return "gemini";
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// OpenAI-specific indicators (check BEFORE Claude)
|
|
46
|
+
// These fields are OpenAI-specific and never appear in Claude format
|
|
47
|
+
if (
|
|
48
|
+
body.stream_options || // OpenAI streaming options
|
|
49
|
+
body.response_format || // JSON mode, etc.
|
|
50
|
+
body.logprobs !== undefined || // Log probabilities
|
|
51
|
+
body.top_logprobs !== undefined ||
|
|
52
|
+
body.n !== undefined || // Number of completions
|
|
53
|
+
body.presence_penalty !== undefined || // Penalties
|
|
54
|
+
body.frequency_penalty !== undefined ||
|
|
55
|
+
body.logit_bias || // Token biasing
|
|
56
|
+
body.user // User identifier
|
|
57
|
+
) {
|
|
58
|
+
return "openai";
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
// Claude format: messages with content as array of objects with type
|
|
62
|
+
// Claude requires content to be array with specific structure
|
|
63
|
+
if (body.messages && Array.isArray(body.messages)) {
|
|
64
|
+
const firstMsg = body.messages[0];
|
|
65
|
+
|
|
66
|
+
// If content is array, check if it follows Claude structure
|
|
67
|
+
if (firstMsg?.content && Array.isArray(firstMsg.content)) {
|
|
68
|
+
const firstContent = firstMsg.content[0];
|
|
69
|
+
|
|
70
|
+
// Claude format has specific types: text, image, tool_use, tool_result
|
|
71
|
+
// OpenAI multimodal has: text, image_url (note the difference)
|
|
72
|
+
if (firstContent?.type === "text" && !body.model?.includes("/")) {
|
|
73
|
+
// Could be Claude or OpenAI multimodal
|
|
74
|
+
// Check for Claude-specific fields
|
|
75
|
+
if (body.system || body.anthropic_version) {
|
|
76
|
+
return "claude";
|
|
77
|
+
}
|
|
78
|
+
// Check if image format is Claude (source.type) vs OpenAI (image_url.url)
|
|
79
|
+
const hasClaudeImage = firstMsg.content.some(c =>
|
|
80
|
+
c.type === "image" && c.source?.type === "base64"
|
|
81
|
+
);
|
|
82
|
+
const hasOpenAIImage = firstMsg.content.some(c =>
|
|
83
|
+
c.type === "image_url" && c.image_url?.url
|
|
84
|
+
);
|
|
85
|
+
if (hasClaudeImage) return "claude";
|
|
86
|
+
if (hasOpenAIImage) return "openai";
|
|
87
|
+
|
|
88
|
+
// If still unclear, check for tool format
|
|
89
|
+
const hasClaudeTool = firstMsg.content.some(c =>
|
|
90
|
+
c.type === "tool_use" || c.type === "tool_result"
|
|
91
|
+
);
|
|
92
|
+
if (hasClaudeTool) return "claude";
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// If content is string, it's likely OpenAI (Claude also supports this)
|
|
97
|
+
// Check for other Claude-specific indicators
|
|
98
|
+
if (body.system !== undefined || body.anthropic_version) {
|
|
99
|
+
return "claude";
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
// Default to OpenAI format
|
|
104
|
+
return "openai";
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// Get provider config (internal — no external runtime consumer)
|
|
108
|
+
export function getProviderConfig(provider) {
|
|
109
|
+
if (isOpenAICompatible(provider)) {
|
|
110
|
+
const apiType = getOpenAICompatibleType(provider);
|
|
111
|
+
return {
|
|
112
|
+
...PROVIDERS.openai,
|
|
113
|
+
format: apiType === "responses" ? "openai-responses" : "openai",
|
|
114
|
+
baseUrl: OPENAI_COMPATIBLE_DEFAULTS.baseUrl,
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
if (isAnthropicCompatible(provider)) {
|
|
118
|
+
return {
|
|
119
|
+
...PROVIDERS.anthropic, // Use Anthropic defaults (header: x-api-key)
|
|
120
|
+
format: "claude",
|
|
121
|
+
baseUrl: ANTHROPIC_COMPATIBLE_DEFAULTS.baseUrl,
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
return PROVIDERS[provider] || PROVIDERS.openai;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
// Get target format for provider
|
|
128
|
+
export function getTargetFormat(provider) {
|
|
129
|
+
if (isOpenAICompatible(provider)) {
|
|
130
|
+
return getOpenAICompatibleType(provider) === "responses" ? "openai-responses" : "openai";
|
|
131
|
+
}
|
|
132
|
+
if (isAnthropicCompatible(provider)) {
|
|
133
|
+
return "claude";
|
|
134
|
+
}
|
|
135
|
+
const config = getProviderConfig(provider);
|
|
136
|
+
return config.format || "openai";
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
// Resolve which transport to use for a provider given the client sourceFormat.
|
|
140
|
+
// Multi-endpoint providers (transport.transports[]) pick the entry matching sourceFormat
|
|
141
|
+
// to avoid lossy translation; falls back to the default transport when no match.
|
|
142
|
+
export function resolveTransport(provider, sourceFormat) {
|
|
143
|
+
const config = PROVIDERS[provider];
|
|
144
|
+
const transports = config?.transports;
|
|
145
|
+
if (!Array.isArray(transports) || !transports.length) return null;
|
|
146
|
+
return transports.find(t => t.format === sourceFormat) || null;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// Check if last message is from user
|
|
150
|
+
export function isLastMessageFromUser(body) {
|
|
151
|
+
const messages = body.messages || body.contents;
|
|
152
|
+
if (!messages?.length) return true;
|
|
153
|
+
const lastMsg = messages[messages.length - 1];
|
|
154
|
+
return lastMsg?.role === "user";
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// Check if request has thinking config
|
|
158
|
+
export function hasThinkingConfig(body) {
|
|
159
|
+
return !!(body.reasoning_effort || body.thinking?.type === "enabled");
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
// Normalize provider-native thinking config based on last message role.
|
|
163
|
+
// OpenAI reasoning_effort is request-level and must survive tool-result turns.
|
|
164
|
+
export function normalizeThinkingConfig(body) {
|
|
165
|
+
if (!isLastMessageFromUser(body)) {
|
|
166
|
+
delete body.thinking;
|
|
167
|
+
}
|
|
168
|
+
return body;
|
|
169
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DEFAULT_RESILIENCE_SETTINGS
|
|
3
|
+
} from "../../lib/resilience/settings";
|
|
4
|
+
const cooldownMap = /* @__PURE__ */ new Map();
|
|
5
|
+
const DEFAULT_ENTRY_RETENTION_MS = 30 * 60 * 1e3;
|
|
6
|
+
const CLEANUP_INTERVAL_MS = 60 * 1e3;
|
|
7
|
+
let cleanupTimer = null;
|
|
8
|
+
function startCleanupIfNeeded() {
|
|
9
|
+
if (cleanupTimer) return;
|
|
10
|
+
cleanupTimer = setInterval(() => {
|
|
11
|
+
cleanupExpiredCooldownEntries();
|
|
12
|
+
}, CLEANUP_INTERVAL_MS);
|
|
13
|
+
if (cleanupTimer.unref) cleanupTimer.unref();
|
|
14
|
+
}
|
|
15
|
+
function getEntryRetentionMs(settings) {
|
|
16
|
+
const maxRetryCooldownMs = settings?.providerCooldown?.maxRetryCooldownMs ?? DEFAULT_RESILIENCE_SETTINGS.providerCooldown.maxRetryCooldownMs;
|
|
17
|
+
return Math.max(DEFAULT_ENTRY_RETENTION_MS, maxRetryCooldownMs);
|
|
18
|
+
}
|
|
19
|
+
function cleanupExpiredCooldownEntries(now = Date.now()) {
|
|
20
|
+
for (const [key, entry] of cooldownMap) {
|
|
21
|
+
if (now - entry.lastFailureAt > entry.retentionMs) {
|
|
22
|
+
cooldownMap.delete(key);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
function cooldownKey(provider, connectionId) {
|
|
27
|
+
return connectionId ? `${provider}:${connectionId}` : provider;
|
|
28
|
+
}
|
|
29
|
+
function recordProviderCooldown(provider, connectionId, settings) {
|
|
30
|
+
if (!provider || provider === "unknown") return;
|
|
31
|
+
const key = cooldownKey(provider, connectionId);
|
|
32
|
+
const existing = cooldownMap.get(key);
|
|
33
|
+
const now = Date.now();
|
|
34
|
+
const retentionMs = getEntryRetentionMs(settings);
|
|
35
|
+
if (existing) {
|
|
36
|
+
existing.lastFailureAt = now;
|
|
37
|
+
existing.failureCount++;
|
|
38
|
+
existing.retentionMs = Math.max(existing.retentionMs, retentionMs);
|
|
39
|
+
} else {
|
|
40
|
+
cooldownMap.set(key, { lastFailureAt: now, failureCount: 1, retentionMs });
|
|
41
|
+
}
|
|
42
|
+
startCleanupIfNeeded();
|
|
43
|
+
}
|
|
44
|
+
function isProviderInCooldown(provider, connectionId, settings) {
|
|
45
|
+
if (!provider || provider === "unknown") return false;
|
|
46
|
+
const key = cooldownKey(provider, connectionId);
|
|
47
|
+
const entry = cooldownMap.get(key);
|
|
48
|
+
if (!entry) return false;
|
|
49
|
+
if (entry.failureCount === 0) return false;
|
|
50
|
+
const now = Date.now();
|
|
51
|
+
const elapsed = now - entry.lastFailureAt;
|
|
52
|
+
const minCooldownMs = settings?.providerCooldown?.minRetryCooldownMs ?? DEFAULT_RESILIENCE_SETTINGS.providerCooldown.minRetryCooldownMs;
|
|
53
|
+
const maxCooldownMs = settings?.providerCooldown?.maxRetryCooldownMs ?? DEFAULT_RESILIENCE_SETTINGS.providerCooldown.maxRetryCooldownMs;
|
|
54
|
+
const exponent = Math.min(Math.max(0, entry.failureCount - 1), 10);
|
|
55
|
+
const scaledCooldownMs = Math.min(minCooldownMs * Math.pow(2, exponent), maxCooldownMs);
|
|
56
|
+
return elapsed < scaledCooldownMs;
|
|
57
|
+
}
|
|
58
|
+
function getRemainingCooldownMs(provider, connectionId, settings) {
|
|
59
|
+
if (!provider || provider === "unknown") return 0;
|
|
60
|
+
const key = cooldownKey(provider, connectionId);
|
|
61
|
+
const entry = cooldownMap.get(key);
|
|
62
|
+
if (!entry) return 0;
|
|
63
|
+
const now = Date.now();
|
|
64
|
+
const elapsed = now - entry.lastFailureAt;
|
|
65
|
+
const minCooldownMs = settings?.providerCooldown?.minRetryCooldownMs ?? DEFAULT_RESILIENCE_SETTINGS.providerCooldown.minRetryCooldownMs;
|
|
66
|
+
const maxCooldownMs = settings?.providerCooldown?.maxRetryCooldownMs ?? DEFAULT_RESILIENCE_SETTINGS.providerCooldown.maxRetryCooldownMs;
|
|
67
|
+
const exponent = Math.min(Math.max(0, entry.failureCount - 1), 10);
|
|
68
|
+
const scaledCooldownMs = Math.min(minCooldownMs * Math.pow(2, exponent), maxCooldownMs);
|
|
69
|
+
const remaining = scaledCooldownMs - elapsed;
|
|
70
|
+
return remaining > 0 ? remaining : 0;
|
|
71
|
+
}
|
|
72
|
+
function recordProviderSuccess(provider, connectionId) {
|
|
73
|
+
if (!provider || provider === "unknown") return;
|
|
74
|
+
const key = cooldownKey(provider, connectionId);
|
|
75
|
+
const entry = cooldownMap.get(key);
|
|
76
|
+
if (entry) {
|
|
77
|
+
entry.failureCount = 0;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
function clearCooldownState() {
|
|
81
|
+
cooldownMap.clear();
|
|
82
|
+
}
|
|
83
|
+
function getCooldownEntryCount() {
|
|
84
|
+
return cooldownMap.size;
|
|
85
|
+
}
|
|
86
|
+
export {
|
|
87
|
+
cleanupExpiredCooldownEntries,
|
|
88
|
+
clearCooldownState,
|
|
89
|
+
getCooldownEntryCount,
|
|
90
|
+
getRemainingCooldownMs,
|
|
91
|
+
isProviderInCooldown,
|
|
92
|
+
recordProviderCooldown,
|
|
93
|
+
recordProviderSuccess
|
|
94
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Stub: provider default rate limit — sliding-window fallback for header-less providers.
|
|
3
|
+
* TODO: Wire to actual PROVIDER_DEFAULT_RATE_LIMITS config when available.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
const PROVIDER_DEFAULT_RATE_LIMITS = {};
|
|
7
|
+
|
|
8
|
+
export async function awaitProviderDefaultSlot(provider, connectionId, signal, maxWaitMs) {
|
|
9
|
+
// No-op unless PROVIDER_DEFAULT_RATE_LIMITS has an entry for this provider.
|
|
10
|
+
return;
|
|
11
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import {
|
|
2
|
+
findWorkingProxy,
|
|
3
|
+
clearProxyFallbackCache
|
|
4
|
+
} from "@omniroute/open-sse/utils/proxyFallback.ts";
|
|
5
|
+
import { isFeatureFlagEnabled } from '../../dist/shared/utils/featureFlags.js';
|
|
6
|
+
async function selectProxyForValidation(targetUrl) {
|
|
7
|
+
if (!isFeatureFlagEnabled("PROXY_AUTO_SELECT_ENABLED")) return null;
|
|
8
|
+
if (!targetUrl) return null;
|
|
9
|
+
let hostname;
|
|
10
|
+
try {
|
|
11
|
+
hostname = new URL(targetUrl).hostname;
|
|
12
|
+
if (!hostname) return null;
|
|
13
|
+
} catch {
|
|
14
|
+
return null;
|
|
15
|
+
}
|
|
16
|
+
return findWorkingProxy(hostname, targetUrl);
|
|
17
|
+
}
|
|
18
|
+
function clearProxySelectionCache() {
|
|
19
|
+
clearProxyFallbackCache();
|
|
20
|
+
}
|
|
21
|
+
export {
|
|
22
|
+
clearProxySelectionCache,
|
|
23
|
+
selectProxyForValidation
|
|
24
|
+
};
|