@fudrouter/fsrouter 0.6.64 → 0.6.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/open-sse/AGENTS.md +39 -0
- package/open-sse/config/anthropicHeaders.js +87 -0
- package/open-sse/config/appConstants.js +238 -0
- package/open-sse/config/audioRegistry.js +506 -0
- package/open-sse/config/cliFingerprints.js +304 -0
- package/open-sse/config/codexInstructions.js +119 -0
- package/open-sse/config/codexQuotaScopes.js +42 -0
- package/open-sse/config/constants.js +4 -0
- package/open-sse/config/contextEditing.js +68 -0
- package/open-sse/config/credentialLoader.js +83 -0
- package/open-sse/config/defaultThinkingSignature.js +12 -0
- package/open-sse/config/embeddingRegistry.js +264 -0
- package/open-sse/config/errorConfig.js +96 -0
- package/open-sse/config/freeModelCatalog.data.js +121 -0
- package/open-sse/config/freeModelCatalog.js +90 -0
- package/open-sse/config/freeTierCatalog.js +81 -0
- package/open-sse/config/googleTtsLanguages.js +62 -0
- package/open-sse/config/imageParamDefs.js +360 -0
- package/open-sse/config/imageRegistry.js +493 -0
- package/open-sse/config/kiroConstants.js +268 -0
- package/open-sse/config/mediaConfig.js +27 -0
- package/open-sse/config/mediaServiceKinds.js +71 -0
- package/open-sse/config/models.js +13 -0
- package/open-sse/config/moderationRegistry.js +71 -0
- package/open-sse/config/musicRegistry.js +99 -0
- package/open-sse/config/ocrRegistry.js +61 -0
- package/open-sse/config/ollamaModels.js +19 -0
- package/open-sse/config/providerErrorRules.js +114 -0
- package/open-sse/config/providerFieldStrips.js +35 -0
- package/open-sse/config/providerHeaderProfiles.js +191 -0
- package/open-sse/config/providerModels.js +106 -0
- package/open-sse/config/providerRegistry.js +16 -0
- package/open-sse/config/providers.js +19 -0
- package/open-sse/config/registryUtils.js +106 -0
- package/open-sse/config/rerankRegistry.js +177 -0
- package/open-sse/config/runtimeConfig.js +96 -0
- package/open-sse/config/runway.js +39 -0
- package/open-sse/config/searchRegistry.js +153 -0
- package/open-sse/config/toolCloaking.js +199 -0
- package/open-sse/config/ttsModels.js +129 -0
- package/open-sse/config/videoRegistry.js +207 -0
- package/open-sse/executors/adapta-web.js +435 -0
- package/open-sse/executors/antigravity.js +534 -0
- package/open-sse/executors/antigravityUpstreamError.js +13 -0
- package/open-sse/executors/auggie.js +437 -0
- package/open-sse/executors/azure-openai.js +32 -0
- package/open-sse/executors/azure.js +57 -0
- package/open-sse/executors/base.js +181 -0
- package/open-sse/executors/bedrock.js +633 -0
- package/open-sse/executors/blackbox-web.js +578 -0
- package/open-sse/executors/chatgpt-web.js +2042 -0
- package/open-sse/executors/chipotle.js +357 -0
- package/open-sse/executors/claude-web-with-auto-refresh.js +73 -0
- package/open-sse/executors/claude-web.js +586 -0
- package/open-sse/executors/cliproxyapi.js +296 -0
- package/open-sse/executors/cloudflare-ai.js +46 -0
- package/open-sse/executors/codebuddy-cn.js +40 -0
- package/open-sse/executors/codex.js +1324 -0
- package/open-sse/executors/commandCode.js +558 -0
- package/open-sse/executors/commandcode.js +88 -0
- package/open-sse/executors/copilot-m365-connection.js +176 -0
- package/open-sse/executors/copilot-m365-frames.js +192 -0
- package/open-sse/executors/copilot-m365-web.js +299 -0
- package/open-sse/executors/copilot-web.js +580 -0
- package/open-sse/executors/cursor.js +795 -0
- package/open-sse/executors/deepseek-web-with-auto-refresh.js +150 -0
- package/open-sse/executors/deepseek-web.js +875 -0
- package/open-sse/executors/default.js +430 -0
- package/open-sse/executors/devin-cli.js +351 -0
- package/open-sse/executors/doubao-web.js +550 -0
- package/open-sse/executors/duckduckgo-web.js +629 -0
- package/open-sse/executors/forceResponsesUpstream.js +33 -0
- package/open-sse/executors/gemini-business.js +320 -0
- package/open-sse/executors/gemini-cli.js +89 -0
- package/open-sse/executors/gemini-web.js +297 -0
- package/open-sse/executors/github.js +379 -0
- package/open-sse/executors/gitlab.js +569 -0
- package/open-sse/executors/glm.js +361 -0
- package/open-sse/executors/grok-cli.js +119 -0
- package/open-sse/executors/grok-web.js +345 -0
- package/open-sse/executors/huggingchat.js +467 -0
- package/open-sse/executors/iflow.js +108 -0
- package/open-sse/executors/index.js +78 -0
- package/open-sse/executors/inner-ai.js +527 -0
- package/open-sse/executors/kimchi.js +123 -0
- package/open-sse/executors/kimi-web.js +325 -0
- package/open-sse/executors/kimi.js +97 -0
- package/open-sse/executors/kiro.js +503 -0
- package/open-sse/executors/kiroThinking.js +44 -0
- package/open-sse/executors/lmarena.js +395 -0
- package/open-sse/executors/mimo-free.js +167 -0
- package/open-sse/executors/mimocode.js +392 -0
- package/open-sse/executors/ninerouter.js +155 -0
- package/open-sse/executors/nlpcloud.js +438 -0
- package/open-sse/executors/ollama-local.js +14 -0
- package/open-sse/executors/opencode-go.js +41 -0
- package/open-sse/executors/opencode.js +32 -0
- package/open-sse/executors/perplexity-web.js +581 -0
- package/open-sse/executors/poe-web.js +133 -0
- package/open-sse/executors/pollinations.js +95 -0
- package/open-sse/executors/puter.js +31 -0
- package/open-sse/executors/qoder.js +448 -0
- package/open-sse/executors/qwen-web.js +372 -0
- package/open-sse/executors/qwen.js +129 -0
- package/open-sse/executors/t3-chat-web.js +417 -0
- package/open-sse/executors/theoldllm.js +290 -0
- package/open-sse/executors/trae.js +418 -0
- package/open-sse/executors/v0-vercel-web.js +141 -0
- package/open-sse/executors/venice-web.js +142 -0
- package/open-sse/executors/vertex.js +131 -0
- package/open-sse/executors/vertexMedia.js +236 -0
- package/open-sse/executors/windsurf.js +560 -0
- package/open-sse/executors/xai.js +46 -0
- package/open-sse/executors/xiaomi-tokenplan.js +19 -0
- package/open-sse/executors/yuanbao-web.js +385 -0
- package/open-sse/executors/zed-hosted.js +281 -0
- package/open-sse/executors/zenmux-free.js +247 -0
- package/open-sse/handlers/audioSpeech.js +759 -0
- package/open-sse/handlers/audioTranscription.js +395 -0
- package/open-sse/handlers/audioTranslation.js +181 -0
- package/open-sse/handlers/chatCore/nonStreamingHandler.js +300 -0
- package/open-sse/handlers/chatCore/requestDetail.js +102 -0
- package/open-sse/handlers/chatCore/sseToJsonHandler.js +231 -0
- package/open-sse/handlers/chatCore/streamingHandler.js +95 -0
- package/open-sse/handlers/chatCore.js +404 -0
- package/open-sse/handlers/embeddingProviders/_base.js +4 -0
- package/open-sse/handlers/embeddingProviders/gemini.js +54 -0
- package/open-sse/handlers/embeddingProviders/index.js +23 -0
- package/open-sse/handlers/embeddingProviders/openai.js +39 -0
- package/open-sse/handlers/embeddingProviders/openaiCompatNode.js +13 -0
- package/open-sse/handlers/embeddingsCore.js +126 -0
- package/open-sse/handlers/fetch/index.js +237 -0
- package/open-sse/handlers/imageGenerationCore.js +230 -0
- package/open-sse/handlers/imageProviders/_base.js +31 -0
- package/open-sse/handlers/imageProviders/antigravity.js +73 -0
- package/open-sse/handlers/imageProviders/blackForestLabs.js +63 -0
- package/open-sse/handlers/imageProviders/cloudflareAi.js +207 -0
- package/open-sse/handlers/imageProviders/codex.js +217 -0
- package/open-sse/handlers/imageProviders/comfyui.js +25 -0
- package/open-sse/handlers/imageProviders/falAi.js +62 -0
- package/open-sse/handlers/imageProviders/gemini.js +40 -0
- package/open-sse/handlers/imageProviders/huggingface.js +38 -0
- package/open-sse/handlers/imageProviders/index.js +44 -0
- package/open-sse/handlers/imageProviders/leonardo.js +435 -0
- package/open-sse/handlers/imageProviders/nanobanana.js +79 -0
- package/open-sse/handlers/imageProviders/openai.js +61 -0
- package/open-sse/handlers/imageProviders/runwayml.js +72 -0
- package/open-sse/handlers/imageProviders/sdwebui.js +36 -0
- package/open-sse/handlers/imageProviders/stabilityAi.js +59 -0
- package/open-sse/handlers/imageProviders/weavy.js +222 -0
- package/open-sse/handlers/moderations.js +92 -0
- package/open-sse/handlers/ocr.js +89 -0
- package/open-sse/handlers/rerank.js +223 -0
- package/open-sse/handlers/responseSanitizer/reasoning.js +144 -0
- package/open-sse/handlers/responsesHandler.js +99 -0
- package/open-sse/handlers/search/callers.js +371 -0
- package/open-sse/handlers/search/chatSearch.js +409 -0
- package/open-sse/handlers/search/index.js +201 -0
- package/open-sse/handlers/search/normalizers.js +223 -0
- package/open-sse/handlers/search.js +1056 -0
- package/open-sse/handlers/sseParser.js +469 -0
- package/open-sse/handlers/sttCore.js +193 -0
- package/open-sse/handlers/ttsCore.js +74 -0
- package/open-sse/handlers/ttsProviders/_base.js +39 -0
- package/open-sse/handlers/ttsProviders/edgeTts.js +89 -0
- package/open-sse/handlers/ttsProviders/elevenlabs.js +48 -0
- package/open-sse/handlers/ttsProviders/gemini.js +117 -0
- package/open-sse/handlers/ttsProviders/genericFormats.js +169 -0
- package/open-sse/handlers/ttsProviders/googleTts.js +54 -0
- package/open-sse/handlers/ttsProviders/index.js +50 -0
- package/open-sse/handlers/ttsProviders/localDevice.js +87 -0
- package/open-sse/handlers/ttsProviders/minimax.js +59 -0
- package/open-sse/handlers/ttsProviders/openai.js +30 -0
- package/open-sse/handlers/ttsProviders/openrouter.js +70 -0
- package/open-sse/handlers/usageExtractor.js +93 -0
- package/open-sse/handlers/videoGenerationCore.js +119 -0
- package/open-sse/handlers/videoProviders/index.js +22 -0
- package/open-sse/handlers/videoProviders/leonardo.js +511 -0
- package/open-sse/handlers/videoProviders/weavy.js +198 -0
- package/open-sse/handlers/webFetch.js +200 -0
- package/open-sse/index.js +79 -0
- package/open-sse/mcp-server/audit.js +283 -0
- package/open-sse/mcp-server/catalog.js +184 -0
- package/open-sse/mcp-server/descriptionCompressor.js +175 -0
- package/open-sse/mcp-server/httpAuthContext.js +32 -0
- package/open-sse/mcp-server/httpTransport.js +229 -0
- package/open-sse/mcp-server/index.js +33 -0
- package/open-sse/mcp-server/mcpCallerIdentity.js +21 -0
- package/open-sse/mcp-server/runtimeHeartbeat.js +110 -0
- package/open-sse/mcp-server/schemas/a2a.js +153 -0
- package/open-sse/mcp-server/schemas/audit.js +17 -0
- package/open-sse/mcp-server/schemas/index.js +166 -0
- package/open-sse/mcp-server/schemas/pickFastestModel.js +90 -0
- package/open-sse/mcp-server/schemas/toolDefinition.js +0 -0
- package/open-sse/mcp-server/schemas/toolSearch.js +32 -0
- package/open-sse/mcp-server/schemas/tools.js +1219 -0
- package/open-sse/mcp-server/scopeEnforcement.js +80 -0
- package/open-sse/mcp-server/server.js +1168 -0
- package/open-sse/mcp-server/toolCardinality.js +78 -0
- package/open-sse/mcp-server/toolSearch/catalog.js +66 -0
- package/open-sse/mcp-server/toolSearch/handler.js +20 -0
- package/open-sse/mcp-server/toolSearch/index.js +10 -0
- package/open-sse/mcp-server/toolSearch/register.js +21 -0
- package/open-sse/mcp-server/toolSearch/search.js +55 -0
- package/open-sse/mcp-server/toolSearch/signature.js +67 -0
- package/open-sse/mcp-server/tools/advancedTools.js +893 -0
- package/open-sse/mcp-server/tools/agentSkillTools.js +69 -0
- package/open-sse/mcp-server/tools/compressionTools.js +309 -0
- package/open-sse/mcp-server/tools/gamificationTools.js +134 -0
- package/open-sse/mcp-server/tools/githubSkillTools.js +102 -0
- package/open-sse/mcp-server/tools/memoryTools.js +118 -0
- package/open-sse/mcp-server/tools/notionTools.js +101 -0
- package/open-sse/mcp-server/tools/obsidianTools.js +307 -0
- package/open-sse/mcp-server/tools/pickFastestModel.js +223 -0
- package/open-sse/mcp-server/tools/pluginTools.js +181 -0
- package/open-sse/mcp-server/tools/poolTools.js +139 -0
- package/open-sse/mcp-server/tools/skillTools.js +113 -0
- package/open-sse/package.json +10 -0
- package/open-sse/providers/REGISTRY_TEMPLATE.js +98 -0
- package/open-sse/providers/capabilities.js +293 -0
- package/open-sse/providers/index.js +51 -0
- package/open-sse/providers/models/helpers.js +20 -0
- package/open-sse/providers/models/namePatterns.js +33 -0
- package/open-sse/providers/models/schema.js +40 -0
- package/open-sse/providers/pricing.js +308 -0
- package/open-sse/providers/registry/alicode-intl.js +30 -0
- package/open-sse/providers/registry/alicode.js +31 -0
- package/open-sse/providers/registry/anthropic.js +37 -0
- package/open-sse/providers/registry/antigravity.js +81 -0
- package/open-sse/providers/registry/assemblyai.js +38 -0
- package/open-sse/providers/registry/aws-polly.js +45 -0
- package/open-sse/providers/registry/azure.js +21 -0
- package/open-sse/providers/registry/black-forest-labs.js +32 -0
- package/open-sse/providers/registry/blackbox.js +41 -0
- package/open-sse/providers/registry/brave-search.js +35 -0
- package/open-sse/providers/registry/byteplus.js +35 -0
- package/open-sse/providers/registry/cartesia.js +36 -0
- package/open-sse/providers/registry/cerebras.js +31 -0
- package/open-sse/providers/registry/chutes.js +24 -0
- package/open-sse/providers/registry/claude.js +87 -0
- package/open-sse/providers/registry/cline.js +51 -0
- package/open-sse/providers/registry/clinepass.js +57 -0
- package/open-sse/providers/registry/cloudflare-ai.js +55 -0
- package/open-sse/providers/registry/codebuddy-cn.js +77 -0
- package/open-sse/providers/registry/codex.js +100 -0
- package/open-sse/providers/registry/cohere.js +27 -0
- package/open-sse/providers/registry/comfyui.js +20 -0
- package/open-sse/providers/registry/commandcode.js +43 -0
- package/open-sse/providers/registry/coqui.js +30 -0
- package/open-sse/providers/registry/cursor.js +58 -0
- package/open-sse/providers/registry/deepgram.js +33 -0
- package/open-sse/providers/registry/deepseek.js +51 -0
- package/open-sse/providers/registry/digitalocean.js +92 -0
- package/open-sse/providers/registry/edge-tts.js +24 -0
- package/open-sse/providers/registry/elevenlabs.js +35 -0
- package/open-sse/providers/registry/exa.js +50 -0
- package/open-sse/providers/registry/fal-ai.js +34 -0
- package/open-sse/providers/registry/featherless.js +34 -0
- package/open-sse/providers/registry/firecrawl.js +34 -0
- package/open-sse/providers/registry/fireworks.js +29 -0
- package/open-sse/providers/registry/gemini-cli.js +58 -0
- package/open-sse/providers/registry/gemini.js +83 -0
- package/open-sse/providers/registry/github.js +88 -0
- package/open-sse/providers/registry/gitlab.js +32 -0
- package/open-sse/providers/registry/glm-cn.js +35 -0
- package/open-sse/providers/registry/glm.js +58 -0
- package/open-sse/providers/registry/google-pse.js +35 -0
- package/open-sse/providers/registry/google-tts.js +24 -0
- package/open-sse/providers/registry/grok-cli.js +86 -0
- package/open-sse/providers/registry/grok-web.js +39 -0
- package/open-sse/providers/registry/groq.js +37 -0
- package/open-sse/providers/registry/huggingface.js +34 -0
- package/open-sse/providers/registry/hyperbolic.js +35 -0
- package/open-sse/providers/registry/ibm-bob.js +27 -0
- package/open-sse/providers/registry/iflow.js +52 -0
- package/open-sse/providers/registry/index.js +210 -0
- package/open-sse/providers/registry/inworld.js +36 -0
- package/open-sse/providers/registry/jina-ai.js +42 -0
- package/open-sse/providers/registry/jina-reader.js +34 -0
- package/open-sse/providers/registry/kilocode.js +51 -0
- package/open-sse/providers/registry/kimchi.js +49 -0
- package/open-sse/providers/registry/kimi-coding.js +65 -0
- package/open-sse/providers/registry/kimi.js +56 -0
- package/open-sse/providers/registry/kiro.js +115 -0
- package/open-sse/providers/registry/linkup.js +34 -0
- package/open-sse/providers/registry/local-device.js +24 -0
- package/open-sse/providers/registry/mimo-free.js +24 -0
- package/open-sse/providers/registry/minimax-cn.js +76 -0
- package/open-sse/providers/registry/minimax.js +83 -0
- package/open-sse/providers/registry/mistral.js +34 -0
- package/open-sse/providers/registry/mmf.js +19 -0
- package/open-sse/providers/registry/nanobanana.js +35 -0
- package/open-sse/providers/registry/nebius.js +27 -0
- package/open-sse/providers/registry/nvidia.js +43 -0
- package/open-sse/providers/registry/ollama-local.js +19 -0
- package/open-sse/providers/registry/ollama.js +36 -0
- package/open-sse/providers/registry/openai.js +84 -0
- package/open-sse/providers/registry/opencode-go.js +41 -0
- package/open-sse/providers/registry/opencode.js +25 -0
- package/open-sse/providers/registry/openrouter.js +60 -0
- package/open-sse/providers/registry/perplexity-agent.js +49 -0
- package/open-sse/providers/registry/perplexity-web.js +33 -0
- package/open-sse/providers/registry/perplexity.js +37 -0
- package/open-sse/providers/registry/playht.js +36 -0
- package/open-sse/providers/registry/qoder.js +54 -0
- package/open-sse/providers/registry/qwen.js +33 -0
- package/open-sse/providers/registry/recraft.js +24 -0
- package/open-sse/providers/registry/runwayml.js +30 -0
- package/open-sse/providers/registry/sdwebui.js +20 -0
- package/open-sse/providers/registry/searchapi.js +35 -0
- package/open-sse/providers/registry/searxng.js +35 -0
- package/open-sse/providers/registry/serper.js +35 -0
- package/open-sse/providers/registry/siliconflow.js +39 -0
- package/open-sse/providers/registry/stability-ai.js +31 -0
- package/open-sse/providers/registry/tavily.js +50 -0
- package/open-sse/providers/registry/together.js +31 -0
- package/open-sse/providers/registry/topaz.js +19 -0
- package/open-sse/providers/registry/tortoise.js +30 -0
- package/open-sse/providers/registry/venice.js +56 -0
- package/open-sse/providers/registry/vercel-ai-gateway.js +41 -0
- package/open-sse/providers/registry/vertex-partner.js +29 -0
- package/open-sse/providers/registry/vertex.js +32 -0
- package/open-sse/providers/registry/volcengine-ark.js +35 -0
- package/open-sse/providers/registry/voyage-ai.js +30 -0
- package/open-sse/providers/registry/xai.js +45 -0
- package/open-sse/providers/registry/xiaomi-mimo.js +46 -0
- package/open-sse/providers/registry/xiaomi-tokenplan.js +63 -0
- package/open-sse/providers/registry/youcom.js +35 -0
- package/open-sse/providers/schema.js +76 -0
- package/open-sse/providers/shared.js +74 -0
- package/open-sse/providers/thinkingLevels.js +48 -0
- package/open-sse/rtk/applyFilter.js +15 -0
- package/open-sse/rtk/autodetect.js +111 -0
- package/open-sse/rtk/caveman.js +100 -0
- package/open-sse/rtk/cavemanPrompts.js +78 -0
- package/open-sse/rtk/constants.js +55 -0
- package/open-sse/rtk/filters/buildOutput.js +127 -0
- package/open-sse/rtk/filters/dedupLog.js +44 -0
- package/open-sse/rtk/filters/find.js +50 -0
- package/open-sse/rtk/filters/gitDiff.js +92 -0
- package/open-sse/rtk/filters/gitLog.js +99 -0
- package/open-sse/rtk/filters/gitStatus.js +117 -0
- package/open-sse/rtk/filters/grep.js +48 -0
- package/open-sse/rtk/filters/ls.js +79 -0
- package/open-sse/rtk/filters/readNumbered.js +27 -0
- package/open-sse/rtk/filters/searchList.js +52 -0
- package/open-sse/rtk/filters/smartTruncate.js +15 -0
- package/open-sse/rtk/filters/tree.js +32 -0
- package/open-sse/rtk/headroom.js +215 -0
- package/open-sse/rtk/index.js +155 -0
- package/open-sse/rtk/paleo.js +47 -0
- package/open-sse/rtk/ponytail.js +9 -0
- package/open-sse/rtk/ponytailPrompt.js +52 -0
- package/open-sse/rtk/ponytailPrompts.js +76 -0
- package/open-sse/rtk/pxpipe.js +104 -0
- package/open-sse/rtk/registry.js +38 -0
- package/open-sse/rtk/systemInject.js +98 -0
- package/open-sse/services/accountFallback.js +323 -0
- package/open-sse/services/antigravityHeaders.js +91 -0
- package/open-sse/services/antigravityVersion.js +154 -0
- package/open-sse/services/clinepassModels.js +63 -0
- package/open-sse/services/codexQuotaFetcher.js +312 -0
- package/open-sse/services/codexVerbosity.js +30 -0
- package/open-sse/services/combo/context.js +12 -0
- package/open-sse/services/combo/fingerprintExpansion.js +51 -0
- package/open-sse/services/combo/headroomRanking.js +28 -0
- package/open-sse/services/combo/quotaExhaustionCutoff.js +87 -0
- package/open-sse/services/combo/quotaScoring.js +226 -0
- package/open-sse/services/combo/quotaShareConcurrency.js +25 -0
- package/open-sse/services/combo/quotaShareInflight.js +50 -0
- package/open-sse/services/combo/quotaShareStrategy.js +130 -0
- package/open-sse/services/combo/resolveAutoStrategy.js +231 -0
- package/open-sse/services/combo/responseValidation.js +140 -0
- package/open-sse/services/combo/runtimeUnits.js +195 -0
- package/open-sse/services/combo/sessionStickiness.js +128 -0
- package/open-sse/services/combo/shadowRouting.js +131 -0
- package/open-sse/services/combo/targetExhaustion.js +75 -0
- package/open-sse/services/combo/targetSorters.js +126 -0
- package/open-sse/services/combo/targetTimeoutRunner.js +65 -0
- package/open-sse/services/combo/validateQuality.js +271 -0
- package/open-sse/services/combo.js +571 -0
- package/open-sse/services/comboAgentMiddleware.js +91 -0
- package/open-sse/services/comboConfig.js +153 -0
- package/open-sse/services/comboManifestMetrics.js +10 -0
- package/open-sse/services/comboMetrics.js +278 -0
- package/open-sse/services/compact.js +71 -0
- package/open-sse/services/copilotModels.js +155 -0
- package/open-sse/services/emergencyFallback.js +109 -0
- package/open-sse/services/errorClassifier.js +190 -0
- package/open-sse/services/evalRouting.js +201 -0
- package/open-sse/services/freeWebSearch.js +4 -0
- package/open-sse/services/fusion.js +223 -0
- package/open-sse/services/intentClassifier.js +631 -0
- package/open-sse/services/kimchiModels.js +176 -0
- package/open-sse/services/kiroModels.js +332 -0
- package/open-sse/services/model.js +136 -0
- package/open-sse/services/modelCapabilities.js +5 -0
- package/open-sse/services/modelDeprecation.js +101 -0
- package/open-sse/services/modelFamilyFallback.js +166 -0
- package/open-sse/services/oauthCredentialManager.js +156 -0
- package/open-sse/services/pipeline.js +107 -0
- package/open-sse/services/projectId.js +306 -0
- package/open-sse/services/provider.js +169 -0
- package/open-sse/services/providerCooldownTracker.js +94 -0
- package/open-sse/services/providerDefaultRateLimit.js +11 -0
- package/open-sse/services/proxyAutoSelector.js +24 -0
- package/open-sse/services/qoderModels.js +214 -0
- package/open-sse/services/quotaFetchThrottle.js +103 -0
- package/open-sse/services/quotaMonitor.js +310 -0
- package/open-sse/services/quotaPreflight.js +266 -0
- package/open-sse/services/rateLimitManager/headers.js +56 -0
- package/open-sse/services/rateLimitManager.js +616 -0
- package/open-sse/services/rateLimitSemaphore.js +112 -0
- package/open-sse/services/responsesInputSanitizer.js +99 -0
- package/open-sse/services/slidingWindowLimiter.js +44 -0
- package/open-sse/services/streamRecovery.js +355 -0
- package/open-sse/services/taskAwareRouter.js +227 -0
- package/open-sse/services/taskAwareRouting.js +332 -0
- package/open-sse/services/thinkingBudget.js +247 -0
- package/open-sse/services/tokenRefresh/dedup.js +31 -0
- package/open-sse/services/tokenRefresh/providers.js +624 -0
- package/open-sse/services/tokenRefresh.js +254 -0
- package/open-sse/services/usage/claude.js +147 -0
- package/open-sse/services/usage/codebuddy-cn.js +138 -0
- package/open-sse/services/usage/codex.js +267 -0
- package/open-sse/services/usage/github.js +100 -0
- package/open-sse/services/usage/google.js +241 -0
- package/open-sse/services/usage/grok-cli.js +274 -0
- package/open-sse/services/usage/kiro.js +188 -0
- package/open-sse/services/usage/minimax.js +234 -0
- package/open-sse/services/usage/misc.js +288 -0
- package/open-sse/services/usage/shared.js +70 -0
- package/open-sse/services/usage.js +62 -0
- package/open-sse/services/usageDb.js +2 -0
- package/open-sse/services/webSearchRouting.js +25 -0
- package/open-sse/services/wildcardRouter.js +59 -0
- package/open-sse/shared/clineAuth.js +37 -0
- package/open-sse/shared/machineId.js +19 -0
- package/open-sse/shared/qoder/constants.js +64 -0
- package/open-sse/shared/qoder/cosy.js +175 -0
- package/open-sse/shared/qoder/encoding.js +55 -0
- package/open-sse/transformer/responsesTransformer.js +439 -0
- package/open-sse/transformer/streamToJsonConverter.js +103 -0
- package/open-sse/translator/concerns/chunk.js +11 -0
- package/open-sse/translator/concerns/finishReason.js +63 -0
- package/open-sse/translator/concerns/image.js +124 -0
- package/open-sse/translator/concerns/json.js +5 -0
- package/open-sse/translator/concerns/message.js +7 -0
- package/open-sse/translator/concerns/modality.js +155 -0
- package/open-sse/translator/concerns/paramSupport.js +75 -0
- package/open-sse/translator/concerns/prefetch.js +96 -0
- package/open-sse/translator/concerns/reasoning.js +24 -0
- package/open-sse/translator/concerns/thinking.js +53 -0
- package/open-sse/translator/concerns/thinkingUnified.js +329 -0
- package/open-sse/translator/concerns/toolCall.js +153 -0
- package/open-sse/translator/concerns/usage.js +69 -0
- package/open-sse/translator/formats/claude.js +368 -0
- package/open-sse/translator/formats/gemini.js +380 -0
- package/open-sse/translator/formats/maxTokens.js +34 -0
- package/open-sse/translator/formats/openai.js +134 -0
- package/open-sse/translator/formats/responsesApi.js +141 -0
- package/open-sse/translator/formats.js +36 -0
- package/open-sse/translator/helpers/claudeHelper.js +216 -0
- package/open-sse/translator/helpers/geminiHelper.js +372 -0
- package/open-sse/translator/helpers/imageHelper.js +34 -0
- package/open-sse/translator/helpers/maxTokensHelper.js +27 -0
- package/open-sse/translator/helpers/openaiHelper.js +130 -0
- package/open-sse/translator/helpers/responsesApiHelper.js +139 -0
- package/open-sse/translator/helpers/toolCallHelper.js +148 -0
- package/open-sse/translator/index.js +252 -0
- package/open-sse/translator/request/antigravity-to-openai.js +242 -0
- package/open-sse/translator/request/claude-to-kiro.js +478 -0
- package/open-sse/translator/request/claude-to-openai.js +263 -0
- package/open-sse/translator/request/gemini-to-openai.js +152 -0
- package/open-sse/translator/request/openai-responses.js +385 -0
- package/open-sse/translator/request/openai-to-claude.js +383 -0
- package/open-sse/translator/request/openai-to-commandcode.js +176 -0
- package/open-sse/translator/request/openai-to-cursor.js +185 -0
- package/open-sse/translator/request/openai-to-gemini.js +442 -0
- package/open-sse/translator/request/openai-to-kiro.js +607 -0
- package/open-sse/translator/request/openai-to-kiro.old.js +278 -0
- package/open-sse/translator/request/openai-to-ollama.js +195 -0
- package/open-sse/translator/request/openai-to-vertex.js +42 -0
- package/open-sse/translator/response/claude-to-openai.js +195 -0
- package/open-sse/translator/response/commandcode-to-openai.js +188 -0
- package/open-sse/translator/response/cursor-to-openai.js +30 -0
- package/open-sse/translator/response/gemini-to-openai.js +147 -0
- package/open-sse/translator/response/kiro-to-claude.js +261 -0
- package/open-sse/translator/response/kiro-to-openai.js +160 -0
- package/open-sse/translator/response/ollama-to-openai.js +134 -0
- package/open-sse/translator/response/openai-responses.js +535 -0
- package/open-sse/translator/response/openai-to-antigravity.js +123 -0
- package/open-sse/translator/response/openai-to-claude.js +265 -0
- package/open-sse/translator/schema/blocks.js +43 -0
- package/open-sse/translator/schema/defaults.js +7 -0
- package/open-sse/translator/schema/finishReasons.js +27 -0
- package/open-sse/translator/schema/index.js +8 -0
- package/open-sse/translator/schema/roles.js +16 -0
- package/open-sse/utils/agentGoalPolicy.js +85 -0
- package/open-sse/utils/aiSdkCompat.js +75 -0
- package/open-sse/utils/bypassHandler.js +298 -0
- package/open-sse/utils/cacheControlPolicy.js +189 -0
- package/open-sse/utils/claudeCloaking.js +155 -0
- package/open-sse/utils/claudeHeaderCache.js +70 -0
- package/open-sse/utils/claudeSignature.js +41 -0
- package/open-sse/utils/clientDetector.js +63 -0
- package/open-sse/utils/codebuddySanitizer.js +96 -0
- package/open-sse/utils/composerToolCalls.js +158 -0
- package/open-sse/utils/cors.js +13 -0
- package/open-sse/utils/cursorChecksum.js +149 -0
- package/open-sse/utils/cursorImages.js +224 -0
- package/open-sse/utils/cursorProtobuf.js +904 -0
- package/open-sse/utils/cursorVersionDetector.js +55 -0
- package/open-sse/utils/debugLog.js +14 -0
- package/open-sse/utils/diagnostics.js +143 -0
- package/open-sse/utils/error.js +164 -0
- package/open-sse/utils/estimateSize.js +33 -0
- package/open-sse/utils/finishReason.js +32 -0
- package/open-sse/utils/flattenToolHistory.js +68 -0
- package/open-sse/utils/headers.js +36 -0
- package/open-sse/utils/heapPressure.js +35 -0
- package/open-sse/utils/jsonToSse.js +125 -0
- package/open-sse/utils/keepaliveThreshold.js +40 -0
- package/open-sse/utils/logger.js +104 -0
- package/open-sse/utils/noThinkingAlias.js +74 -0
- package/open-sse/utils/number.js +7 -0
- package/open-sse/utils/ollamaTransform.js +85 -0
- package/open-sse/utils/opencodeHeaders.js +47 -0
- package/open-sse/utils/progressTracker.js +81 -0
- package/open-sse/utils/providerRequestLogging.js +219 -0
- package/open-sse/utils/proxyFetch.js +369 -0
- package/open-sse/utils/reasoningContentInjector.js +79 -0
- package/open-sse/utils/reasoningFields.js +70 -0
- package/open-sse/utils/requestLogger.js +260 -0
- package/open-sse/utils/responsesInputNormalization.js +92 -0
- package/open-sse/utils/responsesStatePolicy.js +52 -0
- package/open-sse/utils/responsesStreamHelpers.js +49 -0
- package/open-sse/utils/sessionManager.js +240 -0
- package/open-sse/utils/sleep.js +6 -0
- package/open-sse/utils/sse.js +14 -0
- package/open-sse/utils/sseConstants.js +23 -0
- package/open-sse/utils/sseHeartbeat.js +104 -0
- package/open-sse/utils/stream.js +517 -0
- package/open-sse/utils/streamFailureFinalization.js +134 -0
- package/open-sse/utils/streamHandler.js +250 -0
- package/open-sse/utils/streamHelpers.js +137 -0
- package/open-sse/utils/textualToolCall.js +104 -0
- package/open-sse/utils/thinkCloseMarker.js +72 -0
- package/open-sse/utils/thinkTagParser.js +146 -0
- package/open-sse/utils/toolCallArguments.js +12 -0
- package/open-sse/utils/toolDeduper.js +49 -0
- package/open-sse/utils/toolSources.js +31 -0
- package/open-sse/utils/upstreamResponseHeaders.js +25 -0
- package/open-sse/utils/urlSanitize.js +15 -0
- package/open-sse/utils/usageTracking.js +347 -0
- package/package.json +1 -1
|
@@ -0,0 +1,578 @@
|
|
|
1
|
+
import {
|
|
2
|
+
BaseExecutor,
|
|
3
|
+
mergeAbortSignals,
|
|
4
|
+
mergeUpstreamExtraHeaders
|
|
5
|
+
} from "./base.ts";
|
|
6
|
+
import { FETCH_TIMEOUT_MS } from "../config/constants.ts";
|
|
7
|
+
import { normalizeSessionCookieHeader } from '../../dist/lib/providers/webCookieAuth.js';
|
|
8
|
+
import { prepareToolMessages, buildToolAwareResult } from "../translator/webTools.ts";
|
|
9
|
+
const BLACKBOX_CHAT_API = "https://app.blackbox.ai/api/chat";
|
|
10
|
+
const BLACKBOX_DEFAULT_COOKIE = "next-auth.session-token";
|
|
11
|
+
const BLACKBOX_USER_AGENT = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36";
|
|
12
|
+
const SESSION_CACHE_TTL_MS = 5 * 6e4;
|
|
13
|
+
function resolveBlackboxValidatedToken() {
|
|
14
|
+
const explicit = (process.env.BLACKBOX_WEB_VALIDATED_TOKEN || "").trim();
|
|
15
|
+
if (explicit) return explicit;
|
|
16
|
+
return crypto.randomUUID();
|
|
17
|
+
}
|
|
18
|
+
function isBlackboxValidatedTokenError(responseText) {
|
|
19
|
+
const lower = (responseText || "").toLowerCase();
|
|
20
|
+
return lower.includes("invalid validated token") || lower.includes("invalid validated") || lower.includes("validation token") || lower.includes("invalid token");
|
|
21
|
+
}
|
|
22
|
+
const MAX_SESSIONS = 100;
|
|
23
|
+
const sessionCache = /* @__PURE__ */ new Map();
|
|
24
|
+
function extractMessageText(content) {
|
|
25
|
+
if (typeof content === "string") {
|
|
26
|
+
return content.trim();
|
|
27
|
+
}
|
|
28
|
+
if (!Array.isArray(content)) {
|
|
29
|
+
return "";
|
|
30
|
+
}
|
|
31
|
+
return content.map((part) => {
|
|
32
|
+
if (!part || typeof part !== "object") return "";
|
|
33
|
+
const item = part;
|
|
34
|
+
if (item.type === "text" && typeof item.text === "string") {
|
|
35
|
+
return item.text;
|
|
36
|
+
}
|
|
37
|
+
if (item.type === "input_text" && typeof item.text === "string") {
|
|
38
|
+
return item.text;
|
|
39
|
+
}
|
|
40
|
+
return "";
|
|
41
|
+
}).filter((part) => part.trim().length > 0).join("\n").trim();
|
|
42
|
+
}
|
|
43
|
+
function parseOpenAIMessages(messages, chatId) {
|
|
44
|
+
const systemParts = [];
|
|
45
|
+
const parsed = [];
|
|
46
|
+
for (const message of messages) {
|
|
47
|
+
const role = String(message.role || "user");
|
|
48
|
+
const content = extractMessageText(message.content);
|
|
49
|
+
if (!content) continue;
|
|
50
|
+
if (role === "system" || role === "developer") {
|
|
51
|
+
systemParts.push(content);
|
|
52
|
+
continue;
|
|
53
|
+
}
|
|
54
|
+
if (role === "assistant" || role === "user") {
|
|
55
|
+
parsed.push({
|
|
56
|
+
id: role === "user" ? chatId : crypto.randomUUID(),
|
|
57
|
+
role,
|
|
58
|
+
content
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
if (systemParts.length > 0) {
|
|
63
|
+
const prefix = `System instructions:
|
|
64
|
+
${systemParts.join("\n\n")}`;
|
|
65
|
+
const firstUserIndex = parsed.findIndex((message) => message.role === "user");
|
|
66
|
+
if (firstUserIndex >= 0) {
|
|
67
|
+
parsed[firstUserIndex] = {
|
|
68
|
+
...parsed[firstUserIndex],
|
|
69
|
+
content: `${prefix}
|
|
70
|
+
|
|
71
|
+
${parsed[firstUserIndex].content}`
|
|
72
|
+
};
|
|
73
|
+
} else {
|
|
74
|
+
parsed.unshift({
|
|
75
|
+
id: chatId,
|
|
76
|
+
role: "user",
|
|
77
|
+
content: prefix
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
return parsed;
|
|
82
|
+
}
|
|
83
|
+
function estimateTokens(text) {
|
|
84
|
+
return Math.max(1, Math.ceil((text || "").length / 4));
|
|
85
|
+
}
|
|
86
|
+
function sseChunk(data) {
|
|
87
|
+
return `data: ${JSON.stringify(data)}
|
|
88
|
+
|
|
89
|
+
`;
|
|
90
|
+
}
|
|
91
|
+
async function readTextResponse(body, signal) {
|
|
92
|
+
const reader = body.getReader();
|
|
93
|
+
const decoder = new TextDecoder();
|
|
94
|
+
let text = "";
|
|
95
|
+
try {
|
|
96
|
+
while (true) {
|
|
97
|
+
if (signal?.aborted) {
|
|
98
|
+
throw signal.reason ?? new DOMException("Aborted", "AbortError");
|
|
99
|
+
}
|
|
100
|
+
const { value, done } = await reader.read();
|
|
101
|
+
if (done) break;
|
|
102
|
+
text += decoder.decode(value, { stream: true });
|
|
103
|
+
}
|
|
104
|
+
text += decoder.decode();
|
|
105
|
+
return text;
|
|
106
|
+
} finally {
|
|
107
|
+
reader.releaseLock();
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
function buildStreamingResponse(responseText, model, id, created) {
|
|
111
|
+
const encoder = new TextEncoder();
|
|
112
|
+
return new ReadableStream(
|
|
113
|
+
{
|
|
114
|
+
start(controller) {
|
|
115
|
+
controller.enqueue(
|
|
116
|
+
encoder.encode(
|
|
117
|
+
sseChunk({
|
|
118
|
+
id,
|
|
119
|
+
object: "chat.completion.chunk",
|
|
120
|
+
created,
|
|
121
|
+
model,
|
|
122
|
+
system_fingerprint: null,
|
|
123
|
+
choices: [
|
|
124
|
+
{
|
|
125
|
+
index: 0,
|
|
126
|
+
delta: { role: "assistant" },
|
|
127
|
+
finish_reason: null,
|
|
128
|
+
logprobs: null
|
|
129
|
+
}
|
|
130
|
+
]
|
|
131
|
+
})
|
|
132
|
+
)
|
|
133
|
+
);
|
|
134
|
+
if (responseText) {
|
|
135
|
+
controller.enqueue(
|
|
136
|
+
encoder.encode(
|
|
137
|
+
sseChunk({
|
|
138
|
+
id,
|
|
139
|
+
object: "chat.completion.chunk",
|
|
140
|
+
created,
|
|
141
|
+
model,
|
|
142
|
+
system_fingerprint: null,
|
|
143
|
+
choices: [
|
|
144
|
+
{
|
|
145
|
+
index: 0,
|
|
146
|
+
delta: { content: responseText },
|
|
147
|
+
finish_reason: null,
|
|
148
|
+
logprobs: null
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
})
|
|
152
|
+
)
|
|
153
|
+
);
|
|
154
|
+
}
|
|
155
|
+
controller.enqueue(
|
|
156
|
+
encoder.encode(
|
|
157
|
+
sseChunk({
|
|
158
|
+
id,
|
|
159
|
+
object: "chat.completion.chunk",
|
|
160
|
+
created,
|
|
161
|
+
model,
|
|
162
|
+
system_fingerprint: null,
|
|
163
|
+
choices: [{ index: 0, delta: {}, finish_reason: "stop", logprobs: null }]
|
|
164
|
+
})
|
|
165
|
+
)
|
|
166
|
+
);
|
|
167
|
+
controller.enqueue(encoder.encode("data: [DONE]\n\n"));
|
|
168
|
+
controller.close();
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
{ highWaterMark: 16384 }
|
|
172
|
+
);
|
|
173
|
+
}
|
|
174
|
+
function buildNonStreamingResponse(responseText, model, id, created) {
|
|
175
|
+
const completionTokens = estimateTokens(responseText);
|
|
176
|
+
return new Response(
|
|
177
|
+
JSON.stringify({
|
|
178
|
+
id,
|
|
179
|
+
object: "chat.completion",
|
|
180
|
+
created,
|
|
181
|
+
model,
|
|
182
|
+
system_fingerprint: null,
|
|
183
|
+
choices: [
|
|
184
|
+
{
|
|
185
|
+
index: 0,
|
|
186
|
+
message: { role: "assistant", content: responseText },
|
|
187
|
+
finish_reason: "stop",
|
|
188
|
+
logprobs: null
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
usage: {
|
|
192
|
+
prompt_tokens: completionTokens,
|
|
193
|
+
completion_tokens: completionTokens,
|
|
194
|
+
total_tokens: completionTokens * 2
|
|
195
|
+
}
|
|
196
|
+
}),
|
|
197
|
+
{
|
|
198
|
+
status: 200,
|
|
199
|
+
headers: { "Content-Type": "application/json" }
|
|
200
|
+
}
|
|
201
|
+
);
|
|
202
|
+
}
|
|
203
|
+
function normalizeBlackboxCookieHeader(apiKey) {
|
|
204
|
+
return normalizeSessionCookieHeader(apiKey, BLACKBOX_DEFAULT_COOKIE);
|
|
205
|
+
}
|
|
206
|
+
class BlackboxWebExecutor extends BaseExecutor {
|
|
207
|
+
constructor() {
|
|
208
|
+
super("blackbox-web", { id: "blackbox-web", baseUrl: BLACKBOX_CHAT_API });
|
|
209
|
+
}
|
|
210
|
+
async execute({
|
|
211
|
+
model,
|
|
212
|
+
body,
|
|
213
|
+
stream,
|
|
214
|
+
credentials,
|
|
215
|
+
signal,
|
|
216
|
+
log,
|
|
217
|
+
upstreamExtraHeaders
|
|
218
|
+
}) {
|
|
219
|
+
const bodyObj = body || {};
|
|
220
|
+
const messages = bodyObj.messages;
|
|
221
|
+
if (!messages || !Array.isArray(messages) || messages.length === 0) {
|
|
222
|
+
const errorResponse = new Response(
|
|
223
|
+
JSON.stringify({
|
|
224
|
+
error: {
|
|
225
|
+
message: "Missing or empty messages array",
|
|
226
|
+
type: "invalid_request"
|
|
227
|
+
}
|
|
228
|
+
}),
|
|
229
|
+
{ status: 400, headers: { "Content-Type": "application/json" } }
|
|
230
|
+
);
|
|
231
|
+
return {
|
|
232
|
+
response: errorResponse,
|
|
233
|
+
url: BLACKBOX_CHAT_API,
|
|
234
|
+
headers: {},
|
|
235
|
+
transformedBody: body
|
|
236
|
+
};
|
|
237
|
+
}
|
|
238
|
+
const { hasTools, requestedTools, effectiveMessages } = prepareToolMessages(
|
|
239
|
+
bodyObj,
|
|
240
|
+
messages
|
|
241
|
+
);
|
|
242
|
+
const chatId = crypto.randomUUID().slice(0, 7);
|
|
243
|
+
const parsedMessages = parseOpenAIMessages(effectiveMessages, chatId);
|
|
244
|
+
if (parsedMessages.length === 0) {
|
|
245
|
+
const errorResponse = new Response(
|
|
246
|
+
JSON.stringify({
|
|
247
|
+
error: {
|
|
248
|
+
message: "Empty query after processing messages",
|
|
249
|
+
type: "invalid_request"
|
|
250
|
+
}
|
|
251
|
+
}),
|
|
252
|
+
{ status: 400, headers: { "Content-Type": "application/json" } }
|
|
253
|
+
);
|
|
254
|
+
return {
|
|
255
|
+
response: errorResponse,
|
|
256
|
+
url: BLACKBOX_CHAT_API,
|
|
257
|
+
headers: {},
|
|
258
|
+
transformedBody: body
|
|
259
|
+
};
|
|
260
|
+
}
|
|
261
|
+
const cookieHeader = normalizeBlackboxCookieHeader(credentials.apiKey || "");
|
|
262
|
+
const baseHeaders = {
|
|
263
|
+
Accept: "application/json",
|
|
264
|
+
Cookie: cookieHeader,
|
|
265
|
+
Origin: "https://app.blackbox.ai",
|
|
266
|
+
"User-Agent": BLACKBOX_USER_AGENT
|
|
267
|
+
};
|
|
268
|
+
let sessionData = null;
|
|
269
|
+
let subscriptionCache = null;
|
|
270
|
+
let teamAccount = "";
|
|
271
|
+
const cacheKey = cookieHeader;
|
|
272
|
+
const cached = sessionCache.get(cacheKey);
|
|
273
|
+
if (cached && Date.now() - cached.fetchedAt < SESSION_CACHE_TTL_MS) {
|
|
274
|
+
sessionData = cached.sessionData;
|
|
275
|
+
subscriptionCache = cached.subscriptionCache;
|
|
276
|
+
teamAccount = cached.teamAccount;
|
|
277
|
+
log?.debug?.("BLACKBOX-WEB", `Session cache hit (${teamAccount || "no email"})`);
|
|
278
|
+
} else {
|
|
279
|
+
const sideSignal = signal ? mergeAbortSignals(signal, AbortSignal.timeout(1e4)) : AbortSignal.timeout(1e4);
|
|
280
|
+
try {
|
|
281
|
+
const sessionRes = await fetch("https://app.blackbox.ai/api/auth/session", {
|
|
282
|
+
method: "GET",
|
|
283
|
+
headers: { ...baseHeaders, Accept: "application/json" },
|
|
284
|
+
signal: sideSignal
|
|
285
|
+
});
|
|
286
|
+
sessionData = sessionRes.ok ? await sessionRes.json() : null;
|
|
287
|
+
const email = sessionData?.user?.email;
|
|
288
|
+
teamAccount = email || "";
|
|
289
|
+
log?.debug?.("BLACKBOX-WEB", `Session email: ${email ?? "none"}`);
|
|
290
|
+
if (email) {
|
|
291
|
+
const subRes = await fetch("https://app.blackbox.ai/api/check-subscription", {
|
|
292
|
+
method: "POST",
|
|
293
|
+
headers: { ...baseHeaders, "Content-Type": "application/json" },
|
|
294
|
+
body: JSON.stringify({ email }),
|
|
295
|
+
signal: sideSignal
|
|
296
|
+
});
|
|
297
|
+
const rawSub = subRes.ok ? await subRes.json() : null;
|
|
298
|
+
if (rawSub) {
|
|
299
|
+
subscriptionCache = {
|
|
300
|
+
status: rawSub.hasActiveSubscription ? "PREMIUM" : "FREE",
|
|
301
|
+
customerId: rawSub.customerId ?? null,
|
|
302
|
+
expiryTimestamp: rawSub.expiryTimestamp ?? null,
|
|
303
|
+
lastChecked: Date.now(),
|
|
304
|
+
isTrialSubscription: rawSub.isTrialSubscription ?? false,
|
|
305
|
+
hasPaymentVerificationFailure: false,
|
|
306
|
+
verificationFailureTimestamp: null,
|
|
307
|
+
requiresAuthentication: false,
|
|
308
|
+
isTeam: rawSub.isTeam ?? false,
|
|
309
|
+
numSeats: rawSub.numSeats ?? 1,
|
|
310
|
+
provider: rawSub.provider ?? null,
|
|
311
|
+
previouslySubscribed: rawSub.previouslySubscribed ?? false,
|
|
312
|
+
activeInsuffientCredits: rawSub.activeInsuffientCredits ?? false
|
|
313
|
+
};
|
|
314
|
+
log?.debug?.("BLACKBOX-WEB", `Subscription: ${subscriptionCache.status}`);
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
sessionCache.set(cacheKey, {
|
|
318
|
+
sessionData,
|
|
319
|
+
subscriptionCache,
|
|
320
|
+
teamAccount,
|
|
321
|
+
fetchedAt: Date.now()
|
|
322
|
+
});
|
|
323
|
+
while (sessionCache.size > MAX_SESSIONS) {
|
|
324
|
+
const oldestKey = sessionCache.keys().next().value;
|
|
325
|
+
if (oldestKey !== void 0) sessionCache.delete(oldestKey);
|
|
326
|
+
else break;
|
|
327
|
+
}
|
|
328
|
+
} catch (diagErr) {
|
|
329
|
+
log?.debug?.("BLACKBOX-WEB", `Session/subscription fetch failed (non-fatal): ${diagErr}`);
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
const headers = {
|
|
333
|
+
...baseHeaders,
|
|
334
|
+
Accept: "text/plain, */*",
|
|
335
|
+
"Content-Type": "application/json",
|
|
336
|
+
Referer: `https://app.blackbox.ai/chat/${chatId}`
|
|
337
|
+
};
|
|
338
|
+
mergeUpstreamExtraHeaders(headers, upstreamExtraHeaders);
|
|
339
|
+
const transformedBody = {
|
|
340
|
+
messages: parsedMessages,
|
|
341
|
+
id: chatId,
|
|
342
|
+
previewToken: null,
|
|
343
|
+
userId: credentials.providerSpecificData?.userId ?? null,
|
|
344
|
+
codeModelMode: true,
|
|
345
|
+
trendingAgentMode: {},
|
|
346
|
+
isMicMode: false,
|
|
347
|
+
userSystemPrompt: null,
|
|
348
|
+
maxTokens: Number(body.max_tokens) || 1024,
|
|
349
|
+
playgroundTopP: null,
|
|
350
|
+
playgroundTemperature: null,
|
|
351
|
+
isChromeExt: false,
|
|
352
|
+
githubToken: "",
|
|
353
|
+
clickedAnswer2: false,
|
|
354
|
+
clickedAnswer3: false,
|
|
355
|
+
clickedForceWebSearch: false,
|
|
356
|
+
visitFromDelta: false,
|
|
357
|
+
isMemoryEnabled: false,
|
|
358
|
+
mobileClient: false,
|
|
359
|
+
userSelectedModel: model || null,
|
|
360
|
+
userSelectedAgent: "VscodeAgent",
|
|
361
|
+
// Issue #2252: prefer operator-supplied BLACKBOX_WEB_VALIDATED_TOKEN over
|
|
362
|
+
// a random UUID — Blackbox's `/api/chat` rejects mismatched tokens with 403.
|
|
363
|
+
validated: resolveBlackboxValidatedToken(),
|
|
364
|
+
imageGenerationMode: false,
|
|
365
|
+
imageGenMode: "autoMode",
|
|
366
|
+
webSearchModePrompt: false,
|
|
367
|
+
deepSearchMode: false,
|
|
368
|
+
promptSelection: "",
|
|
369
|
+
domains: null,
|
|
370
|
+
vscodeClient: false,
|
|
371
|
+
codeInterpreterMode: false,
|
|
372
|
+
customProfile: {
|
|
373
|
+
name: "",
|
|
374
|
+
occupation: "",
|
|
375
|
+
traits: [],
|
|
376
|
+
additionalInfo: "",
|
|
377
|
+
enableNewChats: false
|
|
378
|
+
},
|
|
379
|
+
webSearchModeOption: {
|
|
380
|
+
autoMode: true,
|
|
381
|
+
webMode: false,
|
|
382
|
+
offlineMode: false
|
|
383
|
+
},
|
|
384
|
+
session: sessionData,
|
|
385
|
+
isPremium: subscriptionCache ? subscriptionCache.status === "PREMIUM" : credentials.providerSpecificData?.isPremium ?? true,
|
|
386
|
+
teamAccount,
|
|
387
|
+
subscriptionCache,
|
|
388
|
+
beastMode: false,
|
|
389
|
+
reasoningMode: false,
|
|
390
|
+
designerMode: false,
|
|
391
|
+
workspaceId: "",
|
|
392
|
+
asyncMode: false,
|
|
393
|
+
integrations: {},
|
|
394
|
+
isTaskPersistent: false,
|
|
395
|
+
selectedElement: null
|
|
396
|
+
};
|
|
397
|
+
const timeoutSignal = AbortSignal.timeout(FETCH_TIMEOUT_MS);
|
|
398
|
+
const combinedSignal = signal ? mergeAbortSignals(signal, timeoutSignal) : timeoutSignal;
|
|
399
|
+
let upstreamResponse;
|
|
400
|
+
try {
|
|
401
|
+
upstreamResponse = await fetch(BLACKBOX_CHAT_API, {
|
|
402
|
+
method: "POST",
|
|
403
|
+
headers,
|
|
404
|
+
body: JSON.stringify(transformedBody),
|
|
405
|
+
signal: combinedSignal
|
|
406
|
+
});
|
|
407
|
+
} catch (error) {
|
|
408
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
409
|
+
log?.error?.("BLACKBOX-WEB", `Fetch failed: ${message}`);
|
|
410
|
+
const errorResponse = new Response(
|
|
411
|
+
JSON.stringify({
|
|
412
|
+
error: {
|
|
413
|
+
message: `Blackbox Web connection failed: ${message}`,
|
|
414
|
+
type: "upstream_error"
|
|
415
|
+
}
|
|
416
|
+
}),
|
|
417
|
+
{ status: 502, headers: { "Content-Type": "application/json" } }
|
|
418
|
+
);
|
|
419
|
+
return {
|
|
420
|
+
response: errorResponse,
|
|
421
|
+
url: BLACKBOX_CHAT_API,
|
|
422
|
+
headers,
|
|
423
|
+
transformedBody
|
|
424
|
+
};
|
|
425
|
+
}
|
|
426
|
+
if (!upstreamResponse.ok) {
|
|
427
|
+
const status = upstreamResponse.status;
|
|
428
|
+
let message = `Blackbox Web returned HTTP ${status}`;
|
|
429
|
+
const errorBody = await upstreamResponse.text().catch(() => "");
|
|
430
|
+
if (status === 403 && isBlackboxValidatedTokenError(errorBody)) {
|
|
431
|
+
message = "Blackbox Web rejected the request with an invalid `validated` token. If you have a valid frontend token (the `tk` value from app.blackbox.ai's Next.js bundle), set BLACKBOX_WEB_VALIDATED_TOKEN in your environment and restart.";
|
|
432
|
+
} else if (status === 401 || status === 403) {
|
|
433
|
+
message = "Blackbox Web auth failed \u2014 your app.blackbox.ai session cookie may be missing or expired.";
|
|
434
|
+
} else if (status === 429) {
|
|
435
|
+
message = "Blackbox Web rate limited the session. Wait a moment and retry.";
|
|
436
|
+
}
|
|
437
|
+
const errorResponse = new Response(
|
|
438
|
+
JSON.stringify({
|
|
439
|
+
error: {
|
|
440
|
+
message,
|
|
441
|
+
type: "upstream_error",
|
|
442
|
+
code: `HTTP_${status}`
|
|
443
|
+
}
|
|
444
|
+
}),
|
|
445
|
+
{ status, headers: { "Content-Type": "application/json" } }
|
|
446
|
+
);
|
|
447
|
+
return {
|
|
448
|
+
response: errorResponse,
|
|
449
|
+
url: BLACKBOX_CHAT_API,
|
|
450
|
+
headers,
|
|
451
|
+
transformedBody
|
|
452
|
+
};
|
|
453
|
+
}
|
|
454
|
+
if (!upstreamResponse.body) {
|
|
455
|
+
const errorResponse = new Response(
|
|
456
|
+
JSON.stringify({
|
|
457
|
+
error: {
|
|
458
|
+
message: "Blackbox Web returned an empty response body",
|
|
459
|
+
type: "upstream_error"
|
|
460
|
+
}
|
|
461
|
+
}),
|
|
462
|
+
{ status: 502, headers: { "Content-Type": "application/json" } }
|
|
463
|
+
);
|
|
464
|
+
return {
|
|
465
|
+
response: errorResponse,
|
|
466
|
+
url: BLACKBOX_CHAT_API,
|
|
467
|
+
headers,
|
|
468
|
+
transformedBody
|
|
469
|
+
};
|
|
470
|
+
}
|
|
471
|
+
const responseText = (await readTextResponse(upstreamResponse.body, signal)).trim();
|
|
472
|
+
log?.debug?.("BLACKBOX-WEB", `Response (first 300 chars): ${responseText.slice(0, 300)}`);
|
|
473
|
+
log?.debug?.("BLACKBOX-WEB", `userSelectedModel sent: ${transformedBody.userSelectedModel}`);
|
|
474
|
+
log?.debug?.("BLACKBOX-WEB", `isPremium sent: ${transformedBody.isPremium}`);
|
|
475
|
+
const lowerText = responseText.toLowerCase();
|
|
476
|
+
const isSubscriptionError = /not upgraded|upgrade to a premium plan|upgrade.required/i.test(responseText) || lowerText.includes("please upgrade");
|
|
477
|
+
const isAuthError = /please login|login required|authentication required/i.test(responseText) && !isSubscriptionError;
|
|
478
|
+
const isRateLimit = /rate limit|too many requests/i.test(responseText) && !isSubscriptionError;
|
|
479
|
+
if (isSubscriptionError) {
|
|
480
|
+
log?.warn?.("BLACKBOX-WEB", "Blackbox returned subscription error in response body");
|
|
481
|
+
const errorResponse = new Response(
|
|
482
|
+
JSON.stringify({
|
|
483
|
+
error: {
|
|
484
|
+
message: "Blackbox reports your account lacks a premium subscription. If you have a paid plan, re-paste your session cookie from app.blackbox.ai.",
|
|
485
|
+
type: "upstream_error",
|
|
486
|
+
code: "BLACKBOX_SUBSCRIPTION_REQUIRED"
|
|
487
|
+
}
|
|
488
|
+
}),
|
|
489
|
+
{ status: 402, headers: { "Content-Type": "application/json" } }
|
|
490
|
+
);
|
|
491
|
+
return { response: errorResponse, url: BLACKBOX_CHAT_API, headers, transformedBody };
|
|
492
|
+
}
|
|
493
|
+
if (isAuthError) {
|
|
494
|
+
log?.warn?.("BLACKBOX-WEB", "Blackbox returned auth error in response body");
|
|
495
|
+
const errorResponse = new Response(
|
|
496
|
+
JSON.stringify({
|
|
497
|
+
error: {
|
|
498
|
+
message: "Blackbox session is not authenticated \u2014 re-paste next-auth.session-token from app.blackbox.ai",
|
|
499
|
+
type: "upstream_error",
|
|
500
|
+
code: "BLACKBOX_AUTH_REQUIRED"
|
|
501
|
+
}
|
|
502
|
+
}),
|
|
503
|
+
{ status: 401, headers: { "Content-Type": "application/json" } }
|
|
504
|
+
);
|
|
505
|
+
return { response: errorResponse, url: BLACKBOX_CHAT_API, headers, transformedBody };
|
|
506
|
+
}
|
|
507
|
+
if (isRateLimit) {
|
|
508
|
+
log?.warn?.("BLACKBOX-WEB", "Blackbox returned rate-limit error in response body");
|
|
509
|
+
const errorResponse = new Response(
|
|
510
|
+
JSON.stringify({
|
|
511
|
+
error: {
|
|
512
|
+
message: "Blackbox Web rate limited the session. Wait a moment and retry.",
|
|
513
|
+
type: "upstream_error",
|
|
514
|
+
code: "BLACKBOX_RATE_LIMIT"
|
|
515
|
+
}
|
|
516
|
+
}),
|
|
517
|
+
{ status: 429, headers: { "Content-Type": "application/json" } }
|
|
518
|
+
);
|
|
519
|
+
return { response: errorResponse, url: BLACKBOX_CHAT_API, headers, transformedBody };
|
|
520
|
+
}
|
|
521
|
+
const id = `chatcmpl-blackbox-${crypto.randomUUID().slice(0, 12)}`;
|
|
522
|
+
const created = Math.floor(Date.now() / 1e3);
|
|
523
|
+
if (hasTools) {
|
|
524
|
+
const { content, toolCalls, finishReason } = buildToolAwareResult(
|
|
525
|
+
responseText,
|
|
526
|
+
requestedTools,
|
|
527
|
+
"bbx"
|
|
528
|
+
);
|
|
529
|
+
if (toolCalls) {
|
|
530
|
+
const toolResponse = new Response(
|
|
531
|
+
JSON.stringify({
|
|
532
|
+
id,
|
|
533
|
+
object: "chat.completion",
|
|
534
|
+
created,
|
|
535
|
+
model,
|
|
536
|
+
choices: [
|
|
537
|
+
{
|
|
538
|
+
index: 0,
|
|
539
|
+
message: { role: "assistant", content: null, tool_calls: toolCalls },
|
|
540
|
+
finish_reason: finishReason
|
|
541
|
+
}
|
|
542
|
+
]
|
|
543
|
+
}),
|
|
544
|
+
{ status: 200, headers: { "Content-Type": "application/json" } }
|
|
545
|
+
);
|
|
546
|
+
return { response: toolResponse, url: BLACKBOX_CHAT_API, headers, transformedBody };
|
|
547
|
+
}
|
|
548
|
+
const finalResponse2 = stream ? new Response(buildStreamingResponse(content, model, id, created), {
|
|
549
|
+
status: 200,
|
|
550
|
+
headers: {
|
|
551
|
+
"Content-Type": "text/event-stream",
|
|
552
|
+
"Cache-Control": "no-cache",
|
|
553
|
+
"X-Accel-Buffering": "no"
|
|
554
|
+
}
|
|
555
|
+
}) : buildNonStreamingResponse(content, model, id, created);
|
|
556
|
+
return { response: finalResponse2, url: BLACKBOX_CHAT_API, headers, transformedBody };
|
|
557
|
+
}
|
|
558
|
+
const finalResponse = stream ? new Response(buildStreamingResponse(responseText, model, id, created), {
|
|
559
|
+
status: 200,
|
|
560
|
+
headers: {
|
|
561
|
+
"Content-Type": "text/event-stream",
|
|
562
|
+
"Cache-Control": "no-cache",
|
|
563
|
+
"X-Accel-Buffering": "no"
|
|
564
|
+
}
|
|
565
|
+
}) : buildNonStreamingResponse(responseText, model, id, created);
|
|
566
|
+
return {
|
|
567
|
+
response: finalResponse,
|
|
568
|
+
url: BLACKBOX_CHAT_API,
|
|
569
|
+
headers,
|
|
570
|
+
transformedBody
|
|
571
|
+
};
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
export {
|
|
575
|
+
BlackboxWebExecutor,
|
|
576
|
+
normalizeBlackboxCookieHeader,
|
|
577
|
+
resolveBlackboxValidatedToken
|
|
578
|
+
};
|