@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,198 @@
|
|
|
1
|
+
import path from "path";
|
|
2
|
+
import { execFile } from "child_process";
|
|
3
|
+
import { promisify } from "util";
|
|
4
|
+
import { updateProviderConnection } from '../../dist/lib/localDb.js';
|
|
5
|
+
|
|
6
|
+
// 10 MB buffer — video polling can produce large stderr logs
|
|
7
|
+
const MAX_BUFFER = 10 * 1024 * 1024;
|
|
8
|
+
|
|
9
|
+
// Timeout slightly longer than Python's own internal timeout (600 s for video)
|
|
10
|
+
// to let Python emit its own error rather than getting killed by Node.
|
|
11
|
+
const EXEC_TIMEOUT_MS = 660_000; // 11 minutes
|
|
12
|
+
|
|
13
|
+
export default {
|
|
14
|
+
async generate(credentials, prompt, body, log) {
|
|
15
|
+
const email = credentials.email || credentials.name || "";
|
|
16
|
+
const token = credentials.accessToken || credentials.apiKey || "";
|
|
17
|
+
const model = body.model || "";
|
|
18
|
+
const modelId = model.replace(/^weavy-/, "");
|
|
19
|
+
const size = body.aspect_ratio || body.size || "16:9";
|
|
20
|
+
const duration = body.duration ? parseInt(body.duration) : null;
|
|
21
|
+
const imageUrl = body.image_url || body.imageReference || body.start_frame || body.startFrame || "";
|
|
22
|
+
const endImageUrl = body.end_image_url || body.endFrame || body.end_frame || "";
|
|
23
|
+
const videoUrl = body.video_url || body.videoReference || "";
|
|
24
|
+
const negativePrompt = body.negative_prompt || "";
|
|
25
|
+
|
|
26
|
+
log?.debug?.(
|
|
27
|
+
"WEAVY_VIDEO",
|
|
28
|
+
`Running video generation via python: email=${email}, model=${modelId}, prompt="${prompt.slice(0, 30)}..." dur=${duration} img=${imageUrl ? "yes" : "no"} endImg=${endImageUrl ? "yes" : "no"} vid=${videoUrl ? "yes" : "no"} negPrompt=${negativePrompt ? "yes" : "no"}`
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
const venvPython = path.resolve(process.cwd(), ".venv/bin/python");
|
|
32
|
+
const scriptPath = path.resolve(process.cwd(), "src/automation/weavy_generate.py");
|
|
33
|
+
const profilesDir = path.resolve(process.cwd(), "profiles/weavy");
|
|
34
|
+
|
|
35
|
+
const execFileAsync = promisify(execFile);
|
|
36
|
+
let stdout;
|
|
37
|
+
let stderr;
|
|
38
|
+
|
|
39
|
+
try {
|
|
40
|
+
const args = [
|
|
41
|
+
scriptPath,
|
|
42
|
+
"--email", email,
|
|
43
|
+
"--prompt", prompt,
|
|
44
|
+
"--aspect-ratio", size,
|
|
45
|
+
"--model-type", "video",
|
|
46
|
+
"--model", modelId,
|
|
47
|
+
"--profiles-dir", profilesDir,
|
|
48
|
+
"--token", token,
|
|
49
|
+
];
|
|
50
|
+
if (duration !== null && !isNaN(duration)) {
|
|
51
|
+
args.push("--duration", duration.toString());
|
|
52
|
+
}
|
|
53
|
+
if (imageUrl) {
|
|
54
|
+
args.push("--image-url", imageUrl);
|
|
55
|
+
}
|
|
56
|
+
if (endImageUrl) {
|
|
57
|
+
args.push("--end-image-url", endImageUrl);
|
|
58
|
+
}
|
|
59
|
+
if (videoUrl) {
|
|
60
|
+
args.push("--video-url", videoUrl);
|
|
61
|
+
}
|
|
62
|
+
if (negativePrompt) {
|
|
63
|
+
args.push("--negative-prompt", negativePrompt);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
const res = await execFileAsync(venvPython, args, {
|
|
67
|
+
maxBuffer: MAX_BUFFER,
|
|
68
|
+
timeout: EXEC_TIMEOUT_MS,
|
|
69
|
+
});
|
|
70
|
+
stdout = res.stdout;
|
|
71
|
+
stderr = res.stderr;
|
|
72
|
+
} catch (err) {
|
|
73
|
+
// Parse python JSON error from stdout if available
|
|
74
|
+
if (err.stdout) {
|
|
75
|
+
try {
|
|
76
|
+
const parsed = JSON.parse(err.stdout.trim());
|
|
77
|
+
if (parsed.message) {
|
|
78
|
+
const cleanedMessage = token ? parsed.message.split(token).join("[REDACTED_JWT_TOKEN]") : parsed.message;
|
|
79
|
+
const customErr = new Error(cleanedMessage);
|
|
80
|
+
const statusMatch = cleanedMessage.match(/(?:Status|HTTP) (\d+)/i);
|
|
81
|
+
if (statusMatch) {
|
|
82
|
+
customErr.status = parseInt(statusMatch[1], 10);
|
|
83
|
+
}
|
|
84
|
+
if (customErr.stack && token) {
|
|
85
|
+
customErr.stack = customErr.stack.split(token).join("[REDACTED_JWT_TOKEN]");
|
|
86
|
+
}
|
|
87
|
+
throw customErr;
|
|
88
|
+
}
|
|
89
|
+
} catch (parseErr) {
|
|
90
|
+
if (!(parseErr instanceof SyntaxError)) {
|
|
91
|
+
if (parseErr.message && token) {
|
|
92
|
+
parseErr.message = parseErr.message.split(token).join("[REDACTED_JWT_TOKEN]");
|
|
93
|
+
}
|
|
94
|
+
if (parseErr.stack && token) {
|
|
95
|
+
parseErr.stack = parseErr.stack.split(token).join("[REDACTED_JWT_TOKEN]");
|
|
96
|
+
}
|
|
97
|
+
throw parseErr;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// Redact token from error message, stack, and stderr before logging / re-throwing
|
|
103
|
+
if (err.message) {
|
|
104
|
+
const statusMatch = err.message.match(/(?:Status|HTTP) (\d+)/i);
|
|
105
|
+
if (statusMatch) {
|
|
106
|
+
err.status = parseInt(statusMatch[1], 10);
|
|
107
|
+
}
|
|
108
|
+
if (token) {
|
|
109
|
+
err.message = err.message.split(token).join("[REDACTED_JWT_TOKEN]");
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
if (err.stack && token) {
|
|
113
|
+
err.stack = err.stack.split(token).join("[REDACTED_JWT_TOKEN]");
|
|
114
|
+
}
|
|
115
|
+
if (err.stderr && token) {
|
|
116
|
+
err.stderr = err.stderr.split(token).join("[REDACTED_JWT_TOKEN]");
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
// Log stderr so the caller can see what Python printed
|
|
120
|
+
if (err.stderr) {
|
|
121
|
+
log?.debug?.("WEAVY_VIDEO", `stderr: ${err.stderr.slice(0, 500)}`);
|
|
122
|
+
}
|
|
123
|
+
// killed === true means Node killed the process (timeout or OOM)
|
|
124
|
+
if (err.killed || err.code === "ETIMEDOUT") {
|
|
125
|
+
const timeoutErr = new Error("Weavy video generation timed out (Node exec limit)");
|
|
126
|
+
if (timeoutErr.stack && token) {
|
|
127
|
+
timeoutErr.stack = timeoutErr.stack.split(token).join("[REDACTED_JWT_TOKEN]");
|
|
128
|
+
}
|
|
129
|
+
throw timeoutErr;
|
|
130
|
+
}
|
|
131
|
+
throw err;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
// Surface Python stderr for debugging (trimmed to avoid log spam)
|
|
135
|
+
if (stderr) {
|
|
136
|
+
const cleanedStderr = token ? stderr.split(token).join("[REDACTED_JWT_TOKEN]") : stderr;
|
|
137
|
+
log?.debug?.("WEAVY_VIDEO", `python stderr: ${cleanedStderr.slice(0, 500)}`);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
let parsed;
|
|
141
|
+
try {
|
|
142
|
+
parsed = JSON.parse(stdout.trim());
|
|
143
|
+
} catch (parseErr) {
|
|
144
|
+
const cleanedStdout = token ? stdout.slice(0, 200).split(token).join("[REDACTED_JWT_TOKEN]") : stdout.slice(0, 200);
|
|
145
|
+
log?.debug?.("WEAVY_VIDEO", `JSON parse failed. stdout="${cleanedStdout}"`);
|
|
146
|
+
const customErr = new Error(`Weavy video returned non-JSON output: ${cleanedStdout}`);
|
|
147
|
+
if (customErr.stack && token) {
|
|
148
|
+
customErr.stack = customErr.stack.split(token).join("[REDACTED_JWT_TOKEN]");
|
|
149
|
+
}
|
|
150
|
+
throw customErr;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
if (parsed.status === "success" && Array.isArray(parsed.urls)) {
|
|
154
|
+
// If Python refreshed the token, propagate it so the caller can persist it
|
|
155
|
+
const result = { urls: parsed.urls };
|
|
156
|
+
const connId = credentials.connectionId || credentials.id;
|
|
157
|
+
if (connId) {
|
|
158
|
+
const updates = {};
|
|
159
|
+
if (parsed.balance !== undefined) {
|
|
160
|
+
updates.last_balance = parsed.balance;
|
|
161
|
+
}
|
|
162
|
+
if (parsed.refreshed_token) {
|
|
163
|
+
result.refreshedToken = parsed.refreshed_token;
|
|
164
|
+
updates.accessToken = parsed.refreshed_token;
|
|
165
|
+
updates.cached_jwt = parsed.refreshed_token;
|
|
166
|
+
updates.testStatus = "active";
|
|
167
|
+
try {
|
|
168
|
+
const payload = JSON.parse(Buffer.from(parsed.refreshed_token.split('.')[1], 'base64').toString());
|
|
169
|
+
if (payload && payload.exp) {
|
|
170
|
+
updates.jwt_expires_at = payload.exp;
|
|
171
|
+
updates.expiresAt = new Date(payload.exp * 1000).toISOString();
|
|
172
|
+
}
|
|
173
|
+
} catch (e) {
|
|
174
|
+
const exp = Math.floor(Date.now() / 1000) + 3600;
|
|
175
|
+
updates.jwt_expires_at = exp;
|
|
176
|
+
updates.expiresAt = new Date(exp * 1000).toISOString();
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
if (Object.keys(updates).length > 0) {
|
|
180
|
+
updateProviderConnection(connId, updates).catch(() => {});
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
return result;
|
|
184
|
+
} else {
|
|
185
|
+
const errMsg = parsed.message || "Weavy video generation failed";
|
|
186
|
+
const cleanedMsg = token ? errMsg.split(token).join("[REDACTED_JWT_TOKEN]") : errMsg;
|
|
187
|
+
const apiErr = new Error(cleanedMsg);
|
|
188
|
+
const statusMatch = cleanedMsg.match(/(?:Status|HTTP) (\d+)/i);
|
|
189
|
+
if (statusMatch) {
|
|
190
|
+
apiErr.status = parseInt(statusMatch[1], 10);
|
|
191
|
+
}
|
|
192
|
+
if (apiErr.stack && token) {
|
|
193
|
+
apiErr.stack = apiErr.stack.split(token).join("[REDACTED_JWT_TOKEN]");
|
|
194
|
+
}
|
|
195
|
+
throw apiErr;
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
};
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Web Fetch Handler
|
|
3
|
+
*
|
|
4
|
+
* Handles POST /v1/web/fetch requests.
|
|
5
|
+
* Dispatches to a web-fetch provider executor (Firecrawl, Jina Reader, Tavily, or TinyFish).
|
|
6
|
+
*
|
|
7
|
+
* Request format:
|
|
8
|
+
* {
|
|
9
|
+
* "url": "https://example.com",
|
|
10
|
+
* "provider": "firecrawl" | "jina-reader" | "tavily-search" | "tinyfish", // optional
|
|
11
|
+
* "format": "markdown" | "html" | "links" | "screenshot",
|
|
12
|
+
* "depth": 0 | 1 | 2,
|
|
13
|
+
* "wait_for_selector": "main",
|
|
14
|
+
* "include_metadata": true
|
|
15
|
+
* }
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
import { buildErrorBody } from "../utils/error.js";
|
|
19
|
+
|
|
20
|
+
// ── Inline sanitizeErrorMessage stub ─────────────────────────────────
|
|
21
|
+
function sanitizeErrorMessage(message) {
|
|
22
|
+
if (typeof message !== "string") return "An error occurred";
|
|
23
|
+
return message.replace(/\/[^\s]+\/node_modules/g, "[node_modules]");
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// ── Provider executor stubs ──────────────────────────────────────────
|
|
27
|
+
// These are placeholders; real implementations should be wired up from
|
|
28
|
+
// the executors/ directory when available.
|
|
29
|
+
|
|
30
|
+
async function firecrawlFetch({ url, format, depth, waitForSelector, includeMetadata, credentials }) {
|
|
31
|
+
const apiKey = credentials?.apiKey;
|
|
32
|
+
if (!apiKey) return { success: false, status: 401, error: "Firecrawl API key required" };
|
|
33
|
+
|
|
34
|
+
const res = await fetch("https://api.firecrawl.dev/v1/scrape", {
|
|
35
|
+
method: "POST",
|
|
36
|
+
headers: { "Content-Type": "application/json", Authorization: `Bearer ${apiKey}` },
|
|
37
|
+
body: JSON.stringify({ url, formats: [format], waitForSelector, depth }),
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
if (!res.ok) {
|
|
41
|
+
const errText = await res.text();
|
|
42
|
+
return { success: false, status: res.status, error: sanitizeErrorMessage(errText) };
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
const data = await res.json();
|
|
46
|
+
const content = data?.data?.markdown || data?.data?.html || "";
|
|
47
|
+
const metadata = includeMetadata
|
|
48
|
+
? { title: data?.data?.metadata?.title || null, description: data?.data?.metadata?.description || null }
|
|
49
|
+
: null;
|
|
50
|
+
|
|
51
|
+
return {
|
|
52
|
+
success: true,
|
|
53
|
+
data: { provider: "firecrawl", url, content, links: [], metadata, screenshot_url: null },
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
async function jinaReaderFetch({ url, format, includeMetadata, credentials }) {
|
|
58
|
+
const headers = { Accept: "application/json" };
|
|
59
|
+
if (credentials?.apiKey) headers["Authorization"] = `Bearer ${credentials.apiKey}`;
|
|
60
|
+
|
|
61
|
+
const res = await fetch(`https://r.jina.ai/${url}`, { headers });
|
|
62
|
+
if (!res.ok) {
|
|
63
|
+
const errText = await res.text();
|
|
64
|
+
return { success: false, status: res.status, error: sanitizeErrorMessage(errText) };
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
const data = await res.json();
|
|
68
|
+
const content = data?.data?.content || data?.data?.markdown || "";
|
|
69
|
+
const metadata = includeMetadata
|
|
70
|
+
? { title: data?.data?.title || null, description: data?.data?.description || null }
|
|
71
|
+
: null;
|
|
72
|
+
|
|
73
|
+
return {
|
|
74
|
+
success: true,
|
|
75
|
+
data: { provider: "jina-reader", url, content, links: [], metadata, screenshot_url: null },
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
async function tavilyFetch({ url, format, includeMetadata, credentials }) {
|
|
80
|
+
const apiKey = credentials?.apiKey;
|
|
81
|
+
if (!apiKey) return { success: false, status: 401, error: "Tavily API key required" };
|
|
82
|
+
|
|
83
|
+
const res = await fetch("https://api.tavily.com/extract", {
|
|
84
|
+
method: "POST",
|
|
85
|
+
headers: { "Content-Type": "application/json" },
|
|
86
|
+
body: JSON.stringify({ api_key: apiKey, urls: [url] }),
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
if (!res.ok) {
|
|
90
|
+
const errText = await res.text();
|
|
91
|
+
return { success: false, status: res.status, error: sanitizeErrorMessage(errText) };
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
const data = await res.json();
|
|
95
|
+
const result = data?.results?.[0] || {};
|
|
96
|
+
const content = result.raw_content || result.content || "";
|
|
97
|
+
const metadata = includeMetadata
|
|
98
|
+
? { title: result.title || null, description: null }
|
|
99
|
+
: null;
|
|
100
|
+
|
|
101
|
+
return {
|
|
102
|
+
success: true,
|
|
103
|
+
data: { provider: "tavily-search", url, content, links: [], metadata, screenshot_url: null },
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
async function tinyfishFetch({ url, format, includeMetadata, credentials }) {
|
|
108
|
+
const apiKey = credentials?.apiKey;
|
|
109
|
+
if (!apiKey) return { success: false, status: 401, error: "TinyFish API key required" };
|
|
110
|
+
|
|
111
|
+
const res = await fetch("https://api.tinyfish.io/v1/fetch", {
|
|
112
|
+
method: "POST",
|
|
113
|
+
headers: { "Content-Type": "application/json", Authorization: `Bearer ${apiKey}` },
|
|
114
|
+
body: JSON.stringify({ url, format }),
|
|
115
|
+
});
|
|
116
|
+
|
|
117
|
+
if (!res.ok) {
|
|
118
|
+
const errText = await res.text();
|
|
119
|
+
return { success: false, status: res.status, error: sanitizeErrorMessage(errText) };
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
const data = await res.json();
|
|
123
|
+
const content = data?.content || "";
|
|
124
|
+
const metadata = includeMetadata
|
|
125
|
+
? { title: data?.title || null, description: data?.description || null }
|
|
126
|
+
: null;
|
|
127
|
+
|
|
128
|
+
return {
|
|
129
|
+
success: true,
|
|
130
|
+
data: { provider: "tinyfish", url, content, links: data?.links || [], metadata, screenshot_url: null },
|
|
131
|
+
};
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
// ── Constants ────────────────────────────────────────────────────────
|
|
135
|
+
const WEB_FETCH_PROVIDERS = ["firecrawl", "jina-reader", "tavily-search", "tinyfish"];
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Execute a web fetch request against the specified (or auto-selected) provider.
|
|
139
|
+
*/
|
|
140
|
+
export async function handleWebFetch(req, credentials, resolvedProvider) {
|
|
141
|
+
const provider = resolvedProvider ?? req.provider ?? "firecrawl";
|
|
142
|
+
|
|
143
|
+
const format = req.format ?? "markdown";
|
|
144
|
+
const includeMetadata = req.include_metadata ?? false;
|
|
145
|
+
|
|
146
|
+
try {
|
|
147
|
+
switch (provider) {
|
|
148
|
+
case "firecrawl":
|
|
149
|
+
return await firecrawlFetch({
|
|
150
|
+
url: req.url,
|
|
151
|
+
format,
|
|
152
|
+
depth: req.depth ?? 0,
|
|
153
|
+
waitForSelector: req.wait_for_selector,
|
|
154
|
+
includeMetadata,
|
|
155
|
+
credentials,
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
case "jina-reader":
|
|
159
|
+
return await jinaReaderFetch({
|
|
160
|
+
url: req.url,
|
|
161
|
+
format,
|
|
162
|
+
includeMetadata,
|
|
163
|
+
credentials,
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
case "tavily-search":
|
|
167
|
+
return await tavilyFetch({
|
|
168
|
+
url: req.url,
|
|
169
|
+
format,
|
|
170
|
+
includeMetadata,
|
|
171
|
+
credentials,
|
|
172
|
+
});
|
|
173
|
+
|
|
174
|
+
case "tinyfish":
|
|
175
|
+
return await tinyfishFetch({
|
|
176
|
+
url: req.url,
|
|
177
|
+
format,
|
|
178
|
+
includeMetadata,
|
|
179
|
+
credentials,
|
|
180
|
+
});
|
|
181
|
+
|
|
182
|
+
default: {
|
|
183
|
+
return {
|
|
184
|
+
success: false,
|
|
185
|
+
status: 400,
|
|
186
|
+
error: `Unknown web fetch provider: ${provider}`,
|
|
187
|
+
};
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
} catch (err) {
|
|
191
|
+
const msg =
|
|
192
|
+
err instanceof Error ? sanitizeErrorMessage(err.message) : sanitizeErrorMessage(String(err));
|
|
193
|
+
const body = buildErrorBody(502, msg);
|
|
194
|
+
return {
|
|
195
|
+
success: false,
|
|
196
|
+
status: 502,
|
|
197
|
+
error: body.error.message,
|
|
198
|
+
};
|
|
199
|
+
}
|
|
200
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
// Patch global fetch with proxy support (must be first)
|
|
2
|
+
import "./utils/proxyFetch.js";
|
|
3
|
+
|
|
4
|
+
// Config
|
|
5
|
+
export { PROVIDERS } from "./config/providers.js";
|
|
6
|
+
export { OAUTH_ENDPOINTS, CLAUDE_SYSTEM_PROMPT } from "./config/appConstants.js";
|
|
7
|
+
export { CACHE_TTL, DEFAULT_MAX_TOKENS, COOLDOWN_MS, BACKOFF_CONFIG } from "./config/runtimeConfig.js";
|
|
8
|
+
export {
|
|
9
|
+
PROVIDER_MODELS,
|
|
10
|
+
getProviderModels,
|
|
11
|
+
getDefaultModel,
|
|
12
|
+
isValidModel,
|
|
13
|
+
findModelName,
|
|
14
|
+
getModelTargetFormat,
|
|
15
|
+
PROVIDER_ID_TO_ALIAS,
|
|
16
|
+
getModelsByProviderId
|
|
17
|
+
} from "./config/providerModels.js";
|
|
18
|
+
|
|
19
|
+
// Translator
|
|
20
|
+
export { FORMATS } from "./translator/formats.js";
|
|
21
|
+
export {
|
|
22
|
+
register,
|
|
23
|
+
translateRequest,
|
|
24
|
+
translateResponse,
|
|
25
|
+
needsTranslation,
|
|
26
|
+
initState,
|
|
27
|
+
initTranslators
|
|
28
|
+
} from "./translator/index.js";
|
|
29
|
+
|
|
30
|
+
// Services
|
|
31
|
+
export {
|
|
32
|
+
detectFormat,
|
|
33
|
+
getTargetFormat
|
|
34
|
+
} from "./services/provider.js";
|
|
35
|
+
|
|
36
|
+
export { parseModel, resolveModelAliasFromMap, getModelInfoCore } from "./services/model.js";
|
|
37
|
+
|
|
38
|
+
export {
|
|
39
|
+
checkFallbackError,
|
|
40
|
+
isAccountUnavailable,
|
|
41
|
+
getUnavailableUntil,
|
|
42
|
+
filterAvailableAccounts
|
|
43
|
+
} from "./services/accountFallback.js";
|
|
44
|
+
|
|
45
|
+
export {
|
|
46
|
+
TOKEN_EXPIRY_BUFFER_MS,
|
|
47
|
+
refreshAccessToken,
|
|
48
|
+
refreshClaudeOAuthToken,
|
|
49
|
+
refreshGoogleToken,
|
|
50
|
+
refreshQwenToken,
|
|
51
|
+
refreshCodexToken,
|
|
52
|
+
refreshIflowToken,
|
|
53
|
+
refreshGitHubToken,
|
|
54
|
+
refreshCopilotToken,
|
|
55
|
+
getAccessToken,
|
|
56
|
+
refreshTokenByProvider
|
|
57
|
+
} from "./services/tokenRefresh.js";
|
|
58
|
+
|
|
59
|
+
export {
|
|
60
|
+
CODEX_MAX_REFRESH_AGE_MS,
|
|
61
|
+
shouldRefreshCredentials,
|
|
62
|
+
refreshProviderCredentials,
|
|
63
|
+
mergeRefreshedCredentials,
|
|
64
|
+
mergeProviderSpecificData,
|
|
65
|
+
} from "./services/oauthCredentialManager.js";
|
|
66
|
+
|
|
67
|
+
// Handlers
|
|
68
|
+
export { handleChatCore, isTokenExpiringSoon } from "./handlers/chatCore.js";
|
|
69
|
+
export { createStreamController, pipeWithDisconnect, createDisconnectAwareStream } from "./utils/streamHandler.js";
|
|
70
|
+
|
|
71
|
+
// Executors
|
|
72
|
+
export { getExecutor, hasSpecializedExecutor } from "./executors/index.js";
|
|
73
|
+
|
|
74
|
+
// Utils
|
|
75
|
+
export { errorResponse, formatProviderError } from "./utils/error.js";
|
|
76
|
+
export {
|
|
77
|
+
createSSETransformStreamWithLogger,
|
|
78
|
+
createPassthroughStreamWithLogger
|
|
79
|
+
} from "./utils/stream.js";
|