@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,70 @@
|
|
|
1
|
+
export function asReasoningRecord(value) {
|
|
2
|
+
return value && typeof value === "object" && !Array.isArray(value) ? value : {};
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
function nonEmptyString(value) {
|
|
6
|
+
return typeof value === "string" && value.length > 0 ? value : "";
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export function extractReasoningDetailsText(value) {
|
|
10
|
+
const record = asReasoningRecord(value);
|
|
11
|
+
if (!Array.isArray(record.reasoning_details)) return "";
|
|
12
|
+
return record.reasoning_details
|
|
13
|
+
.map((detail) => {
|
|
14
|
+
const item = asReasoningRecord(detail);
|
|
15
|
+
return nonEmptyString(item.text) || nonEmptyString(item.content);
|
|
16
|
+
})
|
|
17
|
+
.join("");
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export function getReadableReasoningValue(value) {
|
|
21
|
+
const record = asReasoningRecord(value);
|
|
22
|
+
return nonEmptyString(record.reasoning_content) || nonEmptyString(record.reasoning);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export function getUnsupportedReasoningValue(value) {
|
|
26
|
+
const record = asReasoningRecord(value);
|
|
27
|
+
return (
|
|
28
|
+
nonEmptyString(record.reasoning_text) ||
|
|
29
|
+
nonEmptyString(record.thinking) ||
|
|
30
|
+
nonEmptyString(record.thought) ||
|
|
31
|
+
extractReasoningDetailsText(record)
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export function getAnyReasoningValue(value) {
|
|
36
|
+
return getReadableReasoningValue(value) || getUnsupportedReasoningValue(value);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export function hasUnsupportedReasoningSignal(value) {
|
|
40
|
+
const record = asReasoningRecord(value);
|
|
41
|
+
return Boolean(
|
|
42
|
+
!getReadableReasoningValue(record) &&
|
|
43
|
+
(nonEmptyString(record.reasoning_text) ||
|
|
44
|
+
nonEmptyString(record.thinking) ||
|
|
45
|
+
nonEmptyString(record.thought) ||
|
|
46
|
+
(Array.isArray(record.reasoning_details) && record.reasoning_details.length > 0))
|
|
47
|
+
);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export function hasAnyReasoningSignal(value) {
|
|
51
|
+
const record = asReasoningRecord(value);
|
|
52
|
+
return Boolean(
|
|
53
|
+
getReadableReasoningValue(record) ||
|
|
54
|
+
nonEmptyString(record.reasoning_text) ||
|
|
55
|
+
nonEmptyString(record.thinking) ||
|
|
56
|
+
nonEmptyString(record.thought) ||
|
|
57
|
+
(Array.isArray(record.reasoning_details) && record.reasoning_details.length > 0)
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export function copyOpenAICompatibleReasoningFields(source, target) {
|
|
62
|
+
if (source.reasoning_content !== undefined) target.reasoning_content = source.reasoning_content;
|
|
63
|
+
if (source.reasoning !== undefined) target.reasoning = source.reasoning;
|
|
64
|
+
if (source.reasoning_text !== undefined) target.reasoning_text = source.reasoning_text;
|
|
65
|
+
if (Array.isArray(source.reasoning_details)) target.reasoning_details = source.reasoning_details;
|
|
66
|
+
if (!getReadableReasoningValue(target)) {
|
|
67
|
+
const mirrored = getUnsupportedReasoningValue(source);
|
|
68
|
+
if (mirrored) target.reasoning_content = mirrored;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
// Check if running in Node.js environment (has fs module)
|
|
2
|
+
const isNode = typeof process !== "undefined" && process.versions?.node && typeof window === "undefined";
|
|
3
|
+
|
|
4
|
+
// Check if logging is enabled via environment variable (default: false)
|
|
5
|
+
const LOGGING_ENABLED = typeof process !== "undefined" && process.env?.ENABLE_REQUEST_LOGS === 'true';
|
|
6
|
+
|
|
7
|
+
let fs = null;
|
|
8
|
+
let path = null;
|
|
9
|
+
let LOGS_DIR = null;
|
|
10
|
+
|
|
11
|
+
// Lazy load Node.js modules (avoid top-level await)
|
|
12
|
+
async function ensureNodeModules() {
|
|
13
|
+
if (!isNode || !LOGGING_ENABLED || fs) return;
|
|
14
|
+
try {
|
|
15
|
+
fs = await import("fs");
|
|
16
|
+
path = await import("path");
|
|
17
|
+
LOGS_DIR = path.join(typeof process !== "undefined" && process.cwd ? process.cwd() : ".", "logs");
|
|
18
|
+
} catch {
|
|
19
|
+
// Running in non-Node environment (Worker, Browser, etc.)
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// Format timestamp for folder name: 20251228_143045_123
|
|
24
|
+
function formatTimestamp(date = new Date()) {
|
|
25
|
+
const pad = (n) => String(n).padStart(2, "0");
|
|
26
|
+
const y = date.getFullYear();
|
|
27
|
+
const m = pad(date.getMonth() + 1);
|
|
28
|
+
const d = pad(date.getDate());
|
|
29
|
+
const h = pad(date.getHours());
|
|
30
|
+
const min = pad(date.getMinutes());
|
|
31
|
+
const s = pad(date.getSeconds());
|
|
32
|
+
const ms = String(date.getMilliseconds()).padStart(3, "0");
|
|
33
|
+
return `${y}${m}${d}_${h}${min}${s}_${ms}`;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// Create log session folder: {sourceFormat}_{targetFormat}_{model}_{timestamp}
|
|
37
|
+
async function createLogSession(sourceFormat, targetFormat, model) {
|
|
38
|
+
await ensureNodeModules();
|
|
39
|
+
if (!fs || !LOGS_DIR) return null;
|
|
40
|
+
|
|
41
|
+
try {
|
|
42
|
+
if (!fs.existsSync(LOGS_DIR)) {
|
|
43
|
+
fs.mkdirSync(LOGS_DIR, { recursive: true });
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
const timestamp = formatTimestamp();
|
|
47
|
+
const safeModel = (model || "unknown").replace(/[/:]/g, "-");
|
|
48
|
+
const folderName = `${sourceFormat}_${targetFormat}_${safeModel}_${timestamp}`;
|
|
49
|
+
const sessionPath = path.join(LOGS_DIR, folderName);
|
|
50
|
+
|
|
51
|
+
fs.mkdirSync(sessionPath, { recursive: true });
|
|
52
|
+
|
|
53
|
+
return sessionPath;
|
|
54
|
+
} catch (err) {
|
|
55
|
+
console.log("[LOG] Failed to create log session:", err.message);
|
|
56
|
+
return null;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// Write JSON file
|
|
61
|
+
function writeJsonFile(sessionPath, filename, data) {
|
|
62
|
+
if (!fs || !sessionPath) return;
|
|
63
|
+
|
|
64
|
+
try {
|
|
65
|
+
const filePath = path.join(sessionPath, filename);
|
|
66
|
+
fs.writeFileSync(filePath, JSON.stringify(data, null, 2));
|
|
67
|
+
} catch (err) {
|
|
68
|
+
console.log(`[LOG] Failed to write ${filename}:`, err.message);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// Mask sensitive data in headers (DISABLED - keep full token for testing)
|
|
73
|
+
function maskSensitiveHeaders(headers) {
|
|
74
|
+
if (!headers) return {};
|
|
75
|
+
return { ...headers };
|
|
76
|
+
|
|
77
|
+
// Old masking code (disabled):
|
|
78
|
+
// const masked = { ...headers };
|
|
79
|
+
// const sensitiveKeys = ["authorization", "x-api-key", "cookie", "token"];
|
|
80
|
+
//
|
|
81
|
+
// for (const key of Object.keys(masked)) {
|
|
82
|
+
// const lowerKey = key.toLowerCase();
|
|
83
|
+
// if (sensitiveKeys.some(sk => lowerKey.includes(sk))) {
|
|
84
|
+
// const value = masked[key];
|
|
85
|
+
// if (value && value.length > 20) {
|
|
86
|
+
// masked[key] = value.slice(0, 10) + "..." + value.slice(-5);
|
|
87
|
+
// }
|
|
88
|
+
// }
|
|
89
|
+
// }
|
|
90
|
+
// return masked;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// No-op logger when logging is disabled
|
|
94
|
+
function createNoOpLogger() {
|
|
95
|
+
return {
|
|
96
|
+
sessionPath: null,
|
|
97
|
+
logClientRawRequest() {},
|
|
98
|
+
logRawRequest() {},
|
|
99
|
+
logOpenAIRequest() {},
|
|
100
|
+
logTargetRequest() {},
|
|
101
|
+
logProviderResponse() {},
|
|
102
|
+
appendProviderChunk() {},
|
|
103
|
+
appendOpenAIChunk() {},
|
|
104
|
+
logConvertedResponse() {},
|
|
105
|
+
appendConvertedChunk() {},
|
|
106
|
+
logError() {}
|
|
107
|
+
};
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Create a new log session and return logger functions
|
|
112
|
+
* @param {string} sourceFormat - Source format from client (claude, openai, etc.)
|
|
113
|
+
* @param {string} targetFormat - Target format to provider (antigravity, gemini-cli, etc.)
|
|
114
|
+
* @param {string} model - Model name
|
|
115
|
+
* @returns {Promise<object>} Promise that resolves to logger object with methods to log each stage
|
|
116
|
+
*/
|
|
117
|
+
export async function createRequestLogger(sourceFormat, targetFormat, model) {
|
|
118
|
+
// Return no-op logger if logging is disabled
|
|
119
|
+
if (!LOGGING_ENABLED) {
|
|
120
|
+
return createNoOpLogger();
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// Wait for session to be created before returning logger
|
|
124
|
+
const sessionPath = await createLogSession(sourceFormat, targetFormat, model);
|
|
125
|
+
|
|
126
|
+
return {
|
|
127
|
+
get sessionPath() { return sessionPath; },
|
|
128
|
+
|
|
129
|
+
// 1. Log client raw request (before any conversion)
|
|
130
|
+
logClientRawRequest(endpoint, body, headers = {}) {
|
|
131
|
+
writeJsonFile(sessionPath, "1_req_client.json", {
|
|
132
|
+
timestamp: new Date().toISOString(),
|
|
133
|
+
endpoint,
|
|
134
|
+
headers: maskSensitiveHeaders(headers),
|
|
135
|
+
body
|
|
136
|
+
});
|
|
137
|
+
},
|
|
138
|
+
|
|
139
|
+
// 2. Log raw request from client (after initial conversion like responsesApi)
|
|
140
|
+
logRawRequest(body, headers = {}) {
|
|
141
|
+
writeJsonFile(sessionPath, "2_req_source.json", {
|
|
142
|
+
timestamp: new Date().toISOString(),
|
|
143
|
+
headers: maskSensitiveHeaders(headers),
|
|
144
|
+
body
|
|
145
|
+
});
|
|
146
|
+
},
|
|
147
|
+
|
|
148
|
+
// 3. Log OpenAI intermediate format (source → openai)
|
|
149
|
+
logOpenAIRequest(body) {
|
|
150
|
+
writeJsonFile(sessionPath, "3_req_openai.json", {
|
|
151
|
+
timestamp: new Date().toISOString(),
|
|
152
|
+
body
|
|
153
|
+
});
|
|
154
|
+
},
|
|
155
|
+
|
|
156
|
+
// 4. Log target format request (openai → target)
|
|
157
|
+
logTargetRequest(url, headers, body) {
|
|
158
|
+
writeJsonFile(sessionPath, "4_req_target.json", {
|
|
159
|
+
timestamp: new Date().toISOString(),
|
|
160
|
+
url,
|
|
161
|
+
headers: maskSensitiveHeaders(headers),
|
|
162
|
+
body
|
|
163
|
+
});
|
|
164
|
+
},
|
|
165
|
+
|
|
166
|
+
// 5. Log provider response (for non-streaming or error)
|
|
167
|
+
logProviderResponse(status, statusText, headers, body) {
|
|
168
|
+
const filename = "5_res_provider.json";
|
|
169
|
+
writeJsonFile(sessionPath, filename, {
|
|
170
|
+
timestamp: new Date().toISOString(),
|
|
171
|
+
status,
|
|
172
|
+
statusText,
|
|
173
|
+
headers: headers ? (typeof headers.entries === "function" ? Object.fromEntries(headers.entries()) : headers) : {},
|
|
174
|
+
body
|
|
175
|
+
});
|
|
176
|
+
},
|
|
177
|
+
|
|
178
|
+
// 5. Append streaming chunk to provider response
|
|
179
|
+
appendProviderChunk(chunk) {
|
|
180
|
+
if (!fs || !sessionPath) return;
|
|
181
|
+
try {
|
|
182
|
+
const filePath = path.join(sessionPath, "5_res_provider.txt");
|
|
183
|
+
fs.appendFileSync(filePath, chunk);
|
|
184
|
+
} catch (err) {
|
|
185
|
+
// Ignore append errors
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
|
|
189
|
+
// 6. Append OpenAI intermediate chunks (target → openai)
|
|
190
|
+
appendOpenAIChunk(chunk) {
|
|
191
|
+
if (!fs || !sessionPath) return;
|
|
192
|
+
try {
|
|
193
|
+
const filePath = path.join(sessionPath, "6_res_openai.txt");
|
|
194
|
+
fs.appendFileSync(filePath, chunk);
|
|
195
|
+
} catch (err) {
|
|
196
|
+
// Ignore append errors
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
|
|
200
|
+
// 7. Log converted response to client (for non-streaming)
|
|
201
|
+
logConvertedResponse(body) {
|
|
202
|
+
writeJsonFile(sessionPath, "7_res_client.json", {
|
|
203
|
+
timestamp: new Date().toISOString(),
|
|
204
|
+
body
|
|
205
|
+
});
|
|
206
|
+
},
|
|
207
|
+
|
|
208
|
+
// 7. Append streaming chunk to converted response
|
|
209
|
+
appendConvertedChunk(chunk) {
|
|
210
|
+
if (!fs || !sessionPath) return;
|
|
211
|
+
try {
|
|
212
|
+
const filePath = path.join(sessionPath, "7_res_client.txt");
|
|
213
|
+
fs.appendFileSync(filePath, chunk);
|
|
214
|
+
} catch (err) {
|
|
215
|
+
// Ignore append errors
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
|
|
219
|
+
// 6. Log error
|
|
220
|
+
logError(error, requestBody = null) {
|
|
221
|
+
writeJsonFile(sessionPath, "6_error.json", {
|
|
222
|
+
timestamp: new Date().toISOString(),
|
|
223
|
+
error: error?.message || String(error),
|
|
224
|
+
stack: error?.stack,
|
|
225
|
+
requestBody
|
|
226
|
+
});
|
|
227
|
+
}
|
|
228
|
+
};
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
// Legacy functions for backward compatibility
|
|
232
|
+
export function logRequest() {}
|
|
233
|
+
export function logResponse() {}
|
|
234
|
+
export function logError(provider, { error, url, model, requestBody }) {
|
|
235
|
+
if (!fs || !LOGS_DIR) return;
|
|
236
|
+
|
|
237
|
+
try {
|
|
238
|
+
if (!fs.existsSync(LOGS_DIR)) {
|
|
239
|
+
fs.mkdirSync(LOGS_DIR, { recursive: true });
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
const date = new Date().toISOString().split("T")[0];
|
|
243
|
+
const logPath = path.join(LOGS_DIR, `${provider}-${date}.log`);
|
|
244
|
+
|
|
245
|
+
const logEntry = {
|
|
246
|
+
timestamp: new Date().toISOString(),
|
|
247
|
+
type: "error",
|
|
248
|
+
provider,
|
|
249
|
+
model,
|
|
250
|
+
url,
|
|
251
|
+
error: error?.message || String(error),
|
|
252
|
+
stack: error?.stack,
|
|
253
|
+
requestBody
|
|
254
|
+
};
|
|
255
|
+
|
|
256
|
+
fs.appendFileSync(logPath, JSON.stringify(logEntry) + "\n");
|
|
257
|
+
} catch (err) {
|
|
258
|
+
console.log("[LOG] Failed to write error log:", err.message);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
function textPartTypeForRole(role) {
|
|
2
|
+
return role === "assistant" ? "output_text" : "input_text";
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
function normalizeCodexMessageContentPart(part, role) {
|
|
6
|
+
if (typeof part === "string") return { type: textPartTypeForRole(role), text: part };
|
|
7
|
+
if (!part || typeof part !== "object" || Array.isArray(part)) return part;
|
|
8
|
+
|
|
9
|
+
const record = { ...part };
|
|
10
|
+
if (record.type === "text") record.type = textPartTypeForRole(role);
|
|
11
|
+
return record;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
function buildCodexMessageContent(item, role) {
|
|
15
|
+
if (Array.isArray(item.content)) {
|
|
16
|
+
return item.content.map((part) => normalizeCodexMessageContentPart(part, role));
|
|
17
|
+
}
|
|
18
|
+
if (typeof item.content === "string") {
|
|
19
|
+
return [{ type: textPartTypeForRole(role), text: item.content }];
|
|
20
|
+
}
|
|
21
|
+
if (typeof item.text === "string") {
|
|
22
|
+
return [{ type: textPartTypeForRole(role), text: item.text }];
|
|
23
|
+
}
|
|
24
|
+
return [];
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
function normalizeCodexResponsesInputItem(itemValue) {
|
|
28
|
+
if (typeof itemValue === "string") {
|
|
29
|
+
return { type: "message", role: "user", content: [{ type: "input_text", text: itemValue }] };
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
if (!itemValue || typeof itemValue !== "object" || Array.isArray(itemValue)) return itemValue;
|
|
33
|
+
|
|
34
|
+
const item = { ...itemValue };
|
|
35
|
+
const role = typeof item.role === "string" ? item.role : "user";
|
|
36
|
+
const type = typeof item.type === "string" ? item.type : "";
|
|
37
|
+
|
|
38
|
+
if (!type && item.content === undefined && typeof item.text === "string") {
|
|
39
|
+
return { type: "message", role, content: [{ type: textPartTypeForRole(role), text: item.text }] };
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
if (!type && role) item.type = "message";
|
|
43
|
+
if (item.type === "message" || (!type && item.content !== undefined)) {
|
|
44
|
+
item.role = role;
|
|
45
|
+
item.content = buildCodexMessageContent(item, role);
|
|
46
|
+
item.type = "message";
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
return item;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function normalizeCodexResponsesInput(body) {
|
|
53
|
+
if (Array.isArray(body.input)) {
|
|
54
|
+
body.input = body.input.map(normalizeCodexResponsesInputItem);
|
|
55
|
+
return;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// undefined → leave as-is; null → empty list (not [null], which would surface a bogus
|
|
59
|
+
// item downstream); anything else → wrap the single item.
|
|
60
|
+
if (body.input === undefined) return;
|
|
61
|
+
body.input = body.input === null ? [] : [normalizeCodexResponsesInputItem(body.input)];
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
function normalizeResponsesInputItemForChat(value) {
|
|
65
|
+
if (typeof value === "string") {
|
|
66
|
+
return { type: "message", role: "user", content: [{ type: "input_text", text: value }] };
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
if (!value || typeof value !== "object" || Array.isArray(value)) return value;
|
|
70
|
+
|
|
71
|
+
const item = { ...value };
|
|
72
|
+
const hasType = typeof item.type === "string" && item.type.length > 0;
|
|
73
|
+
const hasRole = typeof item.role === "string" && item.role.length > 0;
|
|
74
|
+
if (hasType || hasRole) {
|
|
75
|
+
if (!hasType && hasRole) item.type = "message";
|
|
76
|
+
return item;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
if (typeof item.text === "string") {
|
|
80
|
+
return { type: "message", role: "user", content: [{ type: "input_text", text: item.text }] };
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
if (item.content !== undefined) return { type: "message", role: "user", content: item.content };
|
|
84
|
+
return item;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export function normalizeResponsesInputForChat(input) {
|
|
88
|
+
// == null matches both undefined and null (neither is a spec-valid input) → empty list.
|
|
89
|
+
if (input == null) return [];
|
|
90
|
+
if (Array.isArray(input)) return input.map(normalizeResponsesInputItemForChat);
|
|
91
|
+
return [normalizeResponsesInputItemForChat(input)];
|
|
92
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { isOpenAIResponsesStoreEnabled } from '../../../dist/lib/providers/requestDefaults.js';
|
|
2
|
+
import {
|
|
3
|
+
DEFAULT_RESPONSES_PREVIOUS_RESPONSE_ID_MODE,
|
|
4
|
+
RESPONSES_PREVIOUS_RESPONSE_ID_MODES
|
|
5
|
+
} from '../../dist/shared/constants/responsesPreviousResponseId.js';
|
|
6
|
+
import { FORMATS } from "../translator/formats.ts";
|
|
7
|
+
const MODE_SET = new Set(RESPONSES_PREVIOUS_RESPONSE_ID_MODES);
|
|
8
|
+
function toRecord(value) {
|
|
9
|
+
return value && typeof value === "object" && !Array.isArray(value) ? value : {};
|
|
10
|
+
}
|
|
11
|
+
function normalizeResponsesPreviousResponseIdMode(value) {
|
|
12
|
+
if (typeof value === "string" && MODE_SET.has(value)) {
|
|
13
|
+
return value;
|
|
14
|
+
}
|
|
15
|
+
return DEFAULT_RESPONSES_PREVIOUS_RESPONSE_ID_MODE;
|
|
16
|
+
}
|
|
17
|
+
function shouldStripPreviousResponseId({
|
|
18
|
+
mode,
|
|
19
|
+
sourceFormat,
|
|
20
|
+
targetFormat,
|
|
21
|
+
credentials
|
|
22
|
+
}) {
|
|
23
|
+
const normalizedMode = normalizeResponsesPreviousResponseIdMode(mode);
|
|
24
|
+
if (normalizedMode === "preserve") return false;
|
|
25
|
+
if (normalizedMode === "strip") return true;
|
|
26
|
+
const isResponsesSource = sourceFormat === FORMATS.OPENAI_RESPONSES;
|
|
27
|
+
const isResponsesTarget = targetFormat === FORMATS.OPENAI_RESPONSES;
|
|
28
|
+
if (!isResponsesSource && !isResponsesTarget) return false;
|
|
29
|
+
const providerSpecificData = toRecord(toRecord(credentials).providerSpecificData);
|
|
30
|
+
return !isOpenAIResponsesStoreEnabled(providerSpecificData);
|
|
31
|
+
}
|
|
32
|
+
function applyResponsesPreviousResponseIdPolicy(body, options) {
|
|
33
|
+
const mode = normalizeResponsesPreviousResponseIdMode(options.mode);
|
|
34
|
+
if (!body || typeof body !== "object" || Array.isArray(body)) {
|
|
35
|
+
return { body, stripped: false, mode };
|
|
36
|
+
}
|
|
37
|
+
const record = body;
|
|
38
|
+
if (!Object.hasOwn(record, "previous_response_id")) {
|
|
39
|
+
return { body, stripped: false, mode };
|
|
40
|
+
}
|
|
41
|
+
if (!shouldStripPreviousResponseId({ ...options, mode })) {
|
|
42
|
+
return { body, stripped: false, mode };
|
|
43
|
+
}
|
|
44
|
+
const next = { ...record };
|
|
45
|
+
delete next.previous_response_id;
|
|
46
|
+
return { body: next, stripped: true, mode };
|
|
47
|
+
}
|
|
48
|
+
export {
|
|
49
|
+
applyResponsesPreviousResponseIdPolicy,
|
|
50
|
+
normalizeResponsesPreviousResponseIdMode,
|
|
51
|
+
shouldStripPreviousResponseId
|
|
52
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
// Helpers for OpenAI Responses API streaming termination + event framing
|
|
2
|
+
import { FORMATS } from "../translator/formats.js";
|
|
3
|
+
import { formatSSE } from "./streamHelpers.js";
|
|
4
|
+
|
|
5
|
+
// Responses API events that signal the stream has reached a terminal state
|
|
6
|
+
const OPENAI_RESPONSES_TERMINAL_EVENTS = new Set([
|
|
7
|
+
"response.completed",
|
|
8
|
+
"response.failed",
|
|
9
|
+
"error"
|
|
10
|
+
]);
|
|
11
|
+
|
|
12
|
+
export function getOpenAIResponsesEventName(eventName, chunk) {
|
|
13
|
+
if (eventName) return eventName;
|
|
14
|
+
if (chunk && typeof chunk.type === "string") return chunk.type;
|
|
15
|
+
return null;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export function isOpenAIResponsesTerminalEvent(eventName, chunk) {
|
|
19
|
+
const type = getOpenAIResponsesEventName(eventName, chunk);
|
|
20
|
+
if (OPENAI_RESPONSES_TERMINAL_EVENTS.has(type)) return true;
|
|
21
|
+
const status = chunk?.response?.status;
|
|
22
|
+
return status === "completed" || status === "failed";
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const sharedEncoder = new TextEncoder();
|
|
26
|
+
|
|
27
|
+
// Encoded response.failed + [DONE] payload for aborted/stalled Responses passthrough streams
|
|
28
|
+
export function buildAbortedResponsesTerminalBytes() {
|
|
29
|
+
return sharedEncoder.encode(`${formatIncompleteOpenAIResponsesStreamFailure()}data: [DONE]\n\n`);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// Synthesize a response.failed event for streams that close without a terminal event
|
|
33
|
+
export function formatIncompleteOpenAIResponsesStreamFailure() {
|
|
34
|
+
return formatSSE({
|
|
35
|
+
event: "response.failed",
|
|
36
|
+
data: {
|
|
37
|
+
type: "response.failed",
|
|
38
|
+
response: {
|
|
39
|
+
id: `resp_${Date.now()}`,
|
|
40
|
+
status: "failed",
|
|
41
|
+
error: {
|
|
42
|
+
type: "stream_error",
|
|
43
|
+
code: "stream_disconnected",
|
|
44
|
+
message: "stream closed before response.completed"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}, FORMATS.OPENAI_RESPONSES);
|
|
49
|
+
}
|