@fudrouter/fsrouter 0.6.64 → 0.6.65
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/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,140 @@
|
|
|
1
|
+
const MAX_REASON_SNIPPET = 60;
|
|
2
|
+
function snippet(value) {
|
|
3
|
+
return value.length > MAX_REASON_SNIPPET ? `${value.slice(0, MAX_REASON_SNIPPET)}\u2026` : value;
|
|
4
|
+
}
|
|
5
|
+
function parseJsonPath(path) {
|
|
6
|
+
const tokens = [];
|
|
7
|
+
let buf = "";
|
|
8
|
+
const flush = () => {
|
|
9
|
+
if (buf) {
|
|
10
|
+
tokens.push(buf);
|
|
11
|
+
buf = "";
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
for (let i = 0; i < path.length; i++) {
|
|
15
|
+
const ch = path[i];
|
|
16
|
+
if (ch === ".") {
|
|
17
|
+
flush();
|
|
18
|
+
} else if (ch === "[") {
|
|
19
|
+
flush();
|
|
20
|
+
let inner = "";
|
|
21
|
+
i++;
|
|
22
|
+
while (i < path.length && path[i] !== "]") {
|
|
23
|
+
inner += path[i];
|
|
24
|
+
i++;
|
|
25
|
+
}
|
|
26
|
+
const trimmed = inner.trim();
|
|
27
|
+
const n = Number(trimmed);
|
|
28
|
+
tokens.push(trimmed !== "" && Number.isInteger(n) ? n : trimmed);
|
|
29
|
+
} else {
|
|
30
|
+
buf += ch;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
flush();
|
|
34
|
+
return tokens;
|
|
35
|
+
}
|
|
36
|
+
function resolveJsonPath(root, path) {
|
|
37
|
+
let current = root;
|
|
38
|
+
for (const token of parseJsonPath(path)) {
|
|
39
|
+
if (current === null || current === void 0) return void 0;
|
|
40
|
+
if (typeof token === "number") {
|
|
41
|
+
if (!Array.isArray(current)) return void 0;
|
|
42
|
+
current = current[token];
|
|
43
|
+
} else {
|
|
44
|
+
if (typeof current !== "object") return void 0;
|
|
45
|
+
current = current[token];
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return current;
|
|
49
|
+
}
|
|
50
|
+
function isNonEmpty(value) {
|
|
51
|
+
if (value === null || value === void 0) return false;
|
|
52
|
+
if (typeof value === "string") return value.trim().length > 0;
|
|
53
|
+
if (Array.isArray(value)) return value.length > 0;
|
|
54
|
+
if (typeof value === "object") return Object.keys(value).length > 0;
|
|
55
|
+
return Boolean(value);
|
|
56
|
+
}
|
|
57
|
+
function checkCondition(value, condition, expected) {
|
|
58
|
+
switch (condition) {
|
|
59
|
+
case "exists":
|
|
60
|
+
return value !== void 0 && value !== null;
|
|
61
|
+
case "nonEmpty":
|
|
62
|
+
return isNonEmpty(value);
|
|
63
|
+
case "equals":
|
|
64
|
+
return value === expected;
|
|
65
|
+
case "notEquals":
|
|
66
|
+
return value !== expected;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
function extractContentText(json) {
|
|
70
|
+
if (!json || typeof json !== "object") return "";
|
|
71
|
+
const obj = json;
|
|
72
|
+
const choices = obj.choices;
|
|
73
|
+
if (Array.isArray(choices)) {
|
|
74
|
+
const parts = [];
|
|
75
|
+
for (const choice of choices) {
|
|
76
|
+
const message = choice?.message;
|
|
77
|
+
const content = message?.content;
|
|
78
|
+
if (typeof content === "string") parts.push(content);
|
|
79
|
+
else if (Array.isArray(content)) {
|
|
80
|
+
for (const part of content) {
|
|
81
|
+
const text = part?.text;
|
|
82
|
+
if (typeof text === "string") parts.push(text);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
if (parts.length) return parts.join("");
|
|
87
|
+
}
|
|
88
|
+
const output = obj.output;
|
|
89
|
+
if (Array.isArray(output)) {
|
|
90
|
+
const parts = [];
|
|
91
|
+
for (const item of output) {
|
|
92
|
+
const content = item?.content;
|
|
93
|
+
if (Array.isArray(content)) {
|
|
94
|
+
for (const part of content) {
|
|
95
|
+
const text = part?.text;
|
|
96
|
+
if (typeof text === "string") parts.push(text);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
if (parts.length) return parts.join("");
|
|
101
|
+
}
|
|
102
|
+
return "";
|
|
103
|
+
}
|
|
104
|
+
function evaluateResponseValidation(json, config) {
|
|
105
|
+
if (!config || typeof config !== "object") return { valid: true };
|
|
106
|
+
const content = extractContentText(json);
|
|
107
|
+
for (const sub of config.forbiddenSubstrings ?? []) {
|
|
108
|
+
if (typeof sub === "string" && sub.length > 0 && content.includes(sub)) {
|
|
109
|
+
return { valid: false, reason: `response contains forbidden substring "${snippet(sub)}"` };
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
for (const sub of config.requiredSubstrings ?? []) {
|
|
113
|
+
if (typeof sub === "string" && sub.length > 0 && !content.includes(sub)) {
|
|
114
|
+
return { valid: false, reason: `response missing required substring "${snippet(sub)}"` };
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
if (typeof config.minContentLength === "number" && Number.isFinite(config.minContentLength) && config.minContentLength > 0 && content.trim().length < config.minContentLength) {
|
|
118
|
+
return {
|
|
119
|
+
valid: false,
|
|
120
|
+
reason: `response content shorter than ${config.minContentLength} chars`
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
for (const predicate of config.jsonPathPredicates ?? []) {
|
|
124
|
+
if (!predicate || typeof predicate.path !== "string" || !predicate.path) continue;
|
|
125
|
+
const resolved = resolveJsonPath(json, predicate.path);
|
|
126
|
+
if (!checkCondition(resolved, predicate.condition, predicate.value)) {
|
|
127
|
+
return {
|
|
128
|
+
valid: false,
|
|
129
|
+
reason: `jsonpath check failed: "${snippet(predicate.path)}" ${predicate.condition}`
|
|
130
|
+
};
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
return { valid: true };
|
|
134
|
+
}
|
|
135
|
+
export {
|
|
136
|
+
evaluateResponseValidation,
|
|
137
|
+
extractContentText,
|
|
138
|
+
parseJsonPath,
|
|
139
|
+
resolveJsonPath
|
|
140
|
+
};
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
import { errorResponse } from "../../utils/error.ts";
|
|
2
|
+
import { recordComboRequest } from "../comboMetrics.ts";
|
|
3
|
+
import { resolveDelayMs } from "./comboPredicates.ts";
|
|
4
|
+
import { validateResponseQuality, releaseQualityClone } from "./validateQuality.ts";
|
|
5
|
+
function isRecord(value) {
|
|
6
|
+
return !!value && typeof value === "object" && !Array.isArray(value);
|
|
7
|
+
}
|
|
8
|
+
function getCombosList(allCombos) {
|
|
9
|
+
const combos = Array.isArray(allCombos) ? allCombos : allCombos?.combos || [];
|
|
10
|
+
return combos.filter(
|
|
11
|
+
(combo) => isRecord(combo) && typeof combo.name === "string"
|
|
12
|
+
);
|
|
13
|
+
}
|
|
14
|
+
function findComboByName(allCombos, name) {
|
|
15
|
+
return getCombosList(allCombos).find((combo) => combo.name === name) || null;
|
|
16
|
+
}
|
|
17
|
+
function unitDisplayName(unit) {
|
|
18
|
+
return unit.kind === "combo-ref" ? `combo:${unit.comboName}` : unit.modelStr;
|
|
19
|
+
}
|
|
20
|
+
function shuffleUnits(units) {
|
|
21
|
+
const result = [...units];
|
|
22
|
+
for (let index = result.length - 1; index > 0; index -= 1) {
|
|
23
|
+
const swapIndex = Math.floor(Math.random() * (index + 1));
|
|
24
|
+
[result[index], result[swapIndex]] = [result[swapIndex], result[index]];
|
|
25
|
+
}
|
|
26
|
+
return result;
|
|
27
|
+
}
|
|
28
|
+
function selectWeightedUnit(units) {
|
|
29
|
+
const total = units.reduce((sum, unit) => sum + Math.max(0, Number(unit.weight) || 0), 0);
|
|
30
|
+
if (total <= 0) return units[0] || null;
|
|
31
|
+
let draw = Math.random() * total;
|
|
32
|
+
for (const unit of units) {
|
|
33
|
+
draw -= Math.max(0, Number(unit.weight) || 0);
|
|
34
|
+
if (draw <= 0) return unit;
|
|
35
|
+
}
|
|
36
|
+
return units[units.length - 1] || null;
|
|
37
|
+
}
|
|
38
|
+
async function executeModelUnit(args) {
|
|
39
|
+
if (args.isModelAvailable) {
|
|
40
|
+
const available = await args.isModelAvailable(args.unit.modelStr, args.unit);
|
|
41
|
+
if (!available) return errorResponse(503, `Model ${args.unit.modelStr} is unavailable`);
|
|
42
|
+
}
|
|
43
|
+
return args.handleSingleModel(args.body, args.unit.modelStr, {
|
|
44
|
+
...args.unit,
|
|
45
|
+
effectiveComboStrategy: args.effectiveComboStrategy,
|
|
46
|
+
failoverBeforeRetry: args.failoverBeforeRetry
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
function buildChildNestingContext(args) {
|
|
50
|
+
if (args.context.depth >= args.context.maxDepth) {
|
|
51
|
+
return errorResponse(503, `Max combo nesting depth (${args.context.maxDepth}) exceeded`);
|
|
52
|
+
}
|
|
53
|
+
if (args.context.visitedComboNames.includes(args.childComboName)) {
|
|
54
|
+
return errorResponse(503, `Circular combo reference detected: ${args.childComboName}`);
|
|
55
|
+
}
|
|
56
|
+
return {
|
|
57
|
+
...args.context,
|
|
58
|
+
depth: args.context.depth + 1,
|
|
59
|
+
visitedComboNames: [...args.context.visitedComboNames, args.childComboName]
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
async function executeComboRefUnit(args) {
|
|
63
|
+
const childCombo = findComboByName(args.allCombos, args.unit.comboName);
|
|
64
|
+
if (!childCombo) return errorResponse(503, `Nested combo "${args.unit.comboName}" not found`);
|
|
65
|
+
const childNesting = buildChildNestingContext({
|
|
66
|
+
context: args.nesting,
|
|
67
|
+
childComboName: childCombo.name
|
|
68
|
+
});
|
|
69
|
+
if (childNesting instanceof Response) return childNesting;
|
|
70
|
+
return args.runCombo({
|
|
71
|
+
...args.baseOptions,
|
|
72
|
+
body: args.body,
|
|
73
|
+
combo: childCombo,
|
|
74
|
+
nesting: childNesting
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
async function executeRuntimeUnit(args) {
|
|
78
|
+
if (args.unit.kind === "model") {
|
|
79
|
+
return executeModelUnit({
|
|
80
|
+
body: args.body,
|
|
81
|
+
unit: args.unit,
|
|
82
|
+
handleSingleModel: args.handleSingleModel,
|
|
83
|
+
isModelAvailable: args.isModelAvailable,
|
|
84
|
+
failoverBeforeRetry: args.failoverBeforeRetry,
|
|
85
|
+
effectiveComboStrategy: args.effectiveComboStrategy
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
return executeComboRefUnit({
|
|
89
|
+
body: args.body,
|
|
90
|
+
unit: args.unit,
|
|
91
|
+
allCombos: args.allCombos,
|
|
92
|
+
runCombo: args.runCombo,
|
|
93
|
+
baseOptions: args.baseOptions,
|
|
94
|
+
nesting: args.nesting
|
|
95
|
+
});
|
|
96
|
+
}
|
|
97
|
+
function orderUnitsForStrategy(strategy, units) {
|
|
98
|
+
if (strategy === "random") return shuffleUnits(units);
|
|
99
|
+
if (strategy === "weighted") {
|
|
100
|
+
const selected = selectWeightedUnit(units);
|
|
101
|
+
if (!selected) return units;
|
|
102
|
+
return [selected, ...units.filter((unit) => unit.executionKey !== selected.executionKey)];
|
|
103
|
+
}
|
|
104
|
+
return units;
|
|
105
|
+
}
|
|
106
|
+
async function executeRuntimeUnitCombo(args) {
|
|
107
|
+
const maxRetries = Number(args.config.maxRetries ?? 1);
|
|
108
|
+
const retryDelayMs = resolveDelayMs(args.config.retryDelayMs, 2e3);
|
|
109
|
+
const orderedUnits = orderUnitsForStrategy(args.strategy, args.units);
|
|
110
|
+
const clientRequestedStream = args.body?.stream === true;
|
|
111
|
+
const startTime = Date.now();
|
|
112
|
+
const effectiveStrategy = args.effectiveComboStrategy ?? args.strategy;
|
|
113
|
+
let lastResponse = null;
|
|
114
|
+
let fallbackCount = 0;
|
|
115
|
+
for (const unit of orderedUnits) {
|
|
116
|
+
for (let retry = 0; retry <= maxRetries; retry += 1) {
|
|
117
|
+
if (args.signal?.aborted)
|
|
118
|
+
return { response: errorResponse(499, "Client disconnected"), unit };
|
|
119
|
+
args.nesting.attemptBudget.count += 1;
|
|
120
|
+
if (args.nesting.attemptBudget.count > args.nesting.attemptBudget.limit) {
|
|
121
|
+
return { response: errorResponse(503, "Maximum combo retry limit reached"), unit };
|
|
122
|
+
}
|
|
123
|
+
if (retry > 0) {
|
|
124
|
+
await new Promise((resolve) => setTimeout(resolve, retryDelayMs));
|
|
125
|
+
}
|
|
126
|
+
args.log.info(
|
|
127
|
+
"COMBO",
|
|
128
|
+
`Trying ${unit.kind} ${unitDisplayName(unit)}${retry > 0 ? ` (retry ${retry})` : ""}`
|
|
129
|
+
);
|
|
130
|
+
const response = await executeRuntimeUnit({
|
|
131
|
+
body: args.body,
|
|
132
|
+
unit,
|
|
133
|
+
allCombos: args.allCombos,
|
|
134
|
+
handleSingleModel: args.handleSingleModel,
|
|
135
|
+
isModelAvailable: args.isModelAvailable,
|
|
136
|
+
runCombo: args.runCombo,
|
|
137
|
+
baseOptions: args.baseOptions,
|
|
138
|
+
nesting: args.nesting,
|
|
139
|
+
failoverBeforeRetry: args.config.failoverBeforeRetry,
|
|
140
|
+
effectiveComboStrategy: effectiveStrategy
|
|
141
|
+
});
|
|
142
|
+
lastResponse = response;
|
|
143
|
+
if (response.ok) {
|
|
144
|
+
if (unit.kind === "combo-ref") {
|
|
145
|
+
recordComboRequest(args.combo.name, null, {
|
|
146
|
+
success: true,
|
|
147
|
+
latencyMs: Date.now() - startTime,
|
|
148
|
+
fallbackCount,
|
|
149
|
+
strategy: effectiveStrategy,
|
|
150
|
+
target: { executionKey: unit.executionKey, stepId: unit.stepId, label: unit.label }
|
|
151
|
+
});
|
|
152
|
+
return { response, unit };
|
|
153
|
+
}
|
|
154
|
+
let unitClone;
|
|
155
|
+
try {
|
|
156
|
+
unitClone = response.clone();
|
|
157
|
+
} catch {
|
|
158
|
+
unitClone = response;
|
|
159
|
+
}
|
|
160
|
+
const quality = await validateResponseQuality(
|
|
161
|
+
unitClone,
|
|
162
|
+
clientRequestedStream,
|
|
163
|
+
args.log,
|
|
164
|
+
args.config.responseValidation
|
|
165
|
+
);
|
|
166
|
+
releaseQualityClone(unitClone, response, quality);
|
|
167
|
+
if (quality.valid) {
|
|
168
|
+
recordComboRequest(args.combo.name, unit.modelStr, {
|
|
169
|
+
success: true,
|
|
170
|
+
latencyMs: Date.now() - startTime,
|
|
171
|
+
fallbackCount,
|
|
172
|
+
strategy: effectiveStrategy,
|
|
173
|
+
target: { executionKey: unit.executionKey, stepId: unit.stepId, label: unit.label }
|
|
174
|
+
});
|
|
175
|
+
return { response, unit };
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
if (![408, 429, 500, 502, 503, 504].includes(response.status)) break;
|
|
179
|
+
}
|
|
180
|
+
fallbackCount += 1;
|
|
181
|
+
}
|
|
182
|
+
recordComboRequest(args.combo.name, null, {
|
|
183
|
+
success: false,
|
|
184
|
+
latencyMs: Date.now() - startTime,
|
|
185
|
+
fallbackCount,
|
|
186
|
+
strategy: effectiveStrategy
|
|
187
|
+
});
|
|
188
|
+
return {
|
|
189
|
+
response: lastResponse || errorResponse(503, "All nested combo units unavailable"),
|
|
190
|
+
unit: null
|
|
191
|
+
};
|
|
192
|
+
}
|
|
193
|
+
export {
|
|
194
|
+
executeRuntimeUnitCombo
|
|
195
|
+
};
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { createHash } from "node:crypto";
|
|
2
|
+
import { computeHeadroom } from "./headroomRanking.ts";
|
|
3
|
+
const STICKINESS_HEADROOM_THRESHOLD = 0.15;
|
|
4
|
+
const TTL_MS = 15 * 60 * 1e3;
|
|
5
|
+
const MAX_ENTRIES = 500;
|
|
6
|
+
let _fetcherOverride = null;
|
|
7
|
+
function __setStickinessHeadroomFetcherForTests(fetcher) {
|
|
8
|
+
_fetcherOverride = fetcher;
|
|
9
|
+
}
|
|
10
|
+
async function resolveSaturation(connectionId, provider) {
|
|
11
|
+
if (_fetcherOverride) return _fetcherOverride(connectionId);
|
|
12
|
+
try {
|
|
13
|
+
const mod = await import('../../../dist/lib/quota/saturationSignals.js');
|
|
14
|
+
const getSaturation = mod.getSaturation;
|
|
15
|
+
const [util5h, util7d] = await Promise.all([
|
|
16
|
+
getSaturation(connectionId, provider, { unit: "percent", window: "5h" }),
|
|
17
|
+
getSaturation(connectionId, provider, { unit: "percent", window: "weekly" })
|
|
18
|
+
]);
|
|
19
|
+
return { util5h, util7d };
|
|
20
|
+
} catch {
|
|
21
|
+
return void 0;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
const stickyMap = /* @__PURE__ */ new Map();
|
|
25
|
+
function deriveMessageHash(messages) {
|
|
26
|
+
if (!Array.isArray(messages) || messages.length === 0) return null;
|
|
27
|
+
const first = messages.find((m) => m?.role === "user");
|
|
28
|
+
if (!first) return null;
|
|
29
|
+
let text;
|
|
30
|
+
if (typeof first.content === "string") {
|
|
31
|
+
text = first.content;
|
|
32
|
+
} else if (Array.isArray(first.content)) {
|
|
33
|
+
text = first.content.filter((p) => p != null && typeof p === "object").map((p) => typeof p.text === "string" ? p.text : "").join("");
|
|
34
|
+
} else {
|
|
35
|
+
return null;
|
|
36
|
+
}
|
|
37
|
+
if (!text) return null;
|
|
38
|
+
return createHash("sha256").update(text).digest("hex").slice(0, 16);
|
|
39
|
+
}
|
|
40
|
+
function evict() {
|
|
41
|
+
const now = Date.now();
|
|
42
|
+
for (const [key, entry] of stickyMap) {
|
|
43
|
+
if (now - entry.lastUsedAt > TTL_MS) stickyMap.delete(key);
|
|
44
|
+
}
|
|
45
|
+
while (stickyMap.size > MAX_ENTRIES) {
|
|
46
|
+
let oldestKey = null;
|
|
47
|
+
let oldestTime = Infinity;
|
|
48
|
+
for (const [key, entry] of stickyMap) {
|
|
49
|
+
if (entry.lastUsedAt < oldestTime) {
|
|
50
|
+
oldestTime = entry.lastUsedAt;
|
|
51
|
+
oldestKey = key;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
if (oldestKey === null) break;
|
|
55
|
+
stickyMap.delete(oldestKey);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
function recordStickyBinding(messageHash, connectionId) {
|
|
59
|
+
const existing = stickyMap.get(messageHash);
|
|
60
|
+
if (existing) {
|
|
61
|
+
existing.connectionId = connectionId;
|
|
62
|
+
existing.lastUsedAt = Date.now();
|
|
63
|
+
} else {
|
|
64
|
+
evict();
|
|
65
|
+
stickyMap.set(messageHash, {
|
|
66
|
+
connectionId,
|
|
67
|
+
createdAt: Date.now(),
|
|
68
|
+
lastUsedAt: Date.now()
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
function clearStickyBinding(messageHash) {
|
|
73
|
+
stickyMap.delete(messageHash);
|
|
74
|
+
}
|
|
75
|
+
function clearAllStickyBindings() {
|
|
76
|
+
stickyMap.clear();
|
|
77
|
+
}
|
|
78
|
+
function resolveDisableSessionStickiness(config, settings) {
|
|
79
|
+
const perCombo = config?.disableSessionStickiness;
|
|
80
|
+
if (typeof perCombo === "boolean") return perCombo;
|
|
81
|
+
return settings?.disableSessionStickiness === true;
|
|
82
|
+
}
|
|
83
|
+
async function applySessionStickiness(orderedTargets, messages) {
|
|
84
|
+
const noOp = { targets: orderedTargets, messageHash: null, stuck: false };
|
|
85
|
+
try {
|
|
86
|
+
if (orderedTargets.length <= 1) return noOp;
|
|
87
|
+
const messageHash = deriveMessageHash(messages);
|
|
88
|
+
if (!messageHash) return noOp;
|
|
89
|
+
const existing = stickyMap.get(messageHash);
|
|
90
|
+
if (!existing) return { targets: orderedTargets, messageHash, stuck: false };
|
|
91
|
+
if (Date.now() - existing.lastUsedAt > TTL_MS) {
|
|
92
|
+
stickyMap.delete(messageHash);
|
|
93
|
+
return { targets: orderedTargets, messageHash, stuck: false };
|
|
94
|
+
}
|
|
95
|
+
const { connectionId } = existing;
|
|
96
|
+
const stickyIdx = orderedTargets.findIndex((t) => t.connectionId === connectionId);
|
|
97
|
+
if (stickyIdx === -1) {
|
|
98
|
+
clearStickyBinding(messageHash);
|
|
99
|
+
return { targets: orderedTargets, messageHash, stuck: false };
|
|
100
|
+
}
|
|
101
|
+
const stickyTarget = orderedTargets[stickyIdx];
|
|
102
|
+
const sat = await resolveSaturation(connectionId, stickyTarget.provider);
|
|
103
|
+
const headroom = computeHeadroom(sat);
|
|
104
|
+
if (headroom <= STICKINESS_HEADROOM_THRESHOLD) {
|
|
105
|
+
clearStickyBinding(messageHash);
|
|
106
|
+
return { targets: orderedTargets, messageHash, stuck: false };
|
|
107
|
+
}
|
|
108
|
+
const reordered = [
|
|
109
|
+
orderedTargets[stickyIdx],
|
|
110
|
+
...orderedTargets.slice(0, stickyIdx),
|
|
111
|
+
...orderedTargets.slice(stickyIdx + 1)
|
|
112
|
+
];
|
|
113
|
+
existing.lastUsedAt = Date.now();
|
|
114
|
+
return { targets: reordered, messageHash, stuck: true };
|
|
115
|
+
} catch {
|
|
116
|
+
return noOp;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
export {
|
|
120
|
+
STICKINESS_HEADROOM_THRESHOLD,
|
|
121
|
+
__setStickinessHeadroomFetcherForTests,
|
|
122
|
+
applySessionStickiness,
|
|
123
|
+
clearAllStickyBindings,
|
|
124
|
+
clearStickyBinding,
|
|
125
|
+
deriveMessageHash,
|
|
126
|
+
recordStickyBinding,
|
|
127
|
+
resolveDisableSessionStickiness
|
|
128
|
+
};
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { secureRandomFloat } from "../../../shared/utils/secureRandom";
|
|
2
|
+
import { recordComboShadowRequest } from "../comboMetrics.ts";
|
|
3
|
+
import { isRecord } from "./comboData.ts";
|
|
4
|
+
import { resolveNestedComboTargets } from "./comboStructure.ts";
|
|
5
|
+
import { toRecordedTarget } from "./comboPredicates.ts";
|
|
6
|
+
function normalizeShadowRoutingConfig(config) {
|
|
7
|
+
const raw = isRecord(config.shadowRouting) ? config.shadowRouting : {};
|
|
8
|
+
const sampleRate = Number(raw.sampleRate ?? 1);
|
|
9
|
+
const maxTargets = Number(raw.maxTargets ?? 2);
|
|
10
|
+
const timeoutMs = Number(raw.timeoutMs ?? 3e4);
|
|
11
|
+
return {
|
|
12
|
+
enabled: raw.enabled === true,
|
|
13
|
+
targets: Array.isArray(raw.targets) ? raw.targets : [],
|
|
14
|
+
sampleRate: Number.isFinite(sampleRate) ? Math.max(0, Math.min(1, sampleRate)) : 1,
|
|
15
|
+
maxTargets: Number.isFinite(maxTargets) ? Math.max(1, Math.min(10, Math.floor(maxTargets))) : 2,
|
|
16
|
+
timeoutMs: Number.isFinite(timeoutMs) ? Math.max(1e3, Math.min(12e4, Math.floor(timeoutMs))) : 3e4
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
function resolveShadowTargets(combo, config, allCombos) {
|
|
20
|
+
const shadowConfig = normalizeShadowRoutingConfig(config);
|
|
21
|
+
if (!shadowConfig.enabled || shadowConfig.targets.length === 0) return [];
|
|
22
|
+
if (shadowConfig.sampleRate <= 0 || secureRandomFloat() > shadowConfig.sampleRate) return [];
|
|
23
|
+
const shadowCombo = {
|
|
24
|
+
...combo,
|
|
25
|
+
name: `${combo.name}:shadow`,
|
|
26
|
+
models: shadowConfig.targets
|
|
27
|
+
};
|
|
28
|
+
return resolveNestedComboTargets(shadowCombo, allCombos, /* @__PURE__ */ new Set([combo.name]), 0, ["shadow"]).slice(0, shadowConfig.maxTargets).map((target) => ({
|
|
29
|
+
...target,
|
|
30
|
+
trafficType: "shadow"
|
|
31
|
+
}));
|
|
32
|
+
}
|
|
33
|
+
async function drainShadowResponse(response) {
|
|
34
|
+
try {
|
|
35
|
+
if (!response.body) return;
|
|
36
|
+
await response.arrayBuffer();
|
|
37
|
+
} catch {
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
function withTimeout(promise, timeoutMs) {
|
|
41
|
+
return new Promise((resolve, reject) => {
|
|
42
|
+
const timer = setTimeout(() => reject(new Error("Shadow route timed out")), timeoutMs);
|
|
43
|
+
promise.then(
|
|
44
|
+
(value) => {
|
|
45
|
+
clearTimeout(timer);
|
|
46
|
+
resolve(value);
|
|
47
|
+
},
|
|
48
|
+
(error) => {
|
|
49
|
+
clearTimeout(timer);
|
|
50
|
+
reject(error);
|
|
51
|
+
}
|
|
52
|
+
);
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
function cloneRequestBodyForShadowRouting(body) {
|
|
56
|
+
if (typeof structuredClone === "function") {
|
|
57
|
+
return structuredClone(body);
|
|
58
|
+
}
|
|
59
|
+
return JSON.parse(JSON.stringify(body));
|
|
60
|
+
}
|
|
61
|
+
function scheduleShadowRouting(combo, config, body, targets, handleSingleModel, isModelAvailable, strategy, log) {
|
|
62
|
+
if (targets.length === 0) return;
|
|
63
|
+
const shadowConfig = normalizeShadowRoutingConfig(config);
|
|
64
|
+
let shadowBaseBody;
|
|
65
|
+
try {
|
|
66
|
+
shadowBaseBody = cloneRequestBodyForShadowRouting(body);
|
|
67
|
+
} catch (error) {
|
|
68
|
+
log.warn("COMBO", "Shadow routing skipped: failed to clone request body", {
|
|
69
|
+
error: error instanceof Error ? error.message : String(error)
|
|
70
|
+
});
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
73
|
+
const run = async () => {
|
|
74
|
+
await Promise.all(
|
|
75
|
+
targets.map(async (target) => {
|
|
76
|
+
const startedAt = Date.now();
|
|
77
|
+
try {
|
|
78
|
+
const shadowBody = {
|
|
79
|
+
...cloneRequestBodyForShadowRouting(shadowBaseBody),
|
|
80
|
+
model: target.modelStr,
|
|
81
|
+
stream: false
|
|
82
|
+
};
|
|
83
|
+
if (isModelAvailable) {
|
|
84
|
+
const available = await isModelAvailable(target.modelStr, target);
|
|
85
|
+
if (!available) {
|
|
86
|
+
recordComboShadowRequest(combo.name, target.modelStr, {
|
|
87
|
+
success: false,
|
|
88
|
+
latencyMs: Date.now() - startedAt,
|
|
89
|
+
target: toRecordedTarget(target)
|
|
90
|
+
});
|
|
91
|
+
log.info("COMBO", `Shadow target skipped (unavailable): ${target.modelStr}`);
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
const response = await withTimeout(
|
|
96
|
+
handleSingleModel(shadowBody, target.modelStr, {
|
|
97
|
+
...target,
|
|
98
|
+
failoverBeforeRetry: true,
|
|
99
|
+
trafficType: "shadow"
|
|
100
|
+
}),
|
|
101
|
+
shadowConfig.timeoutMs
|
|
102
|
+
);
|
|
103
|
+
await drainShadowResponse(response.clone());
|
|
104
|
+
recordComboShadowRequest(combo.name, target.modelStr, {
|
|
105
|
+
success: response.ok,
|
|
106
|
+
latencyMs: Date.now() - startedAt,
|
|
107
|
+
target: toRecordedTarget(target)
|
|
108
|
+
});
|
|
109
|
+
log.info(
|
|
110
|
+
"COMBO",
|
|
111
|
+
`Shadow target ${target.modelStr} completed with status ${response.status} (${strategy})`
|
|
112
|
+
);
|
|
113
|
+
} catch (error) {
|
|
114
|
+
recordComboShadowRequest(combo.name, target.modelStr, {
|
|
115
|
+
success: false,
|
|
116
|
+
latencyMs: Date.now() - startedAt,
|
|
117
|
+
target: toRecordedTarget(target)
|
|
118
|
+
});
|
|
119
|
+
log.warn("COMBO", `Shadow target ${target.modelStr} failed`, {
|
|
120
|
+
error: error instanceof Error ? error.message : String(error)
|
|
121
|
+
});
|
|
122
|
+
}
|
|
123
|
+
})
|
|
124
|
+
);
|
|
125
|
+
};
|
|
126
|
+
setTimeout(() => void run(), 0);
|
|
127
|
+
}
|
|
128
|
+
export {
|
|
129
|
+
resolveShadowTargets,
|
|
130
|
+
scheduleShadowRouting
|
|
131
|
+
};
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import {
|
|
2
|
+
classifyErrorText,
|
|
3
|
+
hasPerModelQuota,
|
|
4
|
+
isProviderExhaustedReason
|
|
5
|
+
} from "../accountFallback.ts";
|
|
6
|
+
import { RateLimitReason } from "../../config/constants.ts";
|
|
7
|
+
import { isProviderCircuitOpenResult } from "./comboPredicates.ts";
|
|
8
|
+
const CONNECTION_LEVEL_ERROR_STATUSES = [408, 500, 502, 503, 504, 524];
|
|
9
|
+
function isEmptyContentFailure(status, errorText) {
|
|
10
|
+
return status === 502 && /empty content/i.test(errorText);
|
|
11
|
+
}
|
|
12
|
+
function applyComboTargetExhaustion(target, opts) {
|
|
13
|
+
const {
|
|
14
|
+
result,
|
|
15
|
+
fallbackResult,
|
|
16
|
+
errorText,
|
|
17
|
+
rawModel,
|
|
18
|
+
isTokenLimitBreach,
|
|
19
|
+
allAccountsRateLimited,
|
|
20
|
+
sets,
|
|
21
|
+
log,
|
|
22
|
+
tag,
|
|
23
|
+
exhaustedLogLevel,
|
|
24
|
+
structuredError
|
|
25
|
+
} = opts;
|
|
26
|
+
const { exhaustedProviders, exhaustedConnections, transientRateLimitedProviders } = sets;
|
|
27
|
+
const provider = target.provider;
|
|
28
|
+
const providerExhausted = Boolean(provider && provider !== "unknown") && !hasPerModelQuota(provider, rawModel) && (isProviderExhaustedReason(fallbackResult) || classifyErrorText(structuredError?.code || errorText) === RateLimitReason.QUOTA_EXHAUSTED || allAccountsRateLimited);
|
|
29
|
+
if (providerExhausted) {
|
|
30
|
+
exhaustedProviders.add(provider);
|
|
31
|
+
const emit = exhaustedLogLevel === "debug" ? log.debug : log.info;
|
|
32
|
+
emit?.(
|
|
33
|
+
tag,
|
|
34
|
+
`Provider ${provider} quota exhausted \u2014 marking for skip on remaining targets (#1731)`
|
|
35
|
+
);
|
|
36
|
+
} else {
|
|
37
|
+
if (result.status === 429 && !isTokenLimitBreach && provider && provider !== "unknown") {
|
|
38
|
+
transientRateLimitedProviders.add(provider);
|
|
39
|
+
}
|
|
40
|
+
markConnectionLevelExhaustion(target, { result, errorText, sets, log, tag, rawModel });
|
|
41
|
+
}
|
|
42
|
+
return providerExhausted;
|
|
43
|
+
}
|
|
44
|
+
function markConnectionLevelExhaustion(target, opts) {
|
|
45
|
+
const { result, errorText, sets, log, tag, rawModel } = opts;
|
|
46
|
+
const provider = target.provider;
|
|
47
|
+
if (!provider || provider === "unknown" || !CONNECTION_LEVEL_ERROR_STATUSES.includes(result.status) || isProviderCircuitOpenResult(result, errorText) || // #5085: empty-content 502 is a healthy connection returning no body — model-level, not
|
|
48
|
+
// connection-level. Don't exhaust the provider; let the remaining legs (incl. same-provider)
|
|
49
|
+
// be tried in-request.
|
|
50
|
+
isEmptyContentFailure(result.status, errorText) || // Per-model-quota providers (gemini, github, passthrough, compatible) multiplex models
|
|
51
|
+
// behind one connection. A model-level 500 (e.g. Gemini "Internal error encountered")
|
|
52
|
+
// must NOT exhaust the connection — other models on the same connection may still succeed.
|
|
53
|
+
// Other connection-level statuses (408/502/503/504/524) indicate the connection itself is
|
|
54
|
+
// bad, so they correctly exhaust even for per-model-quota providers.
|
|
55
|
+
result.status === 500 && hasPerModelQuota(provider, rawModel)) {
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
const connId = target.connectionId ?? void 0;
|
|
59
|
+
if (connId) {
|
|
60
|
+
sets.exhaustedConnections.add(`${provider}:${connId}`);
|
|
61
|
+
log.info(
|
|
62
|
+
tag,
|
|
63
|
+
`Provider ${provider} connection ${connId} error (${result.status}) \u2014 marking for skip on remaining targets (#1731v2)`
|
|
64
|
+
);
|
|
65
|
+
} else {
|
|
66
|
+
sets.exhaustedProviders.add(provider);
|
|
67
|
+
log.info(
|
|
68
|
+
tag,
|
|
69
|
+
`Provider ${provider} connection error (${result.status}) \u2014 marking for skip on remaining targets (#1731)`
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
export {
|
|
74
|
+
applyComboTargetExhaustion
|
|
75
|
+
};
|