@fudrouter/fsrouter 0.6.62 → 0.6.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/copyJs.js +0 -4
- package/dist/lib/oauth/constants/oauth.js +2 -2
- package/dist/lib/oauth/providers.js +1 -1
- package/dist/routes/providers/[id]/test/testUtils.js +3 -3
- package/dist/shared/constants/models.js +2 -2
- package/dist/sse/handlers/chat.js +10 -10
- package/dist/sse/handlers/embeddings.js +3 -3
- package/dist/sse/handlers/fetch.js +4 -4
- package/dist/sse/handlers/imageGeneration.js +5 -5
- package/dist/sse/handlers/search.js +4 -4
- package/dist/sse/handlers/stt.js +3 -3
- package/dist/sse/handlers/tts.js +4 -4
- package/dist/sse/handlers/videoGeneration.js +4 -4
- package/dist/sse/services/auth.js +2 -2
- package/dist/sse/services/model.js +1 -1
- package/dist/sse/services/tokenRefresh.js +3 -3
- package/open-sse/AGENTS.md +39 -0
- package/open-sse/config/anthropicHeaders.js +87 -0
- package/open-sse/config/appConstants.js +238 -0
- package/open-sse/config/audioRegistry.js +506 -0
- package/open-sse/config/cliFingerprints.js +304 -0
- package/open-sse/config/codexInstructions.js +119 -0
- package/open-sse/config/codexQuotaScopes.js +42 -0
- package/open-sse/config/constants.js +4 -0
- package/open-sse/config/contextEditing.js +68 -0
- package/open-sse/config/credentialLoader.js +83 -0
- package/open-sse/config/defaultThinkingSignature.js +12 -0
- package/open-sse/config/embeddingRegistry.js +264 -0
- package/open-sse/config/errorConfig.js +96 -0
- package/open-sse/config/freeModelCatalog.data.js +121 -0
- package/open-sse/config/freeModelCatalog.js +90 -0
- package/open-sse/config/freeTierCatalog.js +81 -0
- package/open-sse/config/googleTtsLanguages.js +62 -0
- package/open-sse/config/imageParamDefs.js +360 -0
- package/open-sse/config/imageRegistry.js +493 -0
- package/open-sse/config/kiroConstants.js +268 -0
- package/open-sse/config/mediaConfig.js +27 -0
- package/open-sse/config/mediaServiceKinds.js +71 -0
- package/open-sse/config/models.js +13 -0
- package/open-sse/config/moderationRegistry.js +71 -0
- package/open-sse/config/musicRegistry.js +99 -0
- package/open-sse/config/ocrRegistry.js +61 -0
- package/open-sse/config/ollamaModels.js +19 -0
- package/open-sse/config/providerErrorRules.js +114 -0
- package/open-sse/config/providerFieldStrips.js +35 -0
- package/open-sse/config/providerHeaderProfiles.js +191 -0
- package/open-sse/config/providerModels.js +106 -0
- package/open-sse/config/providerRegistry.js +16 -0
- package/open-sse/config/providers.js +19 -0
- package/open-sse/config/registryUtils.js +106 -0
- package/open-sse/config/rerankRegistry.js +177 -0
- package/open-sse/config/runtimeConfig.js +96 -0
- package/open-sse/config/runway.js +39 -0
- package/open-sse/config/searchRegistry.js +153 -0
- package/open-sse/config/toolCloaking.js +199 -0
- package/open-sse/config/ttsModels.js +129 -0
- package/open-sse/config/videoRegistry.js +207 -0
- package/open-sse/executors/adapta-web.js +435 -0
- package/open-sse/executors/antigravity.js +534 -0
- package/open-sse/executors/antigravityUpstreamError.js +13 -0
- package/open-sse/executors/auggie.js +437 -0
- package/open-sse/executors/azure-openai.js +32 -0
- package/open-sse/executors/azure.js +57 -0
- package/open-sse/executors/base.js +181 -0
- package/open-sse/executors/bedrock.js +633 -0
- package/open-sse/executors/blackbox-web.js +578 -0
- package/open-sse/executors/chatgpt-web.js +2042 -0
- package/open-sse/executors/chipotle.js +357 -0
- package/open-sse/executors/claude-web-with-auto-refresh.js +73 -0
- package/open-sse/executors/claude-web.js +586 -0
- package/open-sse/executors/cliproxyapi.js +296 -0
- package/open-sse/executors/cloudflare-ai.js +46 -0
- package/open-sse/executors/codebuddy-cn.js +40 -0
- package/open-sse/executors/codex.js +1324 -0
- package/open-sse/executors/commandCode.js +558 -0
- package/open-sse/executors/commandcode.js +88 -0
- package/open-sse/executors/copilot-m365-connection.js +176 -0
- package/open-sse/executors/copilot-m365-frames.js +192 -0
- package/open-sse/executors/copilot-m365-web.js +299 -0
- package/open-sse/executors/copilot-web.js +580 -0
- package/open-sse/executors/cursor.js +795 -0
- package/open-sse/executors/deepseek-web-with-auto-refresh.js +150 -0
- package/open-sse/executors/deepseek-web.js +875 -0
- package/open-sse/executors/default.js +430 -0
- package/open-sse/executors/devin-cli.js +351 -0
- package/open-sse/executors/doubao-web.js +550 -0
- package/open-sse/executors/duckduckgo-web.js +629 -0
- package/open-sse/executors/forceResponsesUpstream.js +33 -0
- package/open-sse/executors/gemini-business.js +320 -0
- package/open-sse/executors/gemini-cli.js +89 -0
- package/open-sse/executors/gemini-web.js +297 -0
- package/open-sse/executors/github.js +379 -0
- package/open-sse/executors/gitlab.js +569 -0
- package/open-sse/executors/glm.js +361 -0
- package/open-sse/executors/grok-cli.js +119 -0
- package/open-sse/executors/grok-web.js +345 -0
- package/open-sse/executors/huggingchat.js +467 -0
- package/open-sse/executors/iflow.js +108 -0
- package/open-sse/executors/index.js +78 -0
- package/open-sse/executors/inner-ai.js +527 -0
- package/open-sse/executors/kimchi.js +123 -0
- package/open-sse/executors/kimi-web.js +325 -0
- package/open-sse/executors/kimi.js +97 -0
- package/open-sse/executors/kiro.js +503 -0
- package/open-sse/executors/kiroThinking.js +44 -0
- package/open-sse/executors/lmarena.js +395 -0
- package/open-sse/executors/mimo-free.js +167 -0
- package/open-sse/executors/mimocode.js +392 -0
- package/open-sse/executors/ninerouter.js +155 -0
- package/open-sse/executors/nlpcloud.js +438 -0
- package/open-sse/executors/ollama-local.js +14 -0
- package/open-sse/executors/opencode-go.js +41 -0
- package/open-sse/executors/opencode.js +32 -0
- package/open-sse/executors/perplexity-web.js +581 -0
- package/open-sse/executors/poe-web.js +133 -0
- package/open-sse/executors/pollinations.js +95 -0
- package/open-sse/executors/puter.js +31 -0
- package/open-sse/executors/qoder.js +448 -0
- package/open-sse/executors/qwen-web.js +372 -0
- package/open-sse/executors/qwen.js +129 -0
- package/open-sse/executors/t3-chat-web.js +417 -0
- package/open-sse/executors/theoldllm.js +290 -0
- package/open-sse/executors/trae.js +418 -0
- package/open-sse/executors/v0-vercel-web.js +141 -0
- package/open-sse/executors/venice-web.js +142 -0
- package/open-sse/executors/vertex.js +131 -0
- package/open-sse/executors/vertexMedia.js +236 -0
- package/open-sse/executors/windsurf.js +560 -0
- package/open-sse/executors/xai.js +46 -0
- package/open-sse/executors/xiaomi-tokenplan.js +19 -0
- package/open-sse/executors/yuanbao-web.js +385 -0
- package/open-sse/executors/zed-hosted.js +281 -0
- package/open-sse/executors/zenmux-free.js +247 -0
- package/open-sse/handlers/audioSpeech.js +759 -0
- package/open-sse/handlers/audioTranscription.js +395 -0
- package/open-sse/handlers/audioTranslation.js +181 -0
- package/open-sse/handlers/chatCore/nonStreamingHandler.js +300 -0
- package/open-sse/handlers/chatCore/requestDetail.js +102 -0
- package/open-sse/handlers/chatCore/sseToJsonHandler.js +231 -0
- package/open-sse/handlers/chatCore/streamingHandler.js +95 -0
- package/open-sse/handlers/chatCore.js +404 -0
- package/open-sse/handlers/embeddingProviders/_base.js +4 -0
- package/open-sse/handlers/embeddingProviders/gemini.js +54 -0
- package/open-sse/handlers/embeddingProviders/index.js +23 -0
- package/open-sse/handlers/embeddingProviders/openai.js +39 -0
- package/open-sse/handlers/embeddingProviders/openaiCompatNode.js +13 -0
- package/open-sse/handlers/embeddingsCore.js +126 -0
- package/open-sse/handlers/fetch/index.js +237 -0
- package/open-sse/handlers/imageGenerationCore.js +230 -0
- package/open-sse/handlers/imageProviders/_base.js +31 -0
- package/open-sse/handlers/imageProviders/antigravity.js +73 -0
- package/open-sse/handlers/imageProviders/blackForestLabs.js +63 -0
- package/open-sse/handlers/imageProviders/cloudflareAi.js +207 -0
- package/open-sse/handlers/imageProviders/codex.js +217 -0
- package/open-sse/handlers/imageProviders/comfyui.js +25 -0
- package/open-sse/handlers/imageProviders/falAi.js +62 -0
- package/open-sse/handlers/imageProviders/gemini.js +40 -0
- package/open-sse/handlers/imageProviders/huggingface.js +38 -0
- package/open-sse/handlers/imageProviders/index.js +44 -0
- package/open-sse/handlers/imageProviders/leonardo.js +435 -0
- package/open-sse/handlers/imageProviders/nanobanana.js +79 -0
- package/open-sse/handlers/imageProviders/openai.js +61 -0
- package/open-sse/handlers/imageProviders/runwayml.js +72 -0
- package/open-sse/handlers/imageProviders/sdwebui.js +36 -0
- package/open-sse/handlers/imageProviders/stabilityAi.js +59 -0
- package/open-sse/handlers/imageProviders/weavy.js +222 -0
- package/open-sse/handlers/moderations.js +92 -0
- package/open-sse/handlers/ocr.js +89 -0
- package/open-sse/handlers/rerank.js +223 -0
- package/open-sse/handlers/responseSanitizer/reasoning.js +144 -0
- package/open-sse/handlers/responsesHandler.js +99 -0
- package/open-sse/handlers/search/callers.js +371 -0
- package/open-sse/handlers/search/chatSearch.js +409 -0
- package/open-sse/handlers/search/index.js +201 -0
- package/open-sse/handlers/search/normalizers.js +223 -0
- package/open-sse/handlers/search.js +1056 -0
- package/open-sse/handlers/sseParser.js +469 -0
- package/open-sse/handlers/sttCore.js +193 -0
- package/open-sse/handlers/ttsCore.js +74 -0
- package/open-sse/handlers/ttsProviders/_base.js +39 -0
- package/open-sse/handlers/ttsProviders/edgeTts.js +89 -0
- package/open-sse/handlers/ttsProviders/elevenlabs.js +48 -0
- package/open-sse/handlers/ttsProviders/gemini.js +117 -0
- package/open-sse/handlers/ttsProviders/genericFormats.js +169 -0
- package/open-sse/handlers/ttsProviders/googleTts.js +54 -0
- package/open-sse/handlers/ttsProviders/index.js +50 -0
- package/open-sse/handlers/ttsProviders/localDevice.js +87 -0
- package/open-sse/handlers/ttsProviders/minimax.js +59 -0
- package/open-sse/handlers/ttsProviders/openai.js +30 -0
- package/open-sse/handlers/ttsProviders/openrouter.js +70 -0
- package/open-sse/handlers/usageExtractor.js +93 -0
- package/open-sse/handlers/videoGenerationCore.js +119 -0
- package/open-sse/handlers/videoProviders/index.js +22 -0
- package/open-sse/handlers/videoProviders/leonardo.js +511 -0
- package/open-sse/handlers/videoProviders/weavy.js +198 -0
- package/open-sse/handlers/webFetch.js +200 -0
- package/open-sse/index.js +79 -0
- package/open-sse/mcp-server/audit.js +283 -0
- package/open-sse/mcp-server/catalog.js +184 -0
- package/open-sse/mcp-server/descriptionCompressor.js +175 -0
- package/open-sse/mcp-server/httpAuthContext.js +32 -0
- package/open-sse/mcp-server/httpTransport.js +229 -0
- package/open-sse/mcp-server/index.js +33 -0
- package/open-sse/mcp-server/mcpCallerIdentity.js +21 -0
- package/open-sse/mcp-server/runtimeHeartbeat.js +110 -0
- package/open-sse/mcp-server/schemas/a2a.js +153 -0
- package/open-sse/mcp-server/schemas/audit.js +17 -0
- package/open-sse/mcp-server/schemas/index.js +166 -0
- package/open-sse/mcp-server/schemas/pickFastestModel.js +90 -0
- package/open-sse/mcp-server/schemas/toolDefinition.js +0 -0
- package/open-sse/mcp-server/schemas/toolSearch.js +32 -0
- package/open-sse/mcp-server/schemas/tools.js +1219 -0
- package/open-sse/mcp-server/scopeEnforcement.js +80 -0
- package/open-sse/mcp-server/server.js +1168 -0
- package/open-sse/mcp-server/toolCardinality.js +78 -0
- package/open-sse/mcp-server/toolSearch/catalog.js +66 -0
- package/open-sse/mcp-server/toolSearch/handler.js +20 -0
- package/open-sse/mcp-server/toolSearch/index.js +10 -0
- package/open-sse/mcp-server/toolSearch/register.js +21 -0
- package/open-sse/mcp-server/toolSearch/search.js +55 -0
- package/open-sse/mcp-server/toolSearch/signature.js +67 -0
- package/open-sse/mcp-server/tools/advancedTools.js +893 -0
- package/open-sse/mcp-server/tools/agentSkillTools.js +69 -0
- package/open-sse/mcp-server/tools/compressionTools.js +309 -0
- package/open-sse/mcp-server/tools/gamificationTools.js +134 -0
- package/open-sse/mcp-server/tools/githubSkillTools.js +102 -0
- package/open-sse/mcp-server/tools/memoryTools.js +118 -0
- package/open-sse/mcp-server/tools/notionTools.js +101 -0
- package/open-sse/mcp-server/tools/obsidianTools.js +307 -0
- package/open-sse/mcp-server/tools/pickFastestModel.js +223 -0
- package/open-sse/mcp-server/tools/pluginTools.js +181 -0
- package/open-sse/mcp-server/tools/poolTools.js +139 -0
- package/open-sse/mcp-server/tools/skillTools.js +113 -0
- package/open-sse/package.json +10 -0
- package/open-sse/providers/REGISTRY_TEMPLATE.js +98 -0
- package/open-sse/providers/capabilities.js +293 -0
- package/open-sse/providers/index.js +51 -0
- package/open-sse/providers/models/helpers.js +20 -0
- package/open-sse/providers/models/namePatterns.js +33 -0
- package/open-sse/providers/models/schema.js +40 -0
- package/open-sse/providers/pricing.js +308 -0
- package/open-sse/providers/registry/alicode-intl.js +30 -0
- package/open-sse/providers/registry/alicode.js +31 -0
- package/open-sse/providers/registry/anthropic.js +37 -0
- package/open-sse/providers/registry/antigravity.js +81 -0
- package/open-sse/providers/registry/assemblyai.js +38 -0
- package/open-sse/providers/registry/aws-polly.js +45 -0
- package/open-sse/providers/registry/azure.js +21 -0
- package/open-sse/providers/registry/black-forest-labs.js +32 -0
- package/open-sse/providers/registry/blackbox.js +41 -0
- package/open-sse/providers/registry/brave-search.js +35 -0
- package/open-sse/providers/registry/byteplus.js +35 -0
- package/open-sse/providers/registry/cartesia.js +36 -0
- package/open-sse/providers/registry/cerebras.js +31 -0
- package/open-sse/providers/registry/chutes.js +24 -0
- package/open-sse/providers/registry/claude.js +87 -0
- package/open-sse/providers/registry/cline.js +51 -0
- package/open-sse/providers/registry/clinepass.js +57 -0
- package/open-sse/providers/registry/cloudflare-ai.js +55 -0
- package/open-sse/providers/registry/codebuddy-cn.js +77 -0
- package/open-sse/providers/registry/codex.js +100 -0
- package/open-sse/providers/registry/cohere.js +27 -0
- package/open-sse/providers/registry/comfyui.js +20 -0
- package/open-sse/providers/registry/commandcode.js +43 -0
- package/open-sse/providers/registry/coqui.js +30 -0
- package/open-sse/providers/registry/cursor.js +58 -0
- package/open-sse/providers/registry/deepgram.js +33 -0
- package/open-sse/providers/registry/deepseek.js +51 -0
- package/open-sse/providers/registry/digitalocean.js +92 -0
- package/open-sse/providers/registry/edge-tts.js +24 -0
- package/open-sse/providers/registry/elevenlabs.js +35 -0
- package/open-sse/providers/registry/exa.js +50 -0
- package/open-sse/providers/registry/fal-ai.js +34 -0
- package/open-sse/providers/registry/featherless.js +34 -0
- package/open-sse/providers/registry/firecrawl.js +34 -0
- package/open-sse/providers/registry/fireworks.js +29 -0
- package/open-sse/providers/registry/gemini-cli.js +58 -0
- package/open-sse/providers/registry/gemini.js +83 -0
- package/open-sse/providers/registry/github.js +88 -0
- package/open-sse/providers/registry/gitlab.js +32 -0
- package/open-sse/providers/registry/glm-cn.js +35 -0
- package/open-sse/providers/registry/glm.js +58 -0
- package/open-sse/providers/registry/google-pse.js +35 -0
- package/open-sse/providers/registry/google-tts.js +24 -0
- package/open-sse/providers/registry/grok-cli.js +86 -0
- package/open-sse/providers/registry/grok-web.js +39 -0
- package/open-sse/providers/registry/groq.js +37 -0
- package/open-sse/providers/registry/huggingface.js +34 -0
- package/open-sse/providers/registry/hyperbolic.js +35 -0
- package/open-sse/providers/registry/ibm-bob.js +27 -0
- package/open-sse/providers/registry/iflow.js +52 -0
- package/open-sse/providers/registry/index.js +210 -0
- package/open-sse/providers/registry/inworld.js +36 -0
- package/open-sse/providers/registry/jina-ai.js +42 -0
- package/open-sse/providers/registry/jina-reader.js +34 -0
- package/open-sse/providers/registry/kilocode.js +51 -0
- package/open-sse/providers/registry/kimchi.js +49 -0
- package/open-sse/providers/registry/kimi-coding.js +65 -0
- package/open-sse/providers/registry/kimi.js +56 -0
- package/open-sse/providers/registry/kiro.js +115 -0
- package/open-sse/providers/registry/linkup.js +34 -0
- package/open-sse/providers/registry/local-device.js +24 -0
- package/open-sse/providers/registry/mimo-free.js +24 -0
- package/open-sse/providers/registry/minimax-cn.js +76 -0
- package/open-sse/providers/registry/minimax.js +83 -0
- package/open-sse/providers/registry/mistral.js +34 -0
- package/open-sse/providers/registry/mmf.js +19 -0
- package/open-sse/providers/registry/nanobanana.js +35 -0
- package/open-sse/providers/registry/nebius.js +27 -0
- package/open-sse/providers/registry/nvidia.js +43 -0
- package/open-sse/providers/registry/ollama-local.js +19 -0
- package/open-sse/providers/registry/ollama.js +36 -0
- package/open-sse/providers/registry/openai.js +84 -0
- package/open-sse/providers/registry/opencode-go.js +41 -0
- package/open-sse/providers/registry/opencode.js +25 -0
- package/open-sse/providers/registry/openrouter.js +60 -0
- package/open-sse/providers/registry/perplexity-agent.js +49 -0
- package/open-sse/providers/registry/perplexity-web.js +33 -0
- package/open-sse/providers/registry/perplexity.js +37 -0
- package/open-sse/providers/registry/playht.js +36 -0
- package/open-sse/providers/registry/qoder.js +54 -0
- package/open-sse/providers/registry/qwen.js +33 -0
- package/open-sse/providers/registry/recraft.js +24 -0
- package/open-sse/providers/registry/runwayml.js +30 -0
- package/open-sse/providers/registry/sdwebui.js +20 -0
- package/open-sse/providers/registry/searchapi.js +35 -0
- package/open-sse/providers/registry/searxng.js +35 -0
- package/open-sse/providers/registry/serper.js +35 -0
- package/open-sse/providers/registry/siliconflow.js +39 -0
- package/open-sse/providers/registry/stability-ai.js +31 -0
- package/open-sse/providers/registry/tavily.js +50 -0
- package/open-sse/providers/registry/together.js +31 -0
- package/open-sse/providers/registry/topaz.js +19 -0
- package/open-sse/providers/registry/tortoise.js +30 -0
- package/open-sse/providers/registry/venice.js +56 -0
- package/open-sse/providers/registry/vercel-ai-gateway.js +41 -0
- package/open-sse/providers/registry/vertex-partner.js +29 -0
- package/open-sse/providers/registry/vertex.js +32 -0
- package/open-sse/providers/registry/volcengine-ark.js +35 -0
- package/open-sse/providers/registry/voyage-ai.js +30 -0
- package/open-sse/providers/registry/xai.js +45 -0
- package/open-sse/providers/registry/xiaomi-mimo.js +46 -0
- package/open-sse/providers/registry/xiaomi-tokenplan.js +63 -0
- package/open-sse/providers/registry/youcom.js +35 -0
- package/open-sse/providers/schema.js +76 -0
- package/open-sse/providers/shared.js +74 -0
- package/open-sse/providers/thinkingLevels.js +48 -0
- package/open-sse/rtk/applyFilter.js +15 -0
- package/open-sse/rtk/autodetect.js +111 -0
- package/open-sse/rtk/caveman.js +100 -0
- package/open-sse/rtk/cavemanPrompts.js +78 -0
- package/open-sse/rtk/constants.js +55 -0
- package/open-sse/rtk/filters/buildOutput.js +127 -0
- package/open-sse/rtk/filters/dedupLog.js +44 -0
- package/open-sse/rtk/filters/find.js +50 -0
- package/open-sse/rtk/filters/gitDiff.js +92 -0
- package/open-sse/rtk/filters/gitLog.js +99 -0
- package/open-sse/rtk/filters/gitStatus.js +117 -0
- package/open-sse/rtk/filters/grep.js +48 -0
- package/open-sse/rtk/filters/ls.js +79 -0
- package/open-sse/rtk/filters/readNumbered.js +27 -0
- package/open-sse/rtk/filters/searchList.js +52 -0
- package/open-sse/rtk/filters/smartTruncate.js +15 -0
- package/open-sse/rtk/filters/tree.js +32 -0
- package/open-sse/rtk/headroom.js +215 -0
- package/open-sse/rtk/index.js +155 -0
- package/open-sse/rtk/paleo.js +47 -0
- package/open-sse/rtk/ponytail.js +9 -0
- package/open-sse/rtk/ponytailPrompt.js +52 -0
- package/open-sse/rtk/ponytailPrompts.js +76 -0
- package/open-sse/rtk/pxpipe.js +104 -0
- package/open-sse/rtk/registry.js +38 -0
- package/open-sse/rtk/systemInject.js +98 -0
- package/open-sse/services/accountFallback.js +323 -0
- package/open-sse/services/antigravityHeaders.js +91 -0
- package/open-sse/services/antigravityVersion.js +154 -0
- package/open-sse/services/clinepassModels.js +63 -0
- package/open-sse/services/codexQuotaFetcher.js +312 -0
- package/open-sse/services/codexVerbosity.js +30 -0
- package/open-sse/services/combo/context.js +12 -0
- package/open-sse/services/combo/fingerprintExpansion.js +51 -0
- package/open-sse/services/combo/headroomRanking.js +28 -0
- package/open-sse/services/combo/quotaExhaustionCutoff.js +87 -0
- package/open-sse/services/combo/quotaScoring.js +226 -0
- package/open-sse/services/combo/quotaShareConcurrency.js +25 -0
- package/open-sse/services/combo/quotaShareInflight.js +50 -0
- package/open-sse/services/combo/quotaShareStrategy.js +130 -0
- package/open-sse/services/combo/resolveAutoStrategy.js +231 -0
- package/open-sse/services/combo/responseValidation.js +140 -0
- package/open-sse/services/combo/runtimeUnits.js +195 -0
- package/open-sse/services/combo/sessionStickiness.js +128 -0
- package/open-sse/services/combo/shadowRouting.js +131 -0
- package/open-sse/services/combo/targetExhaustion.js +75 -0
- package/open-sse/services/combo/targetSorters.js +126 -0
- package/open-sse/services/combo/targetTimeoutRunner.js +65 -0
- package/open-sse/services/combo/validateQuality.js +271 -0
- package/open-sse/services/combo.js +571 -0
- package/open-sse/services/comboAgentMiddleware.js +91 -0
- package/open-sse/services/comboConfig.js +153 -0
- package/open-sse/services/comboManifestMetrics.js +10 -0
- package/open-sse/services/comboMetrics.js +278 -0
- package/open-sse/services/compact.js +71 -0
- package/open-sse/services/copilotModels.js +155 -0
- package/open-sse/services/emergencyFallback.js +109 -0
- package/open-sse/services/errorClassifier.js +190 -0
- package/open-sse/services/evalRouting.js +201 -0
- package/open-sse/services/freeWebSearch.js +4 -0
- package/open-sse/services/fusion.js +223 -0
- package/open-sse/services/intentClassifier.js +631 -0
- package/open-sse/services/kimchiModels.js +176 -0
- package/open-sse/services/kiroModels.js +332 -0
- package/open-sse/services/model.js +136 -0
- package/open-sse/services/modelCapabilities.js +5 -0
- package/open-sse/services/modelDeprecation.js +101 -0
- package/open-sse/services/modelFamilyFallback.js +166 -0
- package/open-sse/services/oauthCredentialManager.js +156 -0
- package/open-sse/services/pipeline.js +107 -0
- package/open-sse/services/projectId.js +306 -0
- package/open-sse/services/provider.js +169 -0
- package/open-sse/services/providerCooldownTracker.js +94 -0
- package/open-sse/services/providerDefaultRateLimit.js +11 -0
- package/open-sse/services/proxyAutoSelector.js +24 -0
- package/open-sse/services/qoderModels.js +214 -0
- package/open-sse/services/quotaFetchThrottle.js +103 -0
- package/open-sse/services/quotaMonitor.js +310 -0
- package/open-sse/services/quotaPreflight.js +266 -0
- package/open-sse/services/rateLimitManager/headers.js +56 -0
- package/open-sse/services/rateLimitManager.js +616 -0
- package/open-sse/services/rateLimitSemaphore.js +112 -0
- package/open-sse/services/responsesInputSanitizer.js +99 -0
- package/open-sse/services/slidingWindowLimiter.js +44 -0
- package/open-sse/services/streamRecovery.js +355 -0
- package/open-sse/services/taskAwareRouter.js +227 -0
- package/open-sse/services/taskAwareRouting.js +332 -0
- package/open-sse/services/thinkingBudget.js +247 -0
- package/open-sse/services/tokenRefresh/dedup.js +31 -0
- package/open-sse/services/tokenRefresh/providers.js +624 -0
- package/open-sse/services/tokenRefresh.js +254 -0
- package/open-sse/services/usage/claude.js +147 -0
- package/open-sse/services/usage/codebuddy-cn.js +138 -0
- package/open-sse/services/usage/codex.js +267 -0
- package/open-sse/services/usage/github.js +100 -0
- package/open-sse/services/usage/google.js +241 -0
- package/open-sse/services/usage/grok-cli.js +274 -0
- package/open-sse/services/usage/kiro.js +188 -0
- package/open-sse/services/usage/minimax.js +234 -0
- package/open-sse/services/usage/misc.js +288 -0
- package/open-sse/services/usage/shared.js +70 -0
- package/open-sse/services/usage.js +62 -0
- package/open-sse/services/usageDb.js +2 -0
- package/open-sse/services/webSearchRouting.js +25 -0
- package/open-sse/services/wildcardRouter.js +59 -0
- package/open-sse/shared/clineAuth.js +37 -0
- package/open-sse/shared/machineId.js +19 -0
- package/open-sse/shared/qoder/constants.js +64 -0
- package/open-sse/shared/qoder/cosy.js +175 -0
- package/open-sse/shared/qoder/encoding.js +55 -0
- package/open-sse/transformer/responsesTransformer.js +439 -0
- package/open-sse/transformer/streamToJsonConverter.js +103 -0
- package/open-sse/translator/concerns/chunk.js +11 -0
- package/open-sse/translator/concerns/finishReason.js +63 -0
- package/open-sse/translator/concerns/image.js +124 -0
- package/open-sse/translator/concerns/json.js +5 -0
- package/open-sse/translator/concerns/message.js +7 -0
- package/open-sse/translator/concerns/modality.js +155 -0
- package/open-sse/translator/concerns/paramSupport.js +75 -0
- package/open-sse/translator/concerns/prefetch.js +96 -0
- package/open-sse/translator/concerns/reasoning.js +24 -0
- package/open-sse/translator/concerns/thinking.js +53 -0
- package/open-sse/translator/concerns/thinkingUnified.js +329 -0
- package/open-sse/translator/concerns/toolCall.js +153 -0
- package/open-sse/translator/concerns/usage.js +69 -0
- package/open-sse/translator/formats/claude.js +368 -0
- package/open-sse/translator/formats/gemini.js +380 -0
- package/open-sse/translator/formats/maxTokens.js +34 -0
- package/open-sse/translator/formats/openai.js +134 -0
- package/open-sse/translator/formats/responsesApi.js +141 -0
- package/open-sse/translator/formats.js +36 -0
- package/open-sse/translator/helpers/claudeHelper.js +216 -0
- package/open-sse/translator/helpers/geminiHelper.js +372 -0
- package/open-sse/translator/helpers/imageHelper.js +34 -0
- package/open-sse/translator/helpers/maxTokensHelper.js +27 -0
- package/open-sse/translator/helpers/openaiHelper.js +130 -0
- package/open-sse/translator/helpers/responsesApiHelper.js +139 -0
- package/open-sse/translator/helpers/toolCallHelper.js +148 -0
- package/open-sse/translator/index.js +252 -0
- package/open-sse/translator/request/antigravity-to-openai.js +242 -0
- package/open-sse/translator/request/claude-to-kiro.js +478 -0
- package/open-sse/translator/request/claude-to-openai.js +263 -0
- package/open-sse/translator/request/gemini-to-openai.js +152 -0
- package/open-sse/translator/request/openai-responses.js +385 -0
- package/open-sse/translator/request/openai-to-claude.js +383 -0
- package/open-sse/translator/request/openai-to-commandcode.js +176 -0
- package/open-sse/translator/request/openai-to-cursor.js +185 -0
- package/open-sse/translator/request/openai-to-gemini.js +442 -0
- package/open-sse/translator/request/openai-to-kiro.js +607 -0
- package/open-sse/translator/request/openai-to-kiro.old.js +278 -0
- package/open-sse/translator/request/openai-to-ollama.js +195 -0
- package/open-sse/translator/request/openai-to-vertex.js +42 -0
- package/open-sse/translator/response/claude-to-openai.js +195 -0
- package/open-sse/translator/response/commandcode-to-openai.js +188 -0
- package/open-sse/translator/response/cursor-to-openai.js +30 -0
- package/open-sse/translator/response/gemini-to-openai.js +147 -0
- package/open-sse/translator/response/kiro-to-claude.js +261 -0
- package/open-sse/translator/response/kiro-to-openai.js +160 -0
- package/open-sse/translator/response/ollama-to-openai.js +134 -0
- package/open-sse/translator/response/openai-responses.js +535 -0
- package/open-sse/translator/response/openai-to-antigravity.js +123 -0
- package/open-sse/translator/response/openai-to-claude.js +265 -0
- package/open-sse/translator/schema/blocks.js +43 -0
- package/open-sse/translator/schema/defaults.js +7 -0
- package/open-sse/translator/schema/finishReasons.js +27 -0
- package/open-sse/translator/schema/index.js +8 -0
- package/open-sse/translator/schema/roles.js +16 -0
- package/open-sse/utils/agentGoalPolicy.js +85 -0
- package/open-sse/utils/aiSdkCompat.js +75 -0
- package/open-sse/utils/bypassHandler.js +298 -0
- package/open-sse/utils/cacheControlPolicy.js +189 -0
- package/open-sse/utils/claudeCloaking.js +155 -0
- package/open-sse/utils/claudeHeaderCache.js +70 -0
- package/open-sse/utils/claudeSignature.js +41 -0
- package/open-sse/utils/clientDetector.js +63 -0
- package/open-sse/utils/codebuddySanitizer.js +96 -0
- package/open-sse/utils/composerToolCalls.js +158 -0
- package/open-sse/utils/cors.js +13 -0
- package/open-sse/utils/cursorChecksum.js +149 -0
- package/open-sse/utils/cursorImages.js +224 -0
- package/open-sse/utils/cursorProtobuf.js +904 -0
- package/open-sse/utils/cursorVersionDetector.js +55 -0
- package/open-sse/utils/debugLog.js +14 -0
- package/open-sse/utils/diagnostics.js +143 -0
- package/open-sse/utils/error.js +164 -0
- package/open-sse/utils/estimateSize.js +33 -0
- package/open-sse/utils/finishReason.js +32 -0
- package/open-sse/utils/flattenToolHistory.js +68 -0
- package/open-sse/utils/headers.js +36 -0
- package/open-sse/utils/heapPressure.js +35 -0
- package/open-sse/utils/jsonToSse.js +125 -0
- package/open-sse/utils/keepaliveThreshold.js +40 -0
- package/open-sse/utils/logger.js +104 -0
- package/open-sse/utils/noThinkingAlias.js +74 -0
- package/open-sse/utils/number.js +7 -0
- package/open-sse/utils/ollamaTransform.js +85 -0
- package/open-sse/utils/opencodeHeaders.js +47 -0
- package/open-sse/utils/progressTracker.js +81 -0
- package/open-sse/utils/providerRequestLogging.js +219 -0
- package/open-sse/utils/proxyFetch.js +369 -0
- package/open-sse/utils/reasoningContentInjector.js +79 -0
- package/open-sse/utils/reasoningFields.js +70 -0
- package/open-sse/utils/requestLogger.js +260 -0
- package/open-sse/utils/responsesInputNormalization.js +92 -0
- package/open-sse/utils/responsesStatePolicy.js +52 -0
- package/open-sse/utils/responsesStreamHelpers.js +49 -0
- package/open-sse/utils/sessionManager.js +240 -0
- package/open-sse/utils/sleep.js +6 -0
- package/open-sse/utils/sse.js +14 -0
- package/open-sse/utils/sseConstants.js +23 -0
- package/open-sse/utils/sseHeartbeat.js +104 -0
- package/open-sse/utils/stream.js +517 -0
- package/open-sse/utils/streamFailureFinalization.js +134 -0
- package/open-sse/utils/streamHandler.js +250 -0
- package/open-sse/utils/streamHelpers.js +137 -0
- package/open-sse/utils/textualToolCall.js +104 -0
- package/open-sse/utils/thinkCloseMarker.js +72 -0
- package/open-sse/utils/thinkTagParser.js +146 -0
- package/open-sse/utils/toolCallArguments.js +12 -0
- package/open-sse/utils/toolDeduper.js +49 -0
- package/open-sse/utils/toolSources.js +31 -0
- package/open-sse/utils/upstreamResponseHeaders.js +25 -0
- package/open-sse/utils/urlSanitize.js +15 -0
- package/open-sse/utils/usageTracking.js +347 -0
- package/package.json +1 -1
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Qoder COSY (hybrid RSA+AES+MD5) signing, ported from CLIProxyAPIPlus
|
|
3
|
+
* qoder-provider branch (internal/auth/qoder/cosy.go).
|
|
4
|
+
*
|
|
5
|
+
* Every signed request carries:
|
|
6
|
+
* - an AES-128-CBC payload of the user info, the AES key wrapped in RSA
|
|
7
|
+
* - an MD5 signature over `payload || cosyKey || timestamp || body || sigPath`
|
|
8
|
+
* - the body's MD5 hash + length so the server can validate integrity
|
|
9
|
+
* - 17 Cosy-* / X-* headers fingerprinting the client (machine id, IDE
|
|
10
|
+
* version, organization id, etc.)
|
|
11
|
+
*
|
|
12
|
+
* The on-the-wire header keys use the same casing as qodercli:
|
|
13
|
+
* Cosy-Machineid, not Cosy-MachineID.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
import crypto from "crypto";
|
|
17
|
+
import { v4 as uuidv4 } from "uuid";
|
|
18
|
+
|
|
19
|
+
import {
|
|
20
|
+
QODER_CLIENT_TYPE,
|
|
21
|
+
QODER_DATA_POLICY,
|
|
22
|
+
QODER_IDE_VERSION,
|
|
23
|
+
QODER_LOGIN_VERSION,
|
|
24
|
+
QODER_MACHINE_OS,
|
|
25
|
+
QODER_MACHINE_TYPE,
|
|
26
|
+
QODER_RSA_PUBLIC_KEY,
|
|
27
|
+
} from "./constants.js";
|
|
28
|
+
|
|
29
|
+
// AES-128 wants a 16-byte key. Match qodercli/Veria: take the first 16 chars
|
|
30
|
+
// of a fresh UUID's canonical string (hyphens included). The key is fresh
|
|
31
|
+
// per request so even though the IV reuses the key bytes, each request still
|
|
32
|
+
// has a unique IV.
|
|
33
|
+
function generateAesKey() {
|
|
34
|
+
return uuidv4().slice(0, 16);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function pkcs7Pad(data, blockSize) {
|
|
38
|
+
const padding = blockSize - (data.length % blockSize);
|
|
39
|
+
const padded = Buffer.alloc(data.length + padding, padding);
|
|
40
|
+
data.copy(padded, 0);
|
|
41
|
+
return padded;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
function aesEncryptCbcBase64(plaintext, keyStr) {
|
|
45
|
+
const keyBytes = Buffer.from(keyStr, "utf8");
|
|
46
|
+
if (keyBytes.length !== 16) {
|
|
47
|
+
throw new Error(`aes key must be 16 bytes, got ${keyBytes.length}`);
|
|
48
|
+
}
|
|
49
|
+
const iv = keyBytes.subarray(0, 16);
|
|
50
|
+
const cipher = crypto.createCipheriv("aes-128-cbc", keyBytes, iv);
|
|
51
|
+
cipher.setAutoPadding(false);
|
|
52
|
+
const padded = pkcs7Pad(Buffer.from(plaintext, "utf8"), 16);
|
|
53
|
+
const encrypted = Buffer.concat([cipher.update(padded), cipher.final()]);
|
|
54
|
+
return encrypted.toString("base64");
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function rsaEncryptBase64(data) {
|
|
58
|
+
const encrypted = crypto.publicEncrypt(
|
|
59
|
+
{ key: QODER_RSA_PUBLIC_KEY, padding: crypto.constants.RSA_PKCS1_PADDING },
|
|
60
|
+
Buffer.from(data, "utf8"),
|
|
61
|
+
);
|
|
62
|
+
return encrypted.toString("base64");
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
function encryptUserInfo(userInfo) {
|
|
66
|
+
const aesKey = generateAesKey();
|
|
67
|
+
const plaintext = JSON.stringify(userInfo);
|
|
68
|
+
const infoB64 = aesEncryptCbcBase64(plaintext, aesKey);
|
|
69
|
+
const cosyKeyB64 = rsaEncryptBase64(aesKey);
|
|
70
|
+
return { cosyKey: cosyKeyB64, info: infoB64 };
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
function md5Hex(input) {
|
|
74
|
+
return crypto.createHash("md5").update(input).digest("hex");
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Strip the leading "/algo" prefix from the request path. Matches qodercli
|
|
79
|
+
* convention. Empty input returns "".
|
|
80
|
+
*/
|
|
81
|
+
function computeSigPath(requestUrl) {
|
|
82
|
+
let pathname;
|
|
83
|
+
try {
|
|
84
|
+
pathname = new URL(requestUrl).pathname || "";
|
|
85
|
+
} catch {
|
|
86
|
+
return "";
|
|
87
|
+
}
|
|
88
|
+
if (pathname.startsWith("/algo")) {
|
|
89
|
+
return pathname.slice("/algo".length);
|
|
90
|
+
}
|
|
91
|
+
return pathname;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Generate a fresh machine UUID. Persisted on the connection record so
|
|
96
|
+
* every request from the same auth carries the same machineId.
|
|
97
|
+
*/
|
|
98
|
+
export function generateMachineId() {
|
|
99
|
+
return uuidv4();
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Build the full Cosy-* header set for a single Qoder request.
|
|
104
|
+
*
|
|
105
|
+
* @param {Buffer|Uint8Array|string} body The exact bytes that will be sent.
|
|
106
|
+
* For GET requests pass an empty Buffer / "".
|
|
107
|
+
* @param {string} requestUrl Full request URL (used for sigPath).
|
|
108
|
+
* @param {object} creds
|
|
109
|
+
* @param {string} creds.userId Stable Qoder user id.
|
|
110
|
+
* @param {string} creds.authToken Device access token (`dt-...`).
|
|
111
|
+
* @param {string} [creds.name] Display name (optional).
|
|
112
|
+
* @param {string} [creds.email] Email (optional, can be empty).
|
|
113
|
+
* @param {string} [creds.machineId] Persisted machine UUID.
|
|
114
|
+
* @returns {Record<string, string>} Header map ready to merge onto fetch().
|
|
115
|
+
*/
|
|
116
|
+
export function buildCosyHeaders(body, requestUrl, creds) {
|
|
117
|
+
if (!creds?.userId) throw new Error("cosy: user id is empty");
|
|
118
|
+
if (!creds?.authToken) throw new Error("cosy: auth token is empty");
|
|
119
|
+
|
|
120
|
+
const bodyBuf = Buffer.isBuffer(body)
|
|
121
|
+
? body
|
|
122
|
+
: typeof body === "string"
|
|
123
|
+
? Buffer.from(body, "latin1")
|
|
124
|
+
: Buffer.from(body || []);
|
|
125
|
+
|
|
126
|
+
const { cosyKey, info } = encryptUserInfo({
|
|
127
|
+
uid: creds.userId,
|
|
128
|
+
security_oauth_token: creds.authToken,
|
|
129
|
+
name: creds.name || "",
|
|
130
|
+
aid: "",
|
|
131
|
+
email: creds.email || "",
|
|
132
|
+
});
|
|
133
|
+
|
|
134
|
+
const timestamp = String(Math.floor(Date.now() / 1000));
|
|
135
|
+
const requestId = uuidv4();
|
|
136
|
+
|
|
137
|
+
const payloadJson = JSON.stringify({
|
|
138
|
+
version: "v1",
|
|
139
|
+
requestId,
|
|
140
|
+
info,
|
|
141
|
+
cosyVersion: QODER_IDE_VERSION,
|
|
142
|
+
ideVersion: "",
|
|
143
|
+
});
|
|
144
|
+
const payloadB64 = Buffer.from(payloadJson, "utf8").toString("base64");
|
|
145
|
+
|
|
146
|
+
const sigPath = computeSigPath(requestUrl);
|
|
147
|
+
const sigInput = `${payloadB64}\n${cosyKey}\n${timestamp}\n${bodyBuf.toString("latin1")}\n${sigPath}`;
|
|
148
|
+
const sig = md5Hex(Buffer.from(sigInput, "latin1"));
|
|
149
|
+
|
|
150
|
+
const machineId = creds.machineId || generateMachineId();
|
|
151
|
+
const bodyHash = md5Hex(bodyBuf);
|
|
152
|
+
const bodyLength = String(bodyBuf.length);
|
|
153
|
+
|
|
154
|
+
return {
|
|
155
|
+
Authorization: `Bearer COSY.${payloadB64}.${sig}`,
|
|
156
|
+
"Cosy-Key": cosyKey,
|
|
157
|
+
"Cosy-User": creds.userId,
|
|
158
|
+
"Cosy-Date": timestamp,
|
|
159
|
+
"Cosy-Version": QODER_IDE_VERSION,
|
|
160
|
+
"Cosy-Machineid": machineId,
|
|
161
|
+
"Cosy-Machinetoken": machineId,
|
|
162
|
+
"Cosy-Machinetype": QODER_MACHINE_TYPE,
|
|
163
|
+
"Cosy-Machineos": QODER_MACHINE_OS,
|
|
164
|
+
"Cosy-Clienttype": QODER_CLIENT_TYPE,
|
|
165
|
+
"Cosy-Clientip": "127.0.0.1",
|
|
166
|
+
"Cosy-Bodyhash": bodyHash,
|
|
167
|
+
"Cosy-Bodylength": bodyLength,
|
|
168
|
+
"Cosy-Sigpath": sigPath,
|
|
169
|
+
"Cosy-Data-Policy": QODER_DATA_POLICY,
|
|
170
|
+
"Cosy-Organization-Id": "",
|
|
171
|
+
"Cosy-Organization-Tags": "",
|
|
172
|
+
"Login-Version": QODER_LOGIN_VERSION,
|
|
173
|
+
"X-Request-Id": uuidv4(),
|
|
174
|
+
};
|
|
175
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Qoder body encoding ported from qoder2api's QoderEncoding.java (via the
|
|
3
|
+
* CLIProxyAPIPlus qoder-provider branch).
|
|
4
|
+
*
|
|
5
|
+
* Algorithm:
|
|
6
|
+
* 1. base64-encode the plaintext bytes (standard alphabet).
|
|
7
|
+
* 2. Rearrange: split into thirds, reorder as [tail][mid][head].
|
|
8
|
+
* 3. Substitute each character via a custom alphabet mapping.
|
|
9
|
+
*
|
|
10
|
+
* The encoded body must be sent with `&Encode=1` appended to the URL so the
|
|
11
|
+
* server decodes in reverse. The obfuscation prevents Alibaba Cloud WAF from
|
|
12
|
+
* pattern-matching the plaintext request body.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
const QODER_STD_ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
|
16
|
+
const QODER_CUSTOM_ALPHABET = "_doRTgHZBKcGVjlvpC,@aFSx#DPuNJme&i*MzLOEn)sUrthbf%Y^w.(kIQyXqWA!";
|
|
17
|
+
|
|
18
|
+
const QODER_S2C = (() => {
|
|
19
|
+
const table = new Int16Array(128).fill(-1);
|
|
20
|
+
for (let i = 0; i < 64; i++) {
|
|
21
|
+
table[QODER_STD_ALPHABET.charCodeAt(i)] = QODER_CUSTOM_ALPHABET.charCodeAt(i);
|
|
22
|
+
}
|
|
23
|
+
table["=".charCodeAt(0)] = "$".charCodeAt(0);
|
|
24
|
+
return table;
|
|
25
|
+
})();
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Encode plaintext bytes/string using Qoder's WAF-bypass scheme.
|
|
29
|
+
* @param {Buffer|Uint8Array|string} plaintext
|
|
30
|
+
* @returns {string} encoded string
|
|
31
|
+
*/
|
|
32
|
+
export function qoderEncodeBody(plaintext) {
|
|
33
|
+
const buf = Buffer.isBuffer(plaintext)
|
|
34
|
+
? plaintext
|
|
35
|
+
: typeof plaintext === "string"
|
|
36
|
+
? Buffer.from(plaintext, "utf8")
|
|
37
|
+
: Buffer.from(plaintext);
|
|
38
|
+
|
|
39
|
+
const std = buf.toString("base64");
|
|
40
|
+
const n = std.length;
|
|
41
|
+
const a = Math.floor(n / 3);
|
|
42
|
+
// [tail][mid][head]
|
|
43
|
+
const rearranged = std.slice(n - a) + std.slice(a, n - a) + std.slice(0, a);
|
|
44
|
+
|
|
45
|
+
const out = Buffer.alloc(n);
|
|
46
|
+
for (let i = 0; i < n; i++) {
|
|
47
|
+
const c = rearranged.charCodeAt(i);
|
|
48
|
+
if (c < 128 && QODER_S2C[c] >= 0) {
|
|
49
|
+
out[i] = QODER_S2C[c];
|
|
50
|
+
} else {
|
|
51
|
+
out[i] = c;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
return out.toString("latin1");
|
|
55
|
+
}
|
|
@@ -0,0 +1,439 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Responses API Transformer
|
|
3
|
+
* Converts OpenAI Chat Completions SSE to Codex Responses API SSE format
|
|
4
|
+
* Can be used in both Next.js and Cloudflare Workers
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import fs from "fs";
|
|
8
|
+
import path from "path";
|
|
9
|
+
|
|
10
|
+
// Create log directory for responses (Node.js only)
|
|
11
|
+
export function createResponsesLogger(model, logsDir = null) {
|
|
12
|
+
// Skip logging in worker environment (no fs)
|
|
13
|
+
if (typeof fs.mkdirSync !== "function") {
|
|
14
|
+
return null;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
const timestamp = new Date().toISOString().replace(/[:.]/g, "").slice(0, 15);
|
|
18
|
+
const uniqueId = Math.random().toString(36).slice(2, 8);
|
|
19
|
+
const baseDir = logsDir || (typeof process !== "undefined" ? process.cwd() : ".");
|
|
20
|
+
const logDir = path.join(baseDir, "logs", `responses_${model}_${timestamp}_${uniqueId}`);
|
|
21
|
+
|
|
22
|
+
try {
|
|
23
|
+
fs.mkdirSync(logDir, { recursive: true });
|
|
24
|
+
} catch {
|
|
25
|
+
return null;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
let inputEvents = [];
|
|
29
|
+
let outputEvents = [];
|
|
30
|
+
|
|
31
|
+
return {
|
|
32
|
+
logInput: (event) => {
|
|
33
|
+
inputEvents.push(event);
|
|
34
|
+
},
|
|
35
|
+
logOutput: (event) => {
|
|
36
|
+
outputEvents.push(event);
|
|
37
|
+
},
|
|
38
|
+
flush: () => {
|
|
39
|
+
try {
|
|
40
|
+
fs.writeFileSync(path.join(logDir, "1_input_stream.txt"), inputEvents.join("\n"));
|
|
41
|
+
fs.writeFileSync(path.join(logDir, "2_output_stream.txt"), outputEvents.join("\n"));
|
|
42
|
+
} catch (e) {
|
|
43
|
+
console.log("[RESPONSES] Failed to write logs:", e.message);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Create TransformStream that converts Chat Completions SSE to Responses API SSE
|
|
51
|
+
* @param {Object} logger - Optional logger instance
|
|
52
|
+
* @returns {TransformStream}
|
|
53
|
+
*/
|
|
54
|
+
export function createResponsesApiTransformStream(logger = null) {
|
|
55
|
+
const state = {
|
|
56
|
+
seq: 0,
|
|
57
|
+
responseId: `resp_${Date.now()}`,
|
|
58
|
+
created: Math.floor(Date.now() / 1000),
|
|
59
|
+
started: false,
|
|
60
|
+
msgTextBuf: {},
|
|
61
|
+
msgItemAdded: {},
|
|
62
|
+
msgContentAdded: {},
|
|
63
|
+
msgItemDone: {},
|
|
64
|
+
reasoningId: "",
|
|
65
|
+
reasoningIndex: -1,
|
|
66
|
+
reasoningBuf: "",
|
|
67
|
+
reasoningPartAdded: false,
|
|
68
|
+
reasoningDone: false,
|
|
69
|
+
inThinking: false,
|
|
70
|
+
funcArgsBuf: {},
|
|
71
|
+
funcNames: {},
|
|
72
|
+
funcCallIds: {},
|
|
73
|
+
funcArgsDone: {},
|
|
74
|
+
funcItemDone: {},
|
|
75
|
+
buffer: "",
|
|
76
|
+
completedSent: false
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
const encoder = new TextEncoder();
|
|
80
|
+
const nextSeq = () => ++state.seq;
|
|
81
|
+
|
|
82
|
+
const emit = (controller, eventType, data) => {
|
|
83
|
+
data.sequence_number = nextSeq();
|
|
84
|
+
const output = `event: ${eventType}\ndata: ${JSON.stringify(data)}\n\n`;
|
|
85
|
+
logger?.logOutput(output.trim());
|
|
86
|
+
controller.enqueue(encoder.encode(output));
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
// Helper to start reasoning
|
|
90
|
+
const startReasoning = (controller, idx) => {
|
|
91
|
+
if (!state.reasoningId) {
|
|
92
|
+
state.reasoningId = `rs_${state.responseId}_${idx}`;
|
|
93
|
+
state.reasoningIndex = idx;
|
|
94
|
+
|
|
95
|
+
emit(controller, "response.output_item.added", {
|
|
96
|
+
type: "response.output_item.added",
|
|
97
|
+
output_index: idx,
|
|
98
|
+
item: {
|
|
99
|
+
id: state.reasoningId,
|
|
100
|
+
type: "reasoning",
|
|
101
|
+
summary: []
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
|
|
105
|
+
emit(controller, "response.reasoning_summary_part.added", {
|
|
106
|
+
type: "response.reasoning_summary_part.added",
|
|
107
|
+
item_id: state.reasoningId,
|
|
108
|
+
output_index: idx,
|
|
109
|
+
summary_index: 0,
|
|
110
|
+
part: { type: "summary_text", text: "" }
|
|
111
|
+
});
|
|
112
|
+
state.reasoningPartAdded = true;
|
|
113
|
+
}
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
const emitReasoningDelta = (controller, text) => {
|
|
117
|
+
if (!text) return;
|
|
118
|
+
state.reasoningBuf += text;
|
|
119
|
+
emit(controller, "response.reasoning_summary_text.delta", {
|
|
120
|
+
type: "response.reasoning_summary_text.delta",
|
|
121
|
+
item_id: state.reasoningId,
|
|
122
|
+
output_index: state.reasoningIndex,
|
|
123
|
+
summary_index: 0,
|
|
124
|
+
delta: text
|
|
125
|
+
});
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
const closeReasoning = (controller) => {
|
|
129
|
+
if (state.reasoningId && !state.reasoningDone) {
|
|
130
|
+
state.reasoningDone = true;
|
|
131
|
+
|
|
132
|
+
emit(controller, "response.reasoning_summary_text.done", {
|
|
133
|
+
type: "response.reasoning_summary_text.done",
|
|
134
|
+
item_id: state.reasoningId,
|
|
135
|
+
output_index: state.reasoningIndex,
|
|
136
|
+
summary_index: 0,
|
|
137
|
+
text: state.reasoningBuf
|
|
138
|
+
});
|
|
139
|
+
|
|
140
|
+
emit(controller, "response.reasoning_summary_part.done", {
|
|
141
|
+
type: "response.reasoning_summary_part.done",
|
|
142
|
+
item_id: state.reasoningId,
|
|
143
|
+
output_index: state.reasoningIndex,
|
|
144
|
+
summary_index: 0,
|
|
145
|
+
part: { type: "summary_text", text: state.reasoningBuf }
|
|
146
|
+
});
|
|
147
|
+
|
|
148
|
+
emit(controller, "response.output_item.done", {
|
|
149
|
+
type: "response.output_item.done",
|
|
150
|
+
output_index: state.reasoningIndex,
|
|
151
|
+
item: {
|
|
152
|
+
id: state.reasoningId,
|
|
153
|
+
type: "reasoning",
|
|
154
|
+
summary: [{ type: "summary_text", text: state.reasoningBuf }]
|
|
155
|
+
}
|
|
156
|
+
});
|
|
157
|
+
}
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
const closeMessage = (controller, idx) => {
|
|
161
|
+
if (state.msgItemAdded[idx] && !state.msgItemDone[idx]) {
|
|
162
|
+
state.msgItemDone[idx] = true;
|
|
163
|
+
const fullText = state.msgTextBuf[idx] || "";
|
|
164
|
+
const msgId = `msg_${state.responseId}_${idx}`;
|
|
165
|
+
|
|
166
|
+
emit(controller, "response.output_text.done", {
|
|
167
|
+
type: "response.output_text.done",
|
|
168
|
+
item_id: msgId,
|
|
169
|
+
output_index: parseInt(idx),
|
|
170
|
+
content_index: 0,
|
|
171
|
+
text: fullText,
|
|
172
|
+
logprobs: []
|
|
173
|
+
});
|
|
174
|
+
|
|
175
|
+
emit(controller, "response.content_part.done", {
|
|
176
|
+
type: "response.content_part.done",
|
|
177
|
+
item_id: msgId,
|
|
178
|
+
output_index: parseInt(idx),
|
|
179
|
+
content_index: 0,
|
|
180
|
+
part: { type: "output_text", annotations: [], logprobs: [], text: fullText }
|
|
181
|
+
});
|
|
182
|
+
|
|
183
|
+
emit(controller, "response.output_item.done", {
|
|
184
|
+
type: "response.output_item.done",
|
|
185
|
+
output_index: parseInt(idx),
|
|
186
|
+
item: {
|
|
187
|
+
id: msgId,
|
|
188
|
+
type: "message",
|
|
189
|
+
content: [{ type: "output_text", annotations: [], logprobs: [], text: fullText }],
|
|
190
|
+
role: "assistant"
|
|
191
|
+
}
|
|
192
|
+
});
|
|
193
|
+
}
|
|
194
|
+
};
|
|
195
|
+
|
|
196
|
+
const closeToolCall = (controller, idx) => {
|
|
197
|
+
const callId = state.funcCallIds[idx];
|
|
198
|
+
if (callId && !state.funcItemDone[idx]) {
|
|
199
|
+
const args = state.funcArgsBuf[idx] || "{}";
|
|
200
|
+
|
|
201
|
+
emit(controller, "response.function_call_arguments.done", {
|
|
202
|
+
type: "response.function_call_arguments.done",
|
|
203
|
+
item_id: `fc_${callId}`,
|
|
204
|
+
output_index: parseInt(idx),
|
|
205
|
+
arguments: args
|
|
206
|
+
});
|
|
207
|
+
|
|
208
|
+
emit(controller, "response.output_item.done", {
|
|
209
|
+
type: "response.output_item.done",
|
|
210
|
+
output_index: parseInt(idx),
|
|
211
|
+
item: {
|
|
212
|
+
id: `fc_${callId}`,
|
|
213
|
+
type: "function_call",
|
|
214
|
+
arguments: args,
|
|
215
|
+
call_id: callId,
|
|
216
|
+
name: state.funcNames[idx] || ""
|
|
217
|
+
}
|
|
218
|
+
});
|
|
219
|
+
|
|
220
|
+
state.funcItemDone[idx] = true;
|
|
221
|
+
state.funcArgsDone[idx] = true;
|
|
222
|
+
}
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
const sendCompleted = (controller) => {
|
|
226
|
+
if (!state.completedSent) {
|
|
227
|
+
state.completedSent = true;
|
|
228
|
+
emit(controller, "response.completed", {
|
|
229
|
+
type: "response.completed",
|
|
230
|
+
response: {
|
|
231
|
+
id: state.responseId,
|
|
232
|
+
object: "response",
|
|
233
|
+
created_at: state.created,
|
|
234
|
+
status: "completed",
|
|
235
|
+
background: false,
|
|
236
|
+
error: null
|
|
237
|
+
}
|
|
238
|
+
});
|
|
239
|
+
}
|
|
240
|
+
};
|
|
241
|
+
|
|
242
|
+
return new TransformStream({
|
|
243
|
+
transform(chunk, controller) {
|
|
244
|
+
const text = new TextDecoder().decode(chunk);
|
|
245
|
+
logger?.logInput(text.trim());
|
|
246
|
+
state.buffer += text;
|
|
247
|
+
|
|
248
|
+
const messages = state.buffer.split("\n\n");
|
|
249
|
+
state.buffer = messages.pop() || "";
|
|
250
|
+
|
|
251
|
+
for (const msg of messages) {
|
|
252
|
+
if (!msg.trim()) continue;
|
|
253
|
+
|
|
254
|
+
const dataMatch = msg.match(/^data:\s*(.+)$/m);
|
|
255
|
+
if (!dataMatch) continue;
|
|
256
|
+
|
|
257
|
+
const dataStr = dataMatch[1].trim();
|
|
258
|
+
if (dataStr === "[DONE]") continue;
|
|
259
|
+
|
|
260
|
+
let parsed;
|
|
261
|
+
try {
|
|
262
|
+
parsed = JSON.parse(dataStr);
|
|
263
|
+
} catch {
|
|
264
|
+
continue;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
if (!parsed.choices?.length) continue;
|
|
268
|
+
|
|
269
|
+
const choice = parsed.choices[0];
|
|
270
|
+
const idx = choice.index || 0;
|
|
271
|
+
const delta = choice.delta || {};
|
|
272
|
+
|
|
273
|
+
// Emit initial events
|
|
274
|
+
if (!state.started) {
|
|
275
|
+
state.started = true;
|
|
276
|
+
state.responseId = parsed.id ? `resp_${parsed.id}` : state.responseId;
|
|
277
|
+
|
|
278
|
+
emit(controller, "response.created", {
|
|
279
|
+
type: "response.created",
|
|
280
|
+
response: {
|
|
281
|
+
id: state.responseId,
|
|
282
|
+
object: "response",
|
|
283
|
+
created_at: state.created,
|
|
284
|
+
status: "in_progress",
|
|
285
|
+
background: false,
|
|
286
|
+
error: null,
|
|
287
|
+
output: []
|
|
288
|
+
}
|
|
289
|
+
});
|
|
290
|
+
|
|
291
|
+
emit(controller, "response.in_progress", {
|
|
292
|
+
type: "response.in_progress",
|
|
293
|
+
response: {
|
|
294
|
+
id: state.responseId,
|
|
295
|
+
object: "response",
|
|
296
|
+
created_at: state.created,
|
|
297
|
+
status: "in_progress"
|
|
298
|
+
}
|
|
299
|
+
});
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
// Handle reasoning_content (OpenAI native format)
|
|
303
|
+
if (delta.reasoning_content) {
|
|
304
|
+
startReasoning(controller, idx);
|
|
305
|
+
emitReasoningDelta(controller, delta.reasoning_content);
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
// Handle text content (may contain <think> tags)
|
|
309
|
+
if (delta.content) {
|
|
310
|
+
let content = delta.content;
|
|
311
|
+
|
|
312
|
+
if (content.includes("<think>")) {
|
|
313
|
+
state.inThinking = true;
|
|
314
|
+
content = content.replace("<think>", "");
|
|
315
|
+
startReasoning(controller, idx);
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
if (content.includes("</think>")) {
|
|
319
|
+
const parts = content.split("</think>");
|
|
320
|
+
const thinkPart = parts[0];
|
|
321
|
+
const textPart = parts.slice(1).join("</think>");
|
|
322
|
+
|
|
323
|
+
if (thinkPart) emitReasoningDelta(controller, thinkPart);
|
|
324
|
+
closeReasoning(controller);
|
|
325
|
+
state.inThinking = false;
|
|
326
|
+
content = textPart;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
if (state.inThinking && content) {
|
|
330
|
+
emitReasoningDelta(controller, content);
|
|
331
|
+
continue;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
// Regular text content
|
|
335
|
+
if (content) {
|
|
336
|
+
if (!state.msgItemAdded[idx]) {
|
|
337
|
+
state.msgItemAdded[idx] = true;
|
|
338
|
+
const msgId = `msg_${state.responseId}_${idx}`;
|
|
339
|
+
|
|
340
|
+
emit(controller, "response.output_item.added", {
|
|
341
|
+
type: "response.output_item.added",
|
|
342
|
+
output_index: idx,
|
|
343
|
+
item: { id: msgId, type: "message", content: [], role: "assistant" }
|
|
344
|
+
});
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
if (!state.msgContentAdded[idx]) {
|
|
348
|
+
state.msgContentAdded[idx] = true;
|
|
349
|
+
|
|
350
|
+
emit(controller, "response.content_part.added", {
|
|
351
|
+
type: "response.content_part.added",
|
|
352
|
+
item_id: `msg_${state.responseId}_${idx}`,
|
|
353
|
+
output_index: idx,
|
|
354
|
+
content_index: 0,
|
|
355
|
+
part: { type: "output_text", annotations: [], logprobs: [], text: "" }
|
|
356
|
+
});
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
emit(controller, "response.output_text.delta", {
|
|
360
|
+
type: "response.output_text.delta",
|
|
361
|
+
item_id: `msg_${state.responseId}_${idx}`,
|
|
362
|
+
output_index: idx,
|
|
363
|
+
content_index: 0,
|
|
364
|
+
delta: content,
|
|
365
|
+
logprobs: []
|
|
366
|
+
});
|
|
367
|
+
|
|
368
|
+
if (!state.msgTextBuf[idx]) state.msgTextBuf[idx] = "";
|
|
369
|
+
state.msgTextBuf[idx] += content;
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
// Handle tool_calls
|
|
374
|
+
if (delta.tool_calls) {
|
|
375
|
+
closeMessage(controller, idx);
|
|
376
|
+
|
|
377
|
+
for (const tc of delta.tool_calls) {
|
|
378
|
+
const tcIdx = tc.index ?? 0;
|
|
379
|
+
const newCallId = tc.id;
|
|
380
|
+
const funcName = tc.function?.name;
|
|
381
|
+
|
|
382
|
+
if (funcName) state.funcNames[tcIdx] = funcName;
|
|
383
|
+
|
|
384
|
+
if (!state.funcCallIds[tcIdx] && newCallId) {
|
|
385
|
+
state.funcCallIds[tcIdx] = newCallId;
|
|
386
|
+
|
|
387
|
+
emit(controller, "response.output_item.added", {
|
|
388
|
+
type: "response.output_item.added",
|
|
389
|
+
output_index: tcIdx,
|
|
390
|
+
item: {
|
|
391
|
+
id: `fc_${newCallId}`,
|
|
392
|
+
type: "function_call",
|
|
393
|
+
arguments: "",
|
|
394
|
+
call_id: newCallId,
|
|
395
|
+
name: state.funcNames[tcIdx] || ""
|
|
396
|
+
}
|
|
397
|
+
});
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
if (!state.funcArgsBuf[tcIdx]) state.funcArgsBuf[tcIdx] = "";
|
|
401
|
+
|
|
402
|
+
if (tc.function?.arguments) {
|
|
403
|
+
const refCallId = state.funcCallIds[tcIdx] || newCallId;
|
|
404
|
+
if (refCallId) {
|
|
405
|
+
emit(controller, "response.function_call_arguments.delta", {
|
|
406
|
+
type: "response.function_call_arguments.delta",
|
|
407
|
+
item_id: `fc_${refCallId}`,
|
|
408
|
+
output_index: tcIdx,
|
|
409
|
+
delta: tc.function.arguments
|
|
410
|
+
});
|
|
411
|
+
}
|
|
412
|
+
state.funcArgsBuf[tcIdx] += tc.function.arguments;
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
// Handle finish_reason
|
|
418
|
+
if (choice.finish_reason) {
|
|
419
|
+
for (const i in state.msgItemAdded) closeMessage(controller, i);
|
|
420
|
+
closeReasoning(controller);
|
|
421
|
+
for (const i in state.funcCallIds) closeToolCall(controller, i);
|
|
422
|
+
sendCompleted(controller);
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
|
|
427
|
+
flush(controller) {
|
|
428
|
+
for (const i in state.msgItemAdded) closeMessage(controller, i);
|
|
429
|
+
closeReasoning(controller);
|
|
430
|
+
for (const i in state.funcCallIds) closeToolCall(controller, i);
|
|
431
|
+
sendCompleted(controller);
|
|
432
|
+
|
|
433
|
+
logger?.logOutput("data: [DONE]");
|
|
434
|
+
controller.enqueue(encoder.encode("data: [DONE]\n\n"));
|
|
435
|
+
logger?.flush();
|
|
436
|
+
}
|
|
437
|
+
});
|
|
438
|
+
}
|
|
439
|
+
|