@fudrouter/fsrouter 0.6.64 → 0.6.66
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,112 @@
|
|
|
1
|
+
const gates = /* @__PURE__ */ new Map();
|
|
2
|
+
function getGate(modelStr, maxConcurrency = 3) {
|
|
3
|
+
if (!gates.has(modelStr)) {
|
|
4
|
+
gates.set(modelStr, {
|
|
5
|
+
running: 0,
|
|
6
|
+
max: maxConcurrency,
|
|
7
|
+
queue: [],
|
|
8
|
+
rateLimitedUntil: null
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
const gate = gates.get(modelStr);
|
|
12
|
+
gate.max = maxConcurrency;
|
|
13
|
+
return gate;
|
|
14
|
+
}
|
|
15
|
+
function isRateLimited(gate) {
|
|
16
|
+
if (!gate.rateLimitedUntil) return false;
|
|
17
|
+
if (Date.now() >= gate.rateLimitedUntil) {
|
|
18
|
+
gate.rateLimitedUntil = null;
|
|
19
|
+
return false;
|
|
20
|
+
}
|
|
21
|
+
return true;
|
|
22
|
+
}
|
|
23
|
+
function drainQueue(modelStr) {
|
|
24
|
+
const gate = gates.get(modelStr);
|
|
25
|
+
if (!gate) return;
|
|
26
|
+
while (gate.queue.length > 0 && gate.running < gate.max && !isRateLimited(gate)) {
|
|
27
|
+
const next = gate.queue.shift();
|
|
28
|
+
if (!next) break;
|
|
29
|
+
clearTimeout(next.timer);
|
|
30
|
+
gate.running++;
|
|
31
|
+
next.resolve(createReleaseFn(modelStr));
|
|
32
|
+
}
|
|
33
|
+
if (gate.running === 0 && gate.queue.length === 0) {
|
|
34
|
+
gates.delete(modelStr);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
function createReleaseFn(modelStr) {
|
|
38
|
+
let released = false;
|
|
39
|
+
return () => {
|
|
40
|
+
if (released) return;
|
|
41
|
+
released = true;
|
|
42
|
+
const gate = gates.get(modelStr);
|
|
43
|
+
if (gate && gate.running > 0) {
|
|
44
|
+
gate.running--;
|
|
45
|
+
if (gate.running === 0 && gate.queue.length === 0) {
|
|
46
|
+
gates.delete(modelStr);
|
|
47
|
+
return;
|
|
48
|
+
}
|
|
49
|
+
drainQueue(modelStr);
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
function acquire(modelStr, { maxConcurrency = 3, timeoutMs = 3e4, maxQueueSize } = {}) {
|
|
54
|
+
const gate = getGate(modelStr, maxConcurrency);
|
|
55
|
+
if (gate.running < gate.max && !isRateLimited(gate)) {
|
|
56
|
+
gate.running++;
|
|
57
|
+
return Promise.resolve(createReleaseFn(modelStr));
|
|
58
|
+
}
|
|
59
|
+
if (typeof maxQueueSize === "number" && maxQueueSize >= 0 && gate.queue.length >= maxQueueSize) {
|
|
60
|
+
const err = new Error(`Semaphore queue full (${maxQueueSize}) for ${modelStr}`);
|
|
61
|
+
err.code = "SEMAPHORE_QUEUE_FULL";
|
|
62
|
+
if (gate.running === 0 && gate.queue.length === 0) gates.delete(modelStr);
|
|
63
|
+
return Promise.reject(err);
|
|
64
|
+
}
|
|
65
|
+
return new Promise((resolve, reject) => {
|
|
66
|
+
const timer = setTimeout(() => {
|
|
67
|
+
const idx = gate.queue.findIndex((item) => item.timer === timer);
|
|
68
|
+
if (idx !== -1) gate.queue.splice(idx, 1);
|
|
69
|
+
const err = new Error(`Semaphore timeout after ${timeoutMs}ms for ${modelStr}`);
|
|
70
|
+
err.code = "SEMAPHORE_TIMEOUT";
|
|
71
|
+
reject(err);
|
|
72
|
+
}, timeoutMs);
|
|
73
|
+
gate.queue.push({ resolve, reject, timer });
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
function markRateLimited(modelStr, cooldownMs) {
|
|
77
|
+
const gate = getGate(modelStr);
|
|
78
|
+
gate.rateLimitedUntil = Date.now() + cooldownMs;
|
|
79
|
+
setTimeout(() => {
|
|
80
|
+
if (gate.rateLimitedUntil && Date.now() >= gate.rateLimitedUntil) {
|
|
81
|
+
gate.rateLimitedUntil = null;
|
|
82
|
+
drainQueue(modelStr);
|
|
83
|
+
}
|
|
84
|
+
}, cooldownMs + 50);
|
|
85
|
+
}
|
|
86
|
+
function getStats() {
|
|
87
|
+
const stats = {};
|
|
88
|
+
for (const [model, gate] of gates) {
|
|
89
|
+
stats[model] = {
|
|
90
|
+
running: gate.running,
|
|
91
|
+
queued: gate.queue.length,
|
|
92
|
+
max: gate.max,
|
|
93
|
+
rateLimitedUntil: gate.rateLimitedUntil ? new Date(gate.rateLimitedUntil).toISOString() : null
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
return stats;
|
|
97
|
+
}
|
|
98
|
+
function resetAll() {
|
|
99
|
+
for (const [, gate] of gates) {
|
|
100
|
+
for (const item of gate.queue) {
|
|
101
|
+
clearTimeout(item.timer);
|
|
102
|
+
item.reject(new Error("Semaphore reset"));
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
gates.clear();
|
|
106
|
+
}
|
|
107
|
+
export {
|
|
108
|
+
acquire,
|
|
109
|
+
getStats,
|
|
110
|
+
markRateLimited,
|
|
111
|
+
resetAll
|
|
112
|
+
};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
const INTERNAL_ASSISTANT_PHASES = /* @__PURE__ */ new Set(["commentary"]);
|
|
2
|
+
const SERVER_ITEM_ID_PREFIX_BY_TYPE = {
|
|
3
|
+
function_call: "fc_",
|
|
4
|
+
message: "msg_",
|
|
5
|
+
reasoning: "rs_"
|
|
6
|
+
};
|
|
7
|
+
const SERVER_ITEM_ID_PATTERN = /^(fc|msg|rs|resp)_/;
|
|
8
|
+
function toRecord(value) {
|
|
9
|
+
return value && typeof value === "object" && !Array.isArray(value) ? value : null;
|
|
10
|
+
}
|
|
11
|
+
function isResponsesMessageItem(record) {
|
|
12
|
+
return record.type === "message" || !record.type && typeof record.role === "string";
|
|
13
|
+
}
|
|
14
|
+
function isInternalAssistantMessage(record) {
|
|
15
|
+
if (!isResponsesMessageItem(record)) return false;
|
|
16
|
+
if (record.role !== "assistant") return false;
|
|
17
|
+
const phase = typeof record.phase === "string" ? record.phase.trim().toLowerCase() : "";
|
|
18
|
+
if (!phase) return false;
|
|
19
|
+
return INTERNAL_ASSISTANT_PHASES.has(phase);
|
|
20
|
+
}
|
|
21
|
+
function sanitizeFunctionName(name) {
|
|
22
|
+
return name.replace(/[^a-zA-Z0-9_-]/g, "_").slice(0, 128);
|
|
23
|
+
}
|
|
24
|
+
function sanitizeInputItemId(record) {
|
|
25
|
+
if (typeof record.id !== "string") return record;
|
|
26
|
+
const type = typeof record.type === "string" ? record.type : "";
|
|
27
|
+
const expectedPrefix = SERVER_ITEM_ID_PREFIX_BY_TYPE[type];
|
|
28
|
+
const hasExpectedPrefix = expectedPrefix ? record.id.startsWith(expectedPrefix) : SERVER_ITEM_ID_PATTERN.test(record.id);
|
|
29
|
+
if (hasExpectedPrefix) return record;
|
|
30
|
+
const next = { ...record };
|
|
31
|
+
delete next.id;
|
|
32
|
+
return next;
|
|
33
|
+
}
|
|
34
|
+
function imageUrlToText(value) {
|
|
35
|
+
if (typeof value === "string") return value;
|
|
36
|
+
const record = toRecord(value);
|
|
37
|
+
return typeof record?.url === "string" ? record.url : "";
|
|
38
|
+
}
|
|
39
|
+
function sanitizeContentPart(part, role) {
|
|
40
|
+
const record = toRecord(part);
|
|
41
|
+
if (!record) return part;
|
|
42
|
+
if (record.type === "image_url") {
|
|
43
|
+
const url = imageUrlToText(record.image_url);
|
|
44
|
+
if (role === "user") {
|
|
45
|
+
const next = { type: "input_image", image_url: url };
|
|
46
|
+
const image = toRecord(record.image_url);
|
|
47
|
+
if (image?.detail !== void 0) next.detail = image.detail;
|
|
48
|
+
return next;
|
|
49
|
+
}
|
|
50
|
+
return { type: "output_text", text: url ? `[Image: ${url}]` : "[Image]" };
|
|
51
|
+
}
|
|
52
|
+
if (role === "assistant" && record.type === "input_image") {
|
|
53
|
+
const url = imageUrlToText(record.image_url);
|
|
54
|
+
return { type: "output_text", text: url ? `[Image: ${url}]` : "[Image]" };
|
|
55
|
+
}
|
|
56
|
+
return part;
|
|
57
|
+
}
|
|
58
|
+
function sanitizeMessageContent(record) {
|
|
59
|
+
if (!Array.isArray(record.content)) return record;
|
|
60
|
+
const role = typeof record.role === "string" ? record.role.toLowerCase() : "";
|
|
61
|
+
const content = record.content.map((part) => sanitizeContentPart(part, role));
|
|
62
|
+
return { ...record, content };
|
|
63
|
+
}
|
|
64
|
+
function sanitizeOutputContent(record) {
|
|
65
|
+
if (!Array.isArray(record.output)) return record;
|
|
66
|
+
const role = record.type === "function_call_output" ? "user" : "assistant";
|
|
67
|
+
const output = record.output.map((part) => sanitizeContentPart(part, role));
|
|
68
|
+
return { ...record, output };
|
|
69
|
+
}
|
|
70
|
+
function sanitizeInputItem(item) {
|
|
71
|
+
const record = toRecord(item);
|
|
72
|
+
if (!record) return item;
|
|
73
|
+
let next = sanitizeInputItemId(record);
|
|
74
|
+
if (isResponsesMessageItem(next)) {
|
|
75
|
+
next = sanitizeMessageContent(next);
|
|
76
|
+
}
|
|
77
|
+
next = sanitizeOutputContent(next);
|
|
78
|
+
if ((next.type === "function_call" || next.type === "function_call_output") && typeof next.name === "string" && !/^[a-zA-Z0-9_-]{1,128}$/.test(next.name)) {
|
|
79
|
+
next = { ...next, name: sanitizeFunctionName(next.name) };
|
|
80
|
+
}
|
|
81
|
+
return next;
|
|
82
|
+
}
|
|
83
|
+
function sanitizeResponsesInputItems(items, clone = true, options = {}) {
|
|
84
|
+
const dropInternalAssistantMessages = options.dropInternalAssistantMessages ?? true;
|
|
85
|
+
const sanitized = [];
|
|
86
|
+
for (const item of items) {
|
|
87
|
+
const record = toRecord(item);
|
|
88
|
+
if (dropInternalAssistantMessages && record && isInternalAssistantMessage(record)) {
|
|
89
|
+
continue;
|
|
90
|
+
}
|
|
91
|
+
const cloned = clone ? structuredClone(item) : item;
|
|
92
|
+
sanitized.push(sanitizeInputItem(cloned));
|
|
93
|
+
}
|
|
94
|
+
return sanitized;
|
|
95
|
+
}
|
|
96
|
+
export {
|
|
97
|
+
isInternalAssistantMessage,
|
|
98
|
+
sanitizeResponsesInputItems
|
|
99
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
const MAX_KEYS = 5e3;
|
|
2
|
+
class SlidingWindowLimiter {
|
|
3
|
+
hits = /* @__PURE__ */ new Map();
|
|
4
|
+
now;
|
|
5
|
+
constructor(opts = {}) {
|
|
6
|
+
this.now = opts.now ?? Date.now;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Try to consume one slot for `key`. Records a timestamp and returns
|
|
10
|
+
* `{allowed:true}` when under the cap; returns `{allowed:false, retryAfterMs}`
|
|
11
|
+
* (without recording) when the trailing window is saturated.
|
|
12
|
+
*/
|
|
13
|
+
tryAcquire(key, window) {
|
|
14
|
+
const { requests, windowMs } = window;
|
|
15
|
+
if (!(requests > 0) || !(windowMs > 0)) return { allowed: true, retryAfterMs: 0 };
|
|
16
|
+
const now = this.now();
|
|
17
|
+
const cutoff = now - windowMs;
|
|
18
|
+
const previous = this.hits.get(key);
|
|
19
|
+
const live = previous ? previous.filter((ts) => ts > cutoff) : [];
|
|
20
|
+
if (live.length >= requests) {
|
|
21
|
+
const retryAfterMs = Math.max(0, live[0] + windowMs - now);
|
|
22
|
+
this.hits.set(key, live);
|
|
23
|
+
return { allowed: false, retryAfterMs };
|
|
24
|
+
}
|
|
25
|
+
live.push(now);
|
|
26
|
+
this.set(key, live);
|
|
27
|
+
return { allowed: true, retryAfterMs: 0 };
|
|
28
|
+
}
|
|
29
|
+
/** Clear history for one key, or all keys when called with no argument. */
|
|
30
|
+
reset(key) {
|
|
31
|
+
if (key === void 0) this.hits.clear();
|
|
32
|
+
else this.hits.delete(key);
|
|
33
|
+
}
|
|
34
|
+
set(key, live) {
|
|
35
|
+
if (!this.hits.has(key) && this.hits.size >= MAX_KEYS) {
|
|
36
|
+
const oldest = this.hits.keys().next().value;
|
|
37
|
+
if (oldest !== void 0) this.hits.delete(oldest);
|
|
38
|
+
}
|
|
39
|
+
this.hits.set(key, live);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
export {
|
|
43
|
+
SlidingWindowLimiter
|
|
44
|
+
};
|
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
import { STREAM_RECOVERY } from "../config/constants.js";
|
|
2
|
+
class TruncatedStreamError extends Error {
|
|
3
|
+
constructor(message = "Provider stream ended without a terminal marker") {
|
|
4
|
+
super(message);
|
|
5
|
+
this.name = "TruncatedStreamError";
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
class HoldbackBuffer {
|
|
9
|
+
chunks = [];
|
|
10
|
+
bytes = 0;
|
|
11
|
+
startedAt = null;
|
|
12
|
+
holdbackMs;
|
|
13
|
+
maxBytes;
|
|
14
|
+
now;
|
|
15
|
+
committed = false;
|
|
16
|
+
constructor(options = {}) {
|
|
17
|
+
this.holdbackMs = options.holdbackMs ?? STREAM_RECOVERY.HOLDBACK_MS;
|
|
18
|
+
this.maxBytes = options.maxBytes ?? STREAM_RECOVERY.BUFFER_MAX_BYTES;
|
|
19
|
+
this.now = options.now ?? (() => Date.now());
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Buffer `chunk` until the holdback window elapses or the byte cap is reached.
|
|
23
|
+
* Returns the chunks to emit downstream now: `[]` while still holding, or every
|
|
24
|
+
* buffered chunk (the just-pushed one included) at the moment of commit. After
|
|
25
|
+
* commit, chunks pass straight through.
|
|
26
|
+
*/
|
|
27
|
+
push(chunk) {
|
|
28
|
+
if (this.committed) return [chunk];
|
|
29
|
+
if (this.startedAt === null) this.startedAt = this.now();
|
|
30
|
+
this.chunks.push(chunk);
|
|
31
|
+
this.bytes += chunk.byteLength;
|
|
32
|
+
if (this.bytes >= this.maxBytes || this.now() - this.startedAt >= this.holdbackMs) {
|
|
33
|
+
return this.flush();
|
|
34
|
+
}
|
|
35
|
+
return [];
|
|
36
|
+
}
|
|
37
|
+
/** Commit and return everything held so far. */
|
|
38
|
+
flush() {
|
|
39
|
+
if (this.committed) return [];
|
|
40
|
+
this.committed = true;
|
|
41
|
+
const out = this.chunks;
|
|
42
|
+
this.chunks = [];
|
|
43
|
+
this.bytes = 0;
|
|
44
|
+
this.startedAt = null;
|
|
45
|
+
return out;
|
|
46
|
+
}
|
|
47
|
+
/** Drop held chunks WITHOUT committing — used before a transparent retry. */
|
|
48
|
+
discard() {
|
|
49
|
+
this.chunks = [];
|
|
50
|
+
this.bytes = 0;
|
|
51
|
+
this.startedAt = null;
|
|
52
|
+
}
|
|
53
|
+
get hasBuffered() {
|
|
54
|
+
return this.chunks.length > 0;
|
|
55
|
+
}
|
|
56
|
+
/** Concatenated view of the currently-held (uncommitted) chunks, for inspection. */
|
|
57
|
+
peekBuffered() {
|
|
58
|
+
if (this.chunks.length === 0) return new Uint8Array(0);
|
|
59
|
+
if (this.chunks.length === 1) return this.chunks[0];
|
|
60
|
+
const out = new Uint8Array(this.bytes);
|
|
61
|
+
let offset = 0;
|
|
62
|
+
for (const chunk of this.chunks) {
|
|
63
|
+
out.set(chunk, offset);
|
|
64
|
+
offset += chunk.byteLength;
|
|
65
|
+
}
|
|
66
|
+
return out;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
const RETRYABLE_TRANSPORT_CODES = /* @__PURE__ */ new Set([
|
|
70
|
+
"ECONNRESET",
|
|
71
|
+
"ECONNREFUSED",
|
|
72
|
+
"ETIMEDOUT",
|
|
73
|
+
"EPIPE",
|
|
74
|
+
"ENOTFOUND",
|
|
75
|
+
"ENETUNREACH",
|
|
76
|
+
"EHOSTUNREACH"
|
|
77
|
+
]);
|
|
78
|
+
const RETRYABLE_ERROR_NAMES = /* @__PURE__ */ new Set(["TimeoutError", "BodyTimeoutError"]);
|
|
79
|
+
function isRetryableStreamError(error) {
|
|
80
|
+
if (error instanceof TruncatedStreamError) return true;
|
|
81
|
+
if (!error || typeof error !== "object") return false;
|
|
82
|
+
const name = error.name;
|
|
83
|
+
if (name === "AbortError" || name === "ResponseAborted") return false;
|
|
84
|
+
if (typeof name === "string" && RETRYABLE_ERROR_NAMES.has(name)) return true;
|
|
85
|
+
const code = error.code;
|
|
86
|
+
if (typeof code === "string") {
|
|
87
|
+
if (RETRYABLE_TRANSPORT_CODES.has(code)) return true;
|
|
88
|
+
if (code.startsWith("UND_ERR_")) return true;
|
|
89
|
+
}
|
|
90
|
+
const message = error.message;
|
|
91
|
+
if (typeof message === "string" && /terminated|socket hang up|econnreset/i.test(message)) {
|
|
92
|
+
return true;
|
|
93
|
+
}
|
|
94
|
+
return false;
|
|
95
|
+
}
|
|
96
|
+
const OPENAI_DONE_MARKER = "[DONE]";
|
|
97
|
+
const ANTHROPIC_STOP_MARKER = "message_stop";
|
|
98
|
+
function hasTerminalMarker(bytes) {
|
|
99
|
+
if (!bytes || bytes.byteLength === 0) return false;
|
|
100
|
+
const text = new TextDecoder().decode(bytes);
|
|
101
|
+
return text.includes(OPENAI_DONE_MARKER) || text.includes(ANTHROPIC_STOP_MARKER);
|
|
102
|
+
}
|
|
103
|
+
function scanOpenAiSseText(sse) {
|
|
104
|
+
let text = "";
|
|
105
|
+
let sawToolCall = false;
|
|
106
|
+
let terminal = false;
|
|
107
|
+
let parsedOpenAi = false;
|
|
108
|
+
if (typeof sse !== "string" || sse.length === 0) {
|
|
109
|
+
return { text, sawToolCall, terminal, parsedOpenAi };
|
|
110
|
+
}
|
|
111
|
+
for (const line of sse.split("\n")) {
|
|
112
|
+
const trimmed = line.trimStart();
|
|
113
|
+
if (!trimmed.startsWith("data:")) continue;
|
|
114
|
+
const payload = trimmed.slice(5).trim();
|
|
115
|
+
if (!payload) continue;
|
|
116
|
+
if (payload === "[DONE]") {
|
|
117
|
+
terminal = true;
|
|
118
|
+
continue;
|
|
119
|
+
}
|
|
120
|
+
let json;
|
|
121
|
+
try {
|
|
122
|
+
json = JSON.parse(payload);
|
|
123
|
+
} catch {
|
|
124
|
+
continue;
|
|
125
|
+
}
|
|
126
|
+
const choices = json?.choices;
|
|
127
|
+
if (!Array.isArray(choices)) continue;
|
|
128
|
+
for (const choice of choices) {
|
|
129
|
+
const delta = choice?.delta;
|
|
130
|
+
if (delta && typeof delta === "object") {
|
|
131
|
+
parsedOpenAi = true;
|
|
132
|
+
const content = delta.content;
|
|
133
|
+
if (typeof content === "string") text += content;
|
|
134
|
+
const toolCalls = delta.tool_calls;
|
|
135
|
+
if (Array.isArray(toolCalls) && toolCalls.length > 0) sawToolCall = true;
|
|
136
|
+
}
|
|
137
|
+
const finishReason = choice?.finish_reason;
|
|
138
|
+
if (finishReason != null) terminal = true;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
return { text, sawToolCall, terminal, parsedOpenAi };
|
|
142
|
+
}
|
|
143
|
+
function makeContinuationBody(body, assistantSoFar) {
|
|
144
|
+
if (!body || typeof body !== "object") return null;
|
|
145
|
+
if (!Array.isArray(body.messages) || body.messages.length === 0) return null;
|
|
146
|
+
if (typeof assistantSoFar !== "string" || assistantSoFar.length === 0) return null;
|
|
147
|
+
return {
|
|
148
|
+
...body,
|
|
149
|
+
messages: [...body.messages, { role: "assistant", content: assistantSoFar }],
|
|
150
|
+
stream: true
|
|
151
|
+
};
|
|
152
|
+
}
|
|
153
|
+
function trimContinuationOverlap(emitted, continuation) {
|
|
154
|
+
if (!continuation) return "";
|
|
155
|
+
if (!emitted) return continuation;
|
|
156
|
+
const max = Math.min(emitted.length, continuation.length, 512);
|
|
157
|
+
for (let k = max; k > 0; k--) {
|
|
158
|
+
if (emitted.endsWith(continuation.slice(0, k))) return continuation.slice(k);
|
|
159
|
+
}
|
|
160
|
+
return continuation;
|
|
161
|
+
}
|
|
162
|
+
function createRecoverableStream(initialStream, reopen, options) {
|
|
163
|
+
const maxRetries = options.maxEarlyRetries ?? STREAM_RECOVERY.EARLY_RETRY_MAX;
|
|
164
|
+
let reader = initialStream.getReader();
|
|
165
|
+
let holdback = new HoldbackBuffer({ now: options.now });
|
|
166
|
+
let retries = 0;
|
|
167
|
+
let finalized = false;
|
|
168
|
+
let cancelled = false;
|
|
169
|
+
const runFinalize = () => {
|
|
170
|
+
if (finalized) return;
|
|
171
|
+
finalized = true;
|
|
172
|
+
options.finalize();
|
|
173
|
+
};
|
|
174
|
+
const tryReopen = async (error) => {
|
|
175
|
+
if (cancelled || retries >= maxRetries) return false;
|
|
176
|
+
retries += 1;
|
|
177
|
+
options.onRetry?.(retries, error);
|
|
178
|
+
try {
|
|
179
|
+
await reader.cancel(error);
|
|
180
|
+
} catch {
|
|
181
|
+
}
|
|
182
|
+
let next = null;
|
|
183
|
+
try {
|
|
184
|
+
next = await reopen();
|
|
185
|
+
} catch {
|
|
186
|
+
next = null;
|
|
187
|
+
}
|
|
188
|
+
if (!next) return false;
|
|
189
|
+
reader = next.getReader();
|
|
190
|
+
holdback.discard();
|
|
191
|
+
return true;
|
|
192
|
+
};
|
|
193
|
+
const continueEnabled = typeof options.continueStream === "function";
|
|
194
|
+
const maxContinuations = options.maxContinuations ?? STREAM_RECOVERY.EARLY_RETRY_MAX;
|
|
195
|
+
const encoder = new TextEncoder();
|
|
196
|
+
const trackDecoder = new TextDecoder();
|
|
197
|
+
let continuations = 0;
|
|
198
|
+
let emittedTail = "";
|
|
199
|
+
let emittedText = "";
|
|
200
|
+
let emittedTerminal = false;
|
|
201
|
+
let emittedToolCall = false;
|
|
202
|
+
let emittedParsedOpenAi = false;
|
|
203
|
+
const emit = (controller, chunk) => {
|
|
204
|
+
controller.enqueue(chunk);
|
|
205
|
+
if (!continueEnabled) return;
|
|
206
|
+
emittedTail += trackDecoder.decode(chunk, { stream: true });
|
|
207
|
+
const boundary = emittedTail.lastIndexOf("\n\n");
|
|
208
|
+
if (boundary < 0) return;
|
|
209
|
+
const complete = emittedTail.slice(0, boundary + 2);
|
|
210
|
+
emittedTail = emittedTail.slice(boundary + 2);
|
|
211
|
+
const scan = scanOpenAiSseText(complete);
|
|
212
|
+
emittedText += scan.text;
|
|
213
|
+
if (scan.terminal) emittedTerminal = true;
|
|
214
|
+
if (scan.sawToolCall) emittedToolCall = true;
|
|
215
|
+
if (scan.parsedOpenAi) emittedParsedOpenAi = true;
|
|
216
|
+
};
|
|
217
|
+
const flushHeld = (controller) => {
|
|
218
|
+
for (const chunk of holdback.flush()) emit(controller, chunk);
|
|
219
|
+
};
|
|
220
|
+
const canContinue = () => continueEnabled && continuations < maxContinuations && emittedParsedOpenAi && !emittedToolCall && !emittedTerminal && emittedText.length > 0;
|
|
221
|
+
const emitCleanTerminal = (controller) => {
|
|
222
|
+
controller.enqueue(
|
|
223
|
+
encoder.encode('data: {"choices":[{"index":0,"delta":{},"finish_reason":"stop"}]}\n\n')
|
|
224
|
+
);
|
|
225
|
+
controller.enqueue(encoder.encode("data: [DONE]\n\n"));
|
|
226
|
+
};
|
|
227
|
+
const tryContinue = async (controller) => {
|
|
228
|
+
if (!canContinue()) return false;
|
|
229
|
+
continuations += 1;
|
|
230
|
+
options.onContinue?.(continuations, emittedText);
|
|
231
|
+
let contStream = null;
|
|
232
|
+
try {
|
|
233
|
+
contStream = await options.continueStream(emittedText);
|
|
234
|
+
} catch {
|
|
235
|
+
contStream = null;
|
|
236
|
+
}
|
|
237
|
+
if (!contStream) return false;
|
|
238
|
+
const contReader = contStream.getReader();
|
|
239
|
+
const contDecoder = new TextDecoder();
|
|
240
|
+
let raw = "";
|
|
241
|
+
for (; ; ) {
|
|
242
|
+
let r;
|
|
243
|
+
try {
|
|
244
|
+
r = await contReader.read();
|
|
245
|
+
} catch {
|
|
246
|
+
break;
|
|
247
|
+
}
|
|
248
|
+
if (r.done) break;
|
|
249
|
+
if (r.value) raw += contDecoder.decode(r.value, { stream: true });
|
|
250
|
+
}
|
|
251
|
+
const scan = scanOpenAiSseText(raw);
|
|
252
|
+
const suffix = trimContinuationOverlap(emittedText, scan.text);
|
|
253
|
+
if (suffix) {
|
|
254
|
+
emit(
|
|
255
|
+
controller,
|
|
256
|
+
encoder.encode(
|
|
257
|
+
`data: ${JSON.stringify({ choices: [{ index: 0, delta: { content: suffix } }] })}
|
|
258
|
+
|
|
259
|
+
`
|
|
260
|
+
)
|
|
261
|
+
);
|
|
262
|
+
}
|
|
263
|
+
if (scan.terminal || scan.sawToolCall) {
|
|
264
|
+
emitCleanTerminal(controller);
|
|
265
|
+
return true;
|
|
266
|
+
}
|
|
267
|
+
if (await tryContinue(controller)) return true;
|
|
268
|
+
emitCleanTerminal(controller);
|
|
269
|
+
return true;
|
|
270
|
+
};
|
|
271
|
+
return new ReadableStream({
|
|
272
|
+
async pull(controller) {
|
|
273
|
+
for (; ; ) {
|
|
274
|
+
let result;
|
|
275
|
+
try {
|
|
276
|
+
result = await reader.read();
|
|
277
|
+
} catch (error) {
|
|
278
|
+
if (cancelled) return;
|
|
279
|
+
if (holdback.committed) {
|
|
280
|
+
if (isRetryableStreamError(error) && await tryContinue(controller)) {
|
|
281
|
+
runFinalize();
|
|
282
|
+
controller.close();
|
|
283
|
+
return;
|
|
284
|
+
}
|
|
285
|
+
runFinalize();
|
|
286
|
+
controller.error(error);
|
|
287
|
+
return;
|
|
288
|
+
}
|
|
289
|
+
if (isRetryableStreamError(error) && await tryReopen(error)) {
|
|
290
|
+
continue;
|
|
291
|
+
}
|
|
292
|
+
flushHeld(controller);
|
|
293
|
+
runFinalize();
|
|
294
|
+
controller.close();
|
|
295
|
+
return;
|
|
296
|
+
}
|
|
297
|
+
if (cancelled) return;
|
|
298
|
+
const { done, value } = result;
|
|
299
|
+
if (done) {
|
|
300
|
+
if (holdback.committed) {
|
|
301
|
+
if (!emittedTerminal && await tryContinue(controller)) {
|
|
302
|
+
runFinalize();
|
|
303
|
+
controller.close();
|
|
304
|
+
return;
|
|
305
|
+
}
|
|
306
|
+
runFinalize();
|
|
307
|
+
controller.close();
|
|
308
|
+
return;
|
|
309
|
+
}
|
|
310
|
+
if (hasTerminalMarker(holdback.peekBuffered())) {
|
|
311
|
+
flushHeld(controller);
|
|
312
|
+
runFinalize();
|
|
313
|
+
controller.close();
|
|
314
|
+
return;
|
|
315
|
+
}
|
|
316
|
+
if (await tryReopen(new TruncatedStreamError())) {
|
|
317
|
+
continue;
|
|
318
|
+
}
|
|
319
|
+
flushHeld(controller);
|
|
320
|
+
runFinalize();
|
|
321
|
+
controller.close();
|
|
322
|
+
return;
|
|
323
|
+
}
|
|
324
|
+
if (value === void 0) continue;
|
|
325
|
+
if (holdback.committed) {
|
|
326
|
+
emit(controller, value);
|
|
327
|
+
return;
|
|
328
|
+
}
|
|
329
|
+
const emitted = holdback.push(value);
|
|
330
|
+
if (emitted.length > 0) {
|
|
331
|
+
for (const chunk of emitted) emit(controller, chunk);
|
|
332
|
+
return;
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
async cancel(reason) {
|
|
337
|
+
cancelled = true;
|
|
338
|
+
runFinalize();
|
|
339
|
+
try {
|
|
340
|
+
await reader.cancel(reason);
|
|
341
|
+
} catch {
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
});
|
|
345
|
+
}
|
|
346
|
+
export {
|
|
347
|
+
HoldbackBuffer,
|
|
348
|
+
TruncatedStreamError,
|
|
349
|
+
createRecoverableStream,
|
|
350
|
+
hasTerminalMarker,
|
|
351
|
+
isRetryableStreamError,
|
|
352
|
+
makeContinuationBody,
|
|
353
|
+
scanOpenAiSseText,
|
|
354
|
+
trimContinuationOverlap
|
|
355
|
+
};
|