@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,300 @@
|
|
|
1
|
+
import { FORMATS } from "../../translator/formats.js";
|
|
2
|
+
import { needsTranslation } from "../../translator/index.js";
|
|
3
|
+
import { ollamaBodyToOpenAI } from "../../translator/response/ollama-to-openai.js";
|
|
4
|
+
import { addBufferToUsage, filterUsageForFormat } from "../../utils/usageTracking.js";
|
|
5
|
+
import { createErrorResult } from "../../utils/error.js";
|
|
6
|
+
import { HTTP_STATUS } from "../../config/runtimeConfig.js";
|
|
7
|
+
import { parseSSEToOpenAIResponse } from "./sseToJsonHandler.js";
|
|
8
|
+
import { buildRequestDetail, extractRequestConfig, extractUsageFromResponse, saveUsageStats } from "./requestDetail.js";
|
|
9
|
+
import { appendRequestLog, saveRequestDetail } from '../../../dist/lib/usageDb.js';
|
|
10
|
+
import { decloakToolNames } from "../../utils/claudeCloaking.js";
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Translate non-streaming response body from provider format → OpenAI format.
|
|
14
|
+
*/
|
|
15
|
+
export function translateNonStreamingResponse(responseBody, targetFormat, sourceFormat) {
|
|
16
|
+
if (targetFormat === sourceFormat || targetFormat === FORMATS.OPENAI) return responseBody;
|
|
17
|
+
|
|
18
|
+
// Gemini / Antigravity
|
|
19
|
+
if (targetFormat === FORMATS.GEMINI || targetFormat === FORMATS.ANTIGRAVITY || targetFormat === FORMATS.GEMINI_CLI || targetFormat === FORMATS.VERTEX) {
|
|
20
|
+
const response = responseBody.response || responseBody;
|
|
21
|
+
if (!response?.candidates?.[0]) return responseBody;
|
|
22
|
+
|
|
23
|
+
const candidate = response.candidates[0];
|
|
24
|
+
const content = candidate.content;
|
|
25
|
+
const usage = response.usageMetadata || responseBody.usageMetadata;
|
|
26
|
+
let textContent = "", reasoningContent = "";
|
|
27
|
+
const toolCalls = [];
|
|
28
|
+
|
|
29
|
+
if (content?.parts) {
|
|
30
|
+
for (const part of content.parts) {
|
|
31
|
+
if (part.thought === true && part.text) reasoningContent += part.text;
|
|
32
|
+
else if (part.text !== undefined) textContent += part.text;
|
|
33
|
+
if (part.functionCall) {
|
|
34
|
+
toolCalls.push({
|
|
35
|
+
id: `call_${part.functionCall.name}_${Date.now()}_${toolCalls.length}`,
|
|
36
|
+
type: "function",
|
|
37
|
+
function: { name: part.functionCall.name, arguments: JSON.stringify(part.functionCall.args || {}) }
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
const message = { role: "assistant" };
|
|
44
|
+
if (textContent) message.content = textContent;
|
|
45
|
+
if (reasoningContent) message.reasoning_content = reasoningContent;
|
|
46
|
+
if (toolCalls.length > 0) message.tool_calls = toolCalls;
|
|
47
|
+
if (!message.content && !message.tool_calls) message.content = "";
|
|
48
|
+
|
|
49
|
+
let finishReason = (candidate.finishReason || "stop").toLowerCase();
|
|
50
|
+
if (finishReason === "stop" && toolCalls.length > 0) finishReason = "tool_calls";
|
|
51
|
+
|
|
52
|
+
const result = {
|
|
53
|
+
id: `chatcmpl-${response.responseId || Date.now()}`,
|
|
54
|
+
object: "chat.completion",
|
|
55
|
+
created: Math.floor(new Date(response.createTime || Date.now()).getTime() / 1000),
|
|
56
|
+
model: response.modelVersion || "gemini",
|
|
57
|
+
choices: [{ index: 0, message, finish_reason: finishReason }]
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
if (usage) {
|
|
61
|
+
result.usage = {
|
|
62
|
+
prompt_tokens: (usage.promptTokenCount || 0) + (usage.thoughtsTokenCount || 0),
|
|
63
|
+
completion_tokens: usage.candidatesTokenCount || 0,
|
|
64
|
+
total_tokens: usage.totalTokenCount || 0
|
|
65
|
+
};
|
|
66
|
+
if (usage.thoughtsTokenCount > 0) {
|
|
67
|
+
result.usage.completion_tokens_details = { reasoning_tokens: usage.thoughtsTokenCount };
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
return result;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// Claude
|
|
74
|
+
if (targetFormat === FORMATS.CLAUDE) {
|
|
75
|
+
// Always translate a Claude-format body to OpenAI, even if `content` is
|
|
76
|
+
// missing/null (e.g. M3 with max_tokens:1 spends the budget on thinking
|
|
77
|
+
// and returns `content: null`). Returning the raw body would leave the
|
|
78
|
+
// OpenAI client without a `choices` array and surface as a UI test error.
|
|
79
|
+
if (responseBody.content && !Array.isArray(responseBody.content)) return responseBody;
|
|
80
|
+
|
|
81
|
+
let textContent = "", thinkingContent = "";
|
|
82
|
+
const toolCalls = [];
|
|
83
|
+
|
|
84
|
+
for (const block of (responseBody.content || [])) {
|
|
85
|
+
if (block.type === "text") {
|
|
86
|
+
// Strip markdown code block markers (e.g. kimi wraps JSON in ```json...```)
|
|
87
|
+
const raw = block.text ?? "";
|
|
88
|
+
const text = raw.replace(/^\s*```\s*json\s*\n?/i, "").replace(/\n?\s*```\s*$/i, "");
|
|
89
|
+
textContent += text;
|
|
90
|
+
} else if (block.type === "thinking") thinkingContent += block.thinking || "";
|
|
91
|
+
else if (block.type === "tool_use") {
|
|
92
|
+
toolCalls.push({ id: block.id, type: "function", function: { name: block.name, arguments: JSON.stringify(block.input || {}) } });
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
const message = { role: "assistant" };
|
|
97
|
+
if (textContent) message.content = textContent;
|
|
98
|
+
if (thinkingContent) message.reasoning_content = thinkingContent;
|
|
99
|
+
if (toolCalls.length > 0) message.tool_calls = toolCalls;
|
|
100
|
+
if (!message.content && !message.tool_calls) message.content = "";
|
|
101
|
+
|
|
102
|
+
let finishReason = responseBody.stop_reason || "stop";
|
|
103
|
+
if (finishReason === "end_turn") finishReason = "stop";
|
|
104
|
+
if (finishReason === "tool_use") finishReason = "tool_calls";
|
|
105
|
+
|
|
106
|
+
const result = {
|
|
107
|
+
id: `chatcmpl-${responseBody.id || Date.now()}`,
|
|
108
|
+
object: "chat.completion",
|
|
109
|
+
created: Math.floor(Date.now() / 1000),
|
|
110
|
+
model: responseBody.model || "claude",
|
|
111
|
+
choices: [{ index: 0, message, finish_reason: finishReason }]
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
if (responseBody.usage) {
|
|
115
|
+
result.usage = {
|
|
116
|
+
prompt_tokens: responseBody.usage.input_tokens || 0,
|
|
117
|
+
completion_tokens: responseBody.usage.output_tokens || 0,
|
|
118
|
+
total_tokens: (responseBody.usage.input_tokens || 0) + (responseBody.usage.output_tokens || 0)
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
return result;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// Ollama
|
|
125
|
+
if (targetFormat === FORMATS.OLLAMA) {
|
|
126
|
+
return ollamaBodyToOpenAI(responseBody);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
return responseBody;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* Handle non-streaming response from provider.
|
|
134
|
+
*/
|
|
135
|
+
export async function handleNonStreamingResponse({ providerResponse, provider, model, sourceFormat, targetFormat, body, stream, translatedBody, finalBody, requestStartTime, connectionId, apiKey, clientRawRequest, onRequestSuccess, reqLogger, toolNameMap, trackDone, appendLog }) {
|
|
136
|
+
trackDone();
|
|
137
|
+
const contentType = providerResponse.headers.get("content-type") || "";
|
|
138
|
+
let responseBody;
|
|
139
|
+
|
|
140
|
+
if (contentType.includes("text/event-stream")) {
|
|
141
|
+
const sseText = await providerResponse.text();
|
|
142
|
+
const parsed = parseSSEToOpenAIResponse(sseText, model);
|
|
143
|
+
if (!parsed) {
|
|
144
|
+
appendLog({ status: `FAILED ${HTTP_STATUS.BAD_GATEWAY}` });
|
|
145
|
+
return createErrorResult(HTTP_STATUS.BAD_GATEWAY, "Invalid SSE response for non-streaming request");
|
|
146
|
+
}
|
|
147
|
+
responseBody = parsed;
|
|
148
|
+
} else {
|
|
149
|
+
try {
|
|
150
|
+
responseBody = await providerResponse.json();
|
|
151
|
+
} catch (err) {
|
|
152
|
+
appendLog({ status: `FAILED ${HTTP_STATUS.BAD_GATEWAY}` });
|
|
153
|
+
console.error(`[ChatCore] Failed to parse JSON from ${provider}:`, err.message);
|
|
154
|
+
return createErrorResult(HTTP_STATUS.BAD_GATEWAY, `Invalid JSON response from ${provider}`);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
reqLogger.logProviderResponse(providerResponse.status, providerResponse.statusText, providerResponse.headers, responseBody);
|
|
159
|
+
if (onRequestSuccess) await onRequestSuccess();
|
|
160
|
+
|
|
161
|
+
// Decloak tool_use names once on raw Claude body, before any translation (INPUT side)
|
|
162
|
+
responseBody = decloakToolNames(responseBody, toolNameMap);
|
|
163
|
+
|
|
164
|
+
const usage = extractUsageFromResponse(responseBody);
|
|
165
|
+
appendLog({ tokens: usage, status: "200 OK" });
|
|
166
|
+
saveUsageStats({ provider, model, tokens: usage, connectionId, apiKey, endpoint: clientRawRequest?.endpoint });
|
|
167
|
+
|
|
168
|
+
const translatedResponse = needsTranslation(targetFormat, sourceFormat)
|
|
169
|
+
? translateNonStreamingResponse(responseBody, targetFormat, sourceFormat)
|
|
170
|
+
: responseBody;
|
|
171
|
+
|
|
172
|
+
// Fix finish_reason for tool_calls: some providers return non-standard values (e.g. "other")
|
|
173
|
+
if (translatedResponse?.choices?.[0]) {
|
|
174
|
+
const choice = translatedResponse.choices[0];
|
|
175
|
+
const msg = choice.message;
|
|
176
|
+
const hasToolCalls = Array.isArray(msg?.tool_calls) && msg.tool_calls.length > 0;
|
|
177
|
+
if (hasToolCalls && choice.finish_reason !== "tool_calls") {
|
|
178
|
+
choice.finish_reason = "tool_calls";
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
// Ensure OpenAI-required fields
|
|
183
|
+
if (!translatedResponse.object) translatedResponse.object = "chat.completion";
|
|
184
|
+
if (!translatedResponse.created) translatedResponse.created = Math.floor(Date.now() / 1000);
|
|
185
|
+
|
|
186
|
+
// Strip Azure-specific fields
|
|
187
|
+
delete translatedResponse.prompt_filter_results;
|
|
188
|
+
if (translatedResponse?.choices) {
|
|
189
|
+
for (const choice of translatedResponse.choices) delete choice.content_filter_results;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
if (translatedResponse?.usage) {
|
|
193
|
+
translatedResponse.usage = filterUsageForFormat(addBufferToUsage(translatedResponse.usage), sourceFormat);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
// Strip reasoning_content — some clients (e.g. Firecrawl AI SDK) have JSON parsers that
|
|
197
|
+
// break on this non-standard field, even though OpenAI allows it in extensions.
|
|
198
|
+
if (translatedResponse?.choices && sourceFormat !== FORMATS.CLAUDE) {
|
|
199
|
+
for (const choice of translatedResponse.choices) {
|
|
200
|
+
if (choice?.message) delete choice.message.reasoning_content;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
// If client sent Anthropic Messages format (/v1/messages), convert response back to
|
|
205
|
+
// Anthropic format. 9router always works in OpenAI format internally; this step
|
|
206
|
+
// is the reverse-translation for Claude Code / Anthropic SDK clients.
|
|
207
|
+
if (sourceFormat === FORMATS.CLAUDE) {
|
|
208
|
+
const choice = translatedResponse?.choices?.[0];
|
|
209
|
+
const msg = choice?.message || {};
|
|
210
|
+
const contentBlocks = [];
|
|
211
|
+
if (msg.reasoning_content) contentBlocks.push({ type: "thinking", thinking: msg.reasoning_content });
|
|
212
|
+
if (msg.content) contentBlocks.push({ type: "text", text: msg.content });
|
|
213
|
+
if (Array.isArray(msg.tool_calls)) {
|
|
214
|
+
for (const tc of msg.tool_calls) {
|
|
215
|
+
let input = {};
|
|
216
|
+
try { input = JSON.parse(tc.function?.arguments || "{}"); } catch {}
|
|
217
|
+
contentBlocks.push({ type: "tool_use", id: tc.id, name: tc.function?.name, input });
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
// Claude Code requires at least one text or tool_use block — cannot be only thinking
|
|
221
|
+
const hasTextOrTool = contentBlocks.some(b => b.type === "text" || b.type === "tool_use");
|
|
222
|
+
if (!hasTextOrTool) contentBlocks.push({ type: "text", text: "" });
|
|
223
|
+
|
|
224
|
+
let stopReason = "end_turn";
|
|
225
|
+
const fr = choice?.finish_reason;
|
|
226
|
+
if (fr === "tool_calls") stopReason = "tool_use";
|
|
227
|
+
else if (fr === "length") stopReason = "max_tokens";
|
|
228
|
+
|
|
229
|
+
const anthropicResponse = {
|
|
230
|
+
id: translatedResponse.id || `msg_${Date.now()}`,
|
|
231
|
+
type: "message",
|
|
232
|
+
role: "assistant",
|
|
233
|
+
content: contentBlocks.length ? contentBlocks : [{ type: "text", text: "" }],
|
|
234
|
+
model: translatedResponse.model || model,
|
|
235
|
+
stop_reason: stopReason,
|
|
236
|
+
stop_sequence: null,
|
|
237
|
+
};
|
|
238
|
+
if (translatedResponse.usage) {
|
|
239
|
+
anthropicResponse.usage = {
|
|
240
|
+
input_tokens: translatedResponse.usage.prompt_tokens || 0,
|
|
241
|
+
output_tokens: translatedResponse.usage.completion_tokens || 0,
|
|
242
|
+
};
|
|
243
|
+
} else {
|
|
244
|
+
anthropicResponse.usage = { input_tokens: 0, output_tokens: 0 };
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
reqLogger.logConvertedResponse(anthropicResponse);
|
|
248
|
+
const totalLatency = Date.now() - requestStartTime;
|
|
249
|
+
saveRequestDetail(buildRequestDetail({
|
|
250
|
+
provider, model, connectionId,
|
|
251
|
+
latency: { ttft: totalLatency, total: totalLatency },
|
|
252
|
+
tokens: usage || { prompt_tokens: 0, completion_tokens: 0 },
|
|
253
|
+
request: extractRequestConfig(body, stream),
|
|
254
|
+
providerRequest: finalBody || translatedBody || null,
|
|
255
|
+
providerResponse: responseBody || null,
|
|
256
|
+
response: {
|
|
257
|
+
content: msg.content || null,
|
|
258
|
+
thinking: msg.reasoning_content || null,
|
|
259
|
+
finish_reason: choice?.finish_reason || "unknown"
|
|
260
|
+
},
|
|
261
|
+
status: "success"
|
|
262
|
+
}, { endpoint: clientRawRequest?.endpoint || null })).catch(err => {
|
|
263
|
+
console.error("[RequestDetail] Failed to save:", err.message);
|
|
264
|
+
});
|
|
265
|
+
|
|
266
|
+
return {
|
|
267
|
+
success: true,
|
|
268
|
+
response: new Response(JSON.stringify(anthropicResponse), {
|
|
269
|
+
headers: { "Content-Type": "application/json", "Access-Control-Allow-Origin": "*" }
|
|
270
|
+
})
|
|
271
|
+
};
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
reqLogger.logConvertedResponse(translatedResponse);
|
|
275
|
+
|
|
276
|
+
const totalLatency = Date.now() - requestStartTime;
|
|
277
|
+
saveRequestDetail(buildRequestDetail({
|
|
278
|
+
provider, model, connectionId,
|
|
279
|
+
latency: { ttft: totalLatency, total: totalLatency },
|
|
280
|
+
tokens: usage || { prompt_tokens: 0, completion_tokens: 0 },
|
|
281
|
+
request: extractRequestConfig(body, stream),
|
|
282
|
+
providerRequest: finalBody || translatedBody || null,
|
|
283
|
+
providerResponse: responseBody || null,
|
|
284
|
+
response: {
|
|
285
|
+
content: translatedResponse?.choices?.[0]?.message?.content || translatedResponse?.content || null,
|
|
286
|
+
thinking: translatedResponse?.choices?.[0]?.message?.reasoning_content || translatedResponse?.reasoning_content || null,
|
|
287
|
+
finish_reason: translatedResponse?.choices?.[0]?.finish_reason || "unknown"
|
|
288
|
+
},
|
|
289
|
+
status: "success"
|
|
290
|
+
}, { endpoint: clientRawRequest?.endpoint || null })).catch(err => {
|
|
291
|
+
console.error("[RequestDetail] Failed to save:", err.message);
|
|
292
|
+
});
|
|
293
|
+
|
|
294
|
+
return {
|
|
295
|
+
success: true,
|
|
296
|
+
response: new Response(JSON.stringify(translatedResponse), {
|
|
297
|
+
headers: { "Content-Type": "application/json", "Access-Control-Allow-Origin": "*" }
|
|
298
|
+
})
|
|
299
|
+
};
|
|
300
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { saveRequestUsage, appendRequestLog, saveRequestDetail } from '../../../dist/lib/usageDb.js';
|
|
2
|
+
import { COLORS } from "../../utils/stream.js";
|
|
3
|
+
|
|
4
|
+
const OPTIONAL_PARAMS = [
|
|
5
|
+
"temperature", "top_p", "top_k",
|
|
6
|
+
"max_tokens", "max_completion_tokens",
|
|
7
|
+
"thinking", "reasoning", "enable_thinking",
|
|
8
|
+
"presence_penalty", "frequency_penalty",
|
|
9
|
+
"seed", "stop", "tools", "tool_choice",
|
|
10
|
+
"response_format", "prediction", "store", "metadata",
|
|
11
|
+
"n", "logprobs", "top_logprobs", "logit_bias",
|
|
12
|
+
"user", "parallel_tool_calls"
|
|
13
|
+
];
|
|
14
|
+
|
|
15
|
+
export function extractRequestConfig(body, stream) {
|
|
16
|
+
const config = { messages: body.messages || [], model: body.model, stream };
|
|
17
|
+
for (const param of OPTIONAL_PARAMS) {
|
|
18
|
+
if (body[param] !== undefined) config[param] = body[param];
|
|
19
|
+
}
|
|
20
|
+
return config;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export function extractUsageFromResponse(responseBody) {
|
|
24
|
+
if (!responseBody || typeof responseBody !== "object") return null;
|
|
25
|
+
|
|
26
|
+
// Claude format
|
|
27
|
+
if (responseBody.usage?.input_tokens !== undefined) {
|
|
28
|
+
return {
|
|
29
|
+
prompt_tokens: responseBody.usage.input_tokens || 0,
|
|
30
|
+
completion_tokens: responseBody.usage.output_tokens || 0,
|
|
31
|
+
cache_read_input_tokens: responseBody.usage.cache_read_input_tokens,
|
|
32
|
+
cache_creation_input_tokens: responseBody.usage.cache_creation_input_tokens
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// OpenAI format
|
|
37
|
+
if (responseBody.usage?.prompt_tokens !== undefined) {
|
|
38
|
+
return {
|
|
39
|
+
prompt_tokens: responseBody.usage.prompt_tokens || 0,
|
|
40
|
+
completion_tokens: responseBody.usage.completion_tokens || 0,
|
|
41
|
+
cached_tokens: responseBody.usage.prompt_tokens_details?.cached_tokens,
|
|
42
|
+
reasoning_tokens: responseBody.usage.completion_tokens_details?.reasoning_tokens
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Gemini format
|
|
47
|
+
if (responseBody.usageMetadata) {
|
|
48
|
+
return {
|
|
49
|
+
prompt_tokens: responseBody.usageMetadata.promptTokenCount || 0,
|
|
50
|
+
completion_tokens: responseBody.usageMetadata.candidatesTokenCount || 0,
|
|
51
|
+
reasoning_tokens: responseBody.usageMetadata.thoughtsTokenCount
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
return null;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function buildRequestDetail(base, overrides = {}) {
|
|
59
|
+
return {
|
|
60
|
+
provider: base.provider || "unknown",
|
|
61
|
+
model: base.model || "unknown",
|
|
62
|
+
connectionId: base.connectionId || undefined,
|
|
63
|
+
timestamp: new Date().toISOString(),
|
|
64
|
+
latency: base.latency || { ttft: 0, total: 0 },
|
|
65
|
+
tokens: base.tokens || { prompt_tokens: 0, completion_tokens: 0 },
|
|
66
|
+
request: base.request,
|
|
67
|
+
providerRequest: base.providerRequest || null,
|
|
68
|
+
providerResponse: base.providerResponse || null,
|
|
69
|
+
response: base.response || {},
|
|
70
|
+
status: base.status || "success",
|
|
71
|
+
...overrides
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export function saveUsageStats({ provider, model, tokens, connectionId, apiKey, endpoint, label = "USAGE" }) {
|
|
76
|
+
if (!tokens || typeof tokens !== "object") return;
|
|
77
|
+
|
|
78
|
+
const inTokens = tokens.input_tokens ?? tokens.prompt_tokens ?? 0;
|
|
79
|
+
const outTokens = tokens.output_tokens ?? tokens.completion_tokens ?? 0;
|
|
80
|
+
|
|
81
|
+
if (inTokens === 0 && outTokens === 0) return;
|
|
82
|
+
|
|
83
|
+
const time = new Date().toLocaleTimeString("en-US", { hour12: false, hour: "2-digit", minute: "2-digit", second: "2-digit" });
|
|
84
|
+
const accountSuffix = connectionId ? ` | account=${connectionId.slice(0, 8)}...` : "";
|
|
85
|
+
console.log(`${COLORS.green}[${time}] 📊 [${label}] ${provider.toUpperCase()} | in=${inTokens} | out=${outTokens}${accountSuffix}${COLORS.reset}`);
|
|
86
|
+
|
|
87
|
+
// Normalize to OpenAI token shape for storage
|
|
88
|
+
const normalized = {
|
|
89
|
+
prompt_tokens: tokens.prompt_tokens ?? tokens.input_tokens ?? 0,
|
|
90
|
+
completion_tokens: tokens.completion_tokens ?? tokens.output_tokens ?? 0
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
saveRequestUsage({
|
|
94
|
+
provider: provider || "unknown",
|
|
95
|
+
model: model || "unknown",
|
|
96
|
+
tokens: normalized,
|
|
97
|
+
timestamp: new Date().toISOString(),
|
|
98
|
+
connectionId: connectionId || undefined,
|
|
99
|
+
apiKey: apiKey || undefined,
|
|
100
|
+
endpoint: endpoint || null
|
|
101
|
+
}).catch(() => {});
|
|
102
|
+
}
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
import { convertResponsesStreamToJson } from "../../transformer/streamToJsonConverter.js";
|
|
2
|
+
import { createErrorResult } from "../../utils/error.js";
|
|
3
|
+
import { HTTP_STATUS } from "../../config/runtimeConfig.js";
|
|
4
|
+
import { FORMATS } from "../../translator/formats.js";
|
|
5
|
+
import { buildRequestDetail, extractRequestConfig, saveUsageStats } from "./requestDetail.js";
|
|
6
|
+
import { saveRequestDetail, appendRequestLog } from '../../../dist/lib/usageDb.js';
|
|
7
|
+
|
|
8
|
+
function textFromResponsesMessageItem(item) {
|
|
9
|
+
if (!item?.content || !Array.isArray(item.content)) return "";
|
|
10
|
+
const byType = item.content.find((c) => c.type === "output_text");
|
|
11
|
+
if (typeof byType?.text === "string") return byType.text;
|
|
12
|
+
const anyText = item.content.find((c) => typeof c.text === "string");
|
|
13
|
+
if (typeof anyText?.text === "string") return anyText.text;
|
|
14
|
+
return "";
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Codex / Responses API may emit many alternating reasoning + message items.
|
|
19
|
+
* Early message blocks often have empty output_text; the user-visible answer is usually in the last non-empty message.
|
|
20
|
+
*/
|
|
21
|
+
function pickAssistantMessageForChatCompletion(output) {
|
|
22
|
+
if (!Array.isArray(output)) return { msgItem: null, textContent: null };
|
|
23
|
+
const messages = output.filter((item) => item?.type === "message");
|
|
24
|
+
if (messages.length === 0) return { msgItem: null, textContent: null };
|
|
25
|
+
for (let i = messages.length - 1; i >= 0; i--) {
|
|
26
|
+
const text = textFromResponsesMessageItem(messages[i]);
|
|
27
|
+
if (text.length > 0) return { msgItem: messages[i], textContent: text };
|
|
28
|
+
}
|
|
29
|
+
const last = messages[messages.length - 1];
|
|
30
|
+
return { msgItem: last, textContent: textFromResponsesMessageItem(last) };
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Parse OpenAI-style SSE text into a single chat completion JSON.
|
|
35
|
+
* Used when provider forces streaming but client wants non-streaming.
|
|
36
|
+
*/
|
|
37
|
+
export function parseSSEToOpenAIResponse(rawSSE, fallbackModel) {
|
|
38
|
+
const chunks = [];
|
|
39
|
+
|
|
40
|
+
for (const line of String(rawSSE || "").split("\n")) {
|
|
41
|
+
const trimmed = line.trim();
|
|
42
|
+
if (!trimmed.startsWith("data:")) continue;
|
|
43
|
+
const payload = trimmed.slice(5).trim();
|
|
44
|
+
if (!payload || payload === "[DONE]") continue;
|
|
45
|
+
try { chunks.push(JSON.parse(payload)); } catch { /* ignore malformed lines */ }
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
if (chunks.length === 0) return null;
|
|
49
|
+
|
|
50
|
+
const first = chunks[0];
|
|
51
|
+
const contentParts = [];
|
|
52
|
+
const reasoningParts = [];
|
|
53
|
+
const toolCallMap = new Map(); // index -> { id, type, function: { name, arguments } }
|
|
54
|
+
let finishReason = "stop";
|
|
55
|
+
let usage = null;
|
|
56
|
+
|
|
57
|
+
for (const chunk of chunks) {
|
|
58
|
+
const choice = chunk?.choices?.[0];
|
|
59
|
+
const delta = choice?.delta || {};
|
|
60
|
+
if (typeof delta.content === "string" && delta.content.length > 0) contentParts.push(delta.content);
|
|
61
|
+
if (typeof delta.reasoning_content === "string" && delta.reasoning_content.length > 0) reasoningParts.push(delta.reasoning_content);
|
|
62
|
+
if (choice?.finish_reason) finishReason = choice.finish_reason;
|
|
63
|
+
if (chunk?.usage && typeof chunk.usage === "object") usage = chunk.usage;
|
|
64
|
+
|
|
65
|
+
// Accumulate tool_calls from streaming deltas
|
|
66
|
+
if (Array.isArray(delta.tool_calls)) {
|
|
67
|
+
for (const tc of delta.tool_calls) {
|
|
68
|
+
const idx = tc.index ?? 0;
|
|
69
|
+
if (!toolCallMap.has(idx)) {
|
|
70
|
+
toolCallMap.set(idx, { id: tc.id || "", type: "function", function: { name: "", arguments: "" } });
|
|
71
|
+
}
|
|
72
|
+
const existing = toolCallMap.get(idx);
|
|
73
|
+
if (tc.id) existing.id = tc.id;
|
|
74
|
+
if (tc.function?.name) existing.function.name += tc.function.name;
|
|
75
|
+
if (tc.function?.arguments) existing.function.arguments += tc.function.arguments;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
const message = { role: "assistant", content: contentParts.join("") || (toolCallMap.size > 0 ? null : "") };
|
|
81
|
+
if (reasoningParts.length > 0) message.reasoning_content = reasoningParts.join("");
|
|
82
|
+
if (toolCallMap.size > 0) {
|
|
83
|
+
message.tool_calls = [...toolCallMap.entries()].sort((a, b) => a[0] - b[0]).map(([, tc]) => tc);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
const result = {
|
|
87
|
+
id: first.id || `chatcmpl-${Date.now()}`,
|
|
88
|
+
object: "chat.completion",
|
|
89
|
+
created: first.created || Math.floor(Date.now() / 1000),
|
|
90
|
+
model: first.model || fallbackModel || "unknown",
|
|
91
|
+
choices: [{ index: 0, message, finish_reason: finishReason }]
|
|
92
|
+
};
|
|
93
|
+
if (usage) result.usage = usage;
|
|
94
|
+
return result;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Handle case: provider forced streaming but client wants JSON.
|
|
99
|
+
* Supports both Codex/Responses API SSE and standard Chat Completions SSE.
|
|
100
|
+
*/
|
|
101
|
+
export async function handleForcedSSEToJson({ providerResponse, sourceFormat, provider, model, body, stream, translatedBody, finalBody, requestStartTime, connectionId, apiKey, clientRawRequest, onRequestSuccess, trackDone, appendLog }) {
|
|
102
|
+
const contentType = providerResponse.headers.get("content-type") || "";
|
|
103
|
+
const isSSE = contentType.includes("text/event-stream") || (contentType === "" && provider === "codex");
|
|
104
|
+
if (!isSSE) return null; // not handled here
|
|
105
|
+
|
|
106
|
+
trackDone();
|
|
107
|
+
|
|
108
|
+
const ctx = {
|
|
109
|
+
provider, model, connectionId,
|
|
110
|
+
request: extractRequestConfig(body, stream),
|
|
111
|
+
providerRequest: finalBody || translatedBody || null
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
// Codex/Responses API SSE path
|
|
115
|
+
const isCodexResponsesApi = provider === "codex" || sourceFormat === FORMATS.OPENAI_RESPONSES;
|
|
116
|
+
if (isCodexResponsesApi) {
|
|
117
|
+
try {
|
|
118
|
+
const jsonResponse = await convertResponsesStreamToJson(providerResponse.body);
|
|
119
|
+
if (onRequestSuccess) await onRequestSuccess();
|
|
120
|
+
|
|
121
|
+
const usage = jsonResponse.usage || {};
|
|
122
|
+
appendLog({ tokens: usage, status: "200 OK" });
|
|
123
|
+
saveUsageStats({ provider, model, tokens: usage, connectionId, apiKey, endpoint: clientRawRequest?.endpoint });
|
|
124
|
+
|
|
125
|
+
const { msgItem, textContent } = pickAssistantMessageForChatCompletion(jsonResponse.output);
|
|
126
|
+
const totalLatency = Date.now() - requestStartTime;
|
|
127
|
+
|
|
128
|
+
saveRequestDetail(buildRequestDetail({
|
|
129
|
+
...ctx,
|
|
130
|
+
latency: { ttft: totalLatency, total: totalLatency },
|
|
131
|
+
tokens: { prompt_tokens: usage.input_tokens || 0, completion_tokens: usage.output_tokens || 0 },
|
|
132
|
+
response: { content: textContent, thinking: null, finish_reason: jsonResponse.status || "unknown" },
|
|
133
|
+
status: "success"
|
|
134
|
+
}, { endpoint: clientRawRequest?.endpoint || null })).catch(() => {});
|
|
135
|
+
|
|
136
|
+
// Client is Responses API → return as-is
|
|
137
|
+
if (sourceFormat === FORMATS.OPENAI_RESPONSES) {
|
|
138
|
+
return { success: true, response: new Response(JSON.stringify(jsonResponse), { headers: { "Content-Type": "application/json", "Access-Control-Allow-Origin": "*" } }) };
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// Build client-format response
|
|
142
|
+
const inTokens = usage.input_tokens || 0;
|
|
143
|
+
const outTokens = usage.output_tokens || 0;
|
|
144
|
+
let finalResp;
|
|
145
|
+
|
|
146
|
+
// Extract tool calls from Responses API output (function_call items)
|
|
147
|
+
const funcCallItems = (jsonResponse.output || []).filter(item => item.type === "function_call");
|
|
148
|
+
const toolCalls = funcCallItems.map((item, idx) => ({
|
|
149
|
+
id: item.call_id || `call_${item.name}_${Date.now()}_${idx}`,
|
|
150
|
+
type: "function",
|
|
151
|
+
function: {
|
|
152
|
+
name: item.name,
|
|
153
|
+
arguments: typeof item.arguments === "string" ? item.arguments : JSON.stringify(item.arguments || {})
|
|
154
|
+
}
|
|
155
|
+
}));
|
|
156
|
+
const hasToolCalls = toolCalls.length > 0;
|
|
157
|
+
|
|
158
|
+
if (sourceFormat === FORMATS.ANTIGRAVITY || sourceFormat === FORMATS.GEMINI || sourceFormat === FORMATS.GEMINI_CLI) {
|
|
159
|
+
finalResp = {
|
|
160
|
+
response: {
|
|
161
|
+
candidates: [{ content: { role: "model", parts: [{ text: textContent || "" }] }, finishReason: "STOP", index: 0 }],
|
|
162
|
+
usageMetadata: { promptTokenCount: inTokens, candidatesTokenCount: outTokens, totalTokenCount: inTokens + outTokens },
|
|
163
|
+
modelVersion: model,
|
|
164
|
+
responseId: jsonResponse.id || `resp_${Date.now()}`
|
|
165
|
+
}
|
|
166
|
+
};
|
|
167
|
+
} else {
|
|
168
|
+
const message = { role: "assistant", content: textContent || (hasToolCalls ? null : "") };
|
|
169
|
+
if (hasToolCalls) message.tool_calls = toolCalls;
|
|
170
|
+
const responseDone = jsonResponse.status === "completed" || jsonResponse.status === "done";
|
|
171
|
+
const finishReason = hasToolCalls ? "tool_calls" : (responseDone ? "stop" : (jsonResponse.status || "stop"));
|
|
172
|
+
finalResp = {
|
|
173
|
+
id: jsonResponse.id || `chatcmpl-${Date.now()}`,
|
|
174
|
+
object: "chat.completion",
|
|
175
|
+
created: jsonResponse.created_at || Math.floor(Date.now() / 1000),
|
|
176
|
+
model: jsonResponse.model || model,
|
|
177
|
+
choices: [{ index: 0, message, finish_reason: finishReason }],
|
|
178
|
+
usage: { prompt_tokens: inTokens, completion_tokens: outTokens, total_tokens: inTokens + outTokens }
|
|
179
|
+
};
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
return { success: true, response: new Response(JSON.stringify(finalResp), { headers: { "Content-Type": "application/json", "Access-Control-Allow-Origin": "*" } }) };
|
|
183
|
+
} catch (err) {
|
|
184
|
+
console.error("[ChatCore] Responses API SSE→JSON failed:", err);
|
|
185
|
+
return createErrorResult(HTTP_STATUS.BAD_GATEWAY, "Failed to convert streaming response to JSON");
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
// Standard Chat Completions SSE path
|
|
190
|
+
try {
|
|
191
|
+
const sseText = await providerResponse.text();
|
|
192
|
+
const parsed = parseSSEToOpenAIResponse(sseText, model);
|
|
193
|
+
if (!parsed) return createErrorResult(HTTP_STATUS.BAD_GATEWAY, "Invalid SSE response for non-streaming request");
|
|
194
|
+
|
|
195
|
+
if (onRequestSuccess) await onRequestSuccess();
|
|
196
|
+
|
|
197
|
+
const usage = parsed.usage || {};
|
|
198
|
+
appendLog({ tokens: usage, status: "200 OK" });
|
|
199
|
+
saveUsageStats({ provider, model, tokens: usage, connectionId, apiKey, endpoint: clientRawRequest?.endpoint });
|
|
200
|
+
|
|
201
|
+
const totalLatency = Date.now() - requestStartTime;
|
|
202
|
+
saveRequestDetail(buildRequestDetail({
|
|
203
|
+
...ctx,
|
|
204
|
+
latency: { ttft: totalLatency, total: totalLatency },
|
|
205
|
+
tokens: usage,
|
|
206
|
+
response: {
|
|
207
|
+
content: parsed.choices?.[0]?.message?.content || null,
|
|
208
|
+
thinking: parsed.choices?.[0]?.message?.reasoning_content || null,
|
|
209
|
+
finish_reason: parsed.choices?.[0]?.finish_reason || "unknown"
|
|
210
|
+
},
|
|
211
|
+
status: "success"
|
|
212
|
+
}, { endpoint: clientRawRequest?.endpoint || null })).catch(() => {});
|
|
213
|
+
|
|
214
|
+
// Strip reasoning_content only when content is non-empty.
|
|
215
|
+
// When content is empty (e.g. thinking models that used all tokens for reasoning),
|
|
216
|
+
// reasoning_content is the only useful output and must be preserved.
|
|
217
|
+
// Previously this was unconditional, which broke Qwen3.5, Claude extended thinking, etc.
|
|
218
|
+
if (parsed?.choices) {
|
|
219
|
+
for (const choice of parsed.choices) {
|
|
220
|
+
if (choice?.message?.reasoning_content && choice.message.content) {
|
|
221
|
+
delete choice.message.reasoning_content;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
return { success: true, response: new Response(JSON.stringify(parsed), { headers: { "Content-Type": "application/json", "Access-Control-Allow-Origin": "*" } }) };
|
|
227
|
+
} catch (err) {
|
|
228
|
+
console.error("[ChatCore] Chat Completions SSE→JSON failed:", err);
|
|
229
|
+
return createErrorResult(HTTP_STATUS.BAD_GATEWAY, "Failed to convert streaming response to JSON");
|
|
230
|
+
}
|
|
231
|
+
}
|