@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,126 @@
|
|
|
1
|
+
import { createErrorResult, parseUpstreamError, formatProviderError } from "../utils/error.js";
|
|
2
|
+
import { HTTP_STATUS } from "../config/runtimeConfig.js";
|
|
3
|
+
import { getExecutor } from "../executors/index.js";
|
|
4
|
+
import { refreshWithRetry } from "../services/tokenRefresh.js";
|
|
5
|
+
import { getEmbeddingAdapter } from "./embeddingProviders/index.js";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Core embeddings handler — orchestrator only. Provider-specific URL/headers/body/normalize
|
|
9
|
+
* live in `./embeddingProviders/{id}.js`.
|
|
10
|
+
*
|
|
11
|
+
* @returns {Promise<{ success: boolean, response: Response, status?: number, error?: string }>}
|
|
12
|
+
*/
|
|
13
|
+
export async function handleEmbeddingsCore({
|
|
14
|
+
body,
|
|
15
|
+
modelInfo,
|
|
16
|
+
credentials,
|
|
17
|
+
log,
|
|
18
|
+
onCredentialsRefreshed,
|
|
19
|
+
onRequestSuccess,
|
|
20
|
+
}) {
|
|
21
|
+
const { provider, model } = modelInfo;
|
|
22
|
+
|
|
23
|
+
// Validate input
|
|
24
|
+
const input = body.input;
|
|
25
|
+
if (!input) {
|
|
26
|
+
return createErrorResult(HTTP_STATUS.BAD_REQUEST, "Missing required field: input");
|
|
27
|
+
}
|
|
28
|
+
if (typeof input !== "string" && !Array.isArray(input)) {
|
|
29
|
+
return createErrorResult(HTTP_STATUS.BAD_REQUEST, "input must be a string or array of strings");
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
const adapter = getEmbeddingAdapter(provider);
|
|
33
|
+
if (!adapter) {
|
|
34
|
+
return createErrorResult(
|
|
35
|
+
HTTP_STATUS.BAD_REQUEST,
|
|
36
|
+
`Provider '${provider}' does not support embeddings.`
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const ctx = { input };
|
|
41
|
+
const url = adapter.buildUrl(model, credentials, ctx);
|
|
42
|
+
const headers = adapter.buildHeaders(credentials, ctx);
|
|
43
|
+
const requestBody = adapter.buildBody(model, {
|
|
44
|
+
input,
|
|
45
|
+
encoding_format: body.encoding_format || "float",
|
|
46
|
+
dimensions: body.dimensions,
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
log?.debug?.("EMBEDDINGS", `${provider.toUpperCase()} | ${model} | input_type=${Array.isArray(input) ? `array[${input.length}]` : "string"}`);
|
|
50
|
+
|
|
51
|
+
let providerResponse;
|
|
52
|
+
try {
|
|
53
|
+
providerResponse = await fetch(url, {
|
|
54
|
+
method: "POST",
|
|
55
|
+
headers,
|
|
56
|
+
body: JSON.stringify(requestBody),
|
|
57
|
+
});
|
|
58
|
+
} catch (error) {
|
|
59
|
+
const errMsg = formatProviderError(error, provider, model, HTTP_STATUS.BAD_GATEWAY);
|
|
60
|
+
log?.debug?.("EMBEDDINGS", `Fetch error: ${errMsg}`);
|
|
61
|
+
return createErrorResult(HTTP_STATUS.BAD_GATEWAY, errMsg);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// Handle 401/403 — try token refresh (skip for noAuth providers)
|
|
65
|
+
const executor = getExecutor(provider);
|
|
66
|
+
if (
|
|
67
|
+
!executor?.noAuth &&
|
|
68
|
+
(providerResponse.status === HTTP_STATUS.UNAUTHORIZED ||
|
|
69
|
+
providerResponse.status === HTTP_STATUS.FORBIDDEN)
|
|
70
|
+
) {
|
|
71
|
+
const newCredentials = await refreshWithRetry(
|
|
72
|
+
() => executor.refreshCredentials(credentials, log),
|
|
73
|
+
3,
|
|
74
|
+
log
|
|
75
|
+
);
|
|
76
|
+
|
|
77
|
+
if (newCredentials?.accessToken || newCredentials?.apiKey) {
|
|
78
|
+
log?.info?.("TOKEN", `${provider.toUpperCase()} | refreshed for embeddings`);
|
|
79
|
+
Object.assign(credentials, newCredentials);
|
|
80
|
+
if (onCredentialsRefreshed) await onCredentialsRefreshed(newCredentials);
|
|
81
|
+
|
|
82
|
+
try {
|
|
83
|
+
const retryHeaders = adapter.buildHeaders(credentials, ctx);
|
|
84
|
+
const retryUrl = adapter.buildUrl(model, credentials, ctx);
|
|
85
|
+
providerResponse = await fetch(retryUrl, {
|
|
86
|
+
method: "POST",
|
|
87
|
+
headers: retryHeaders,
|
|
88
|
+
body: JSON.stringify(requestBody),
|
|
89
|
+
});
|
|
90
|
+
} catch {
|
|
91
|
+
log?.warn?.("TOKEN", `${provider.toUpperCase()} | retry after refresh failed`);
|
|
92
|
+
}
|
|
93
|
+
} else {
|
|
94
|
+
log?.warn?.("TOKEN", `${provider.toUpperCase()} | refresh failed`);
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
if (!providerResponse.ok) {
|
|
99
|
+
const { statusCode, message } = await parseUpstreamError(providerResponse);
|
|
100
|
+
const errMsg = formatProviderError(new Error(message), provider, model, statusCode);
|
|
101
|
+
log?.debug?.("EMBEDDINGS", `Provider error: ${errMsg}`);
|
|
102
|
+
return createErrorResult(statusCode, errMsg);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
let responseBody;
|
|
106
|
+
try {
|
|
107
|
+
responseBody = await providerResponse.json();
|
|
108
|
+
} catch {
|
|
109
|
+
return createErrorResult(HTTP_STATUS.BAD_GATEWAY, `Invalid JSON response from ${provider}`);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
if (onRequestSuccess) await onRequestSuccess();
|
|
113
|
+
|
|
114
|
+
const normalized = adapter.normalize(responseBody, model);
|
|
115
|
+
log?.debug?.("EMBEDDINGS", `Success | usage=${JSON.stringify(normalized.usage || {})}`);
|
|
116
|
+
|
|
117
|
+
return {
|
|
118
|
+
success: true,
|
|
119
|
+
response: new Response(JSON.stringify(normalized), {
|
|
120
|
+
headers: {
|
|
121
|
+
"Content-Type": "application/json",
|
|
122
|
+
"Access-Control-Allow-Origin": "*",
|
|
123
|
+
},
|
|
124
|
+
}),
|
|
125
|
+
};
|
|
126
|
+
}
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
// Web Fetch handler — dispatches to firecrawl, jina-reader, tavily, exa
|
|
2
|
+
// Returns normalized shape across all providers
|
|
3
|
+
|
|
4
|
+
const DEFAULT_TIMEOUT_MS = 15000;
|
|
5
|
+
const DEFAULT_FORMAT = "markdown";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @typedef {Object} FetchResult
|
|
9
|
+
* @property {boolean} success
|
|
10
|
+
* @property {number} [status]
|
|
11
|
+
* @property {string} [error]
|
|
12
|
+
* @property {Object} [data]
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Fetch with timeout abort.
|
|
17
|
+
* @param {string} url
|
|
18
|
+
* @param {RequestInit} init
|
|
19
|
+
* @param {number} timeoutMs
|
|
20
|
+
*/
|
|
21
|
+
// Strip non-ASCII chars from header values (HTTP headers must be ByteString).
|
|
22
|
+
function sanitizeHeaders(headers) {
|
|
23
|
+
if (!headers) return headers;
|
|
24
|
+
const out = {};
|
|
25
|
+
for (const [k, v] of Object.entries(headers)) {
|
|
26
|
+
out[k] = typeof v === "string" ? v.replace(/[^\x00-\xFF]/g, "").trim() : v;
|
|
27
|
+
}
|
|
28
|
+
return out;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
async function tryFetch(url, init, timeoutMs) {
|
|
32
|
+
const ctrl = new AbortController();
|
|
33
|
+
const timer = setTimeout(() => ctrl.abort(), timeoutMs);
|
|
34
|
+
try {
|
|
35
|
+
const res = await fetch(url, { ...init, headers: sanitizeHeaders(init.headers), signal: ctrl.signal });
|
|
36
|
+
return { ok: true, res };
|
|
37
|
+
} catch (err) {
|
|
38
|
+
const isAbort = err?.name === "AbortError";
|
|
39
|
+
return { ok: false, timeout: isAbort, error: err?.message || String(err) };
|
|
40
|
+
} finally {
|
|
41
|
+
clearTimeout(timer);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function truncate(text, max) {
|
|
46
|
+
if (!text || typeof text !== "string") return text || "";
|
|
47
|
+
if (!max || max <= 0) return text;
|
|
48
|
+
return text.length > max ? text.slice(0, max) : text;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function parseJinaTitle(text) {
|
|
52
|
+
const m = String(text || "").match(/^\s*#\s+(.+)$/m);
|
|
53
|
+
return m ? m[1].trim() : null;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
function buildData({ provider, url, title, format, text, costUsd, responseMs, upstreamMs }) {
|
|
57
|
+
return {
|
|
58
|
+
provider,
|
|
59
|
+
url,
|
|
60
|
+
title: title || null,
|
|
61
|
+
content: { format, text: text || "", length: (text || "").length },
|
|
62
|
+
metadata: { author: null, published_at: null, language: null },
|
|
63
|
+
usage: { fetch_cost_usd: costUsd ?? null },
|
|
64
|
+
metrics: { response_time_ms: responseMs, upstream_latency_ms: upstreamMs }
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
async function readJsonOrText(res) {
|
|
69
|
+
const ct = res.headers.get("content-type") || "";
|
|
70
|
+
if (ct.includes("application/json")) {
|
|
71
|
+
try { return { json: await res.json() }; } catch { return { text: "" }; }
|
|
72
|
+
}
|
|
73
|
+
return { text: await res.text() };
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Main handler.
|
|
78
|
+
* @param {Object} params
|
|
79
|
+
* @param {string} params.url
|
|
80
|
+
* @param {string} [params.format]
|
|
81
|
+
* @param {number} [params.maxCharacters]
|
|
82
|
+
* @param {string} params.provider
|
|
83
|
+
* @param {Object} [params.providerConfig]
|
|
84
|
+
* @param {Object} [params.credentials]
|
|
85
|
+
* @param {Function} [params.log]
|
|
86
|
+
* @returns {Promise<FetchResult>}
|
|
87
|
+
*/
|
|
88
|
+
export async function handleFetchCore({ url, format, maxCharacters, provider, providerConfig, credentials, log }) {
|
|
89
|
+
if (!url || typeof url !== "string") {
|
|
90
|
+
return { success: false, status: 400, error: "url is required" };
|
|
91
|
+
}
|
|
92
|
+
if (!provider) {
|
|
93
|
+
return { success: false, status: 400, error: "provider is required" };
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
const fmt = format || DEFAULT_FORMAT;
|
|
97
|
+
const timeoutMs = providerConfig?.timeoutMs || DEFAULT_TIMEOUT_MS;
|
|
98
|
+
const apiKey = credentials?.apiKey || credentials?.key || credentials?.token || "";
|
|
99
|
+
const costPerQuery = providerConfig?.costPerQuery ?? null;
|
|
100
|
+
const startedAt = Date.now();
|
|
101
|
+
|
|
102
|
+
try {
|
|
103
|
+
if (provider === "firecrawl") {
|
|
104
|
+
return await runFirecrawl({ url, fmt, timeoutMs, apiKey, maxCharacters, costPerQuery, startedAt });
|
|
105
|
+
}
|
|
106
|
+
if (provider === "jina-reader") {
|
|
107
|
+
return await runJina({ url, fmt, timeoutMs, apiKey, maxCharacters, costPerQuery, startedAt });
|
|
108
|
+
}
|
|
109
|
+
if (provider === "tavily") {
|
|
110
|
+
return await runTavily({ url, fmt, timeoutMs, apiKey, maxCharacters, costPerQuery, startedAt });
|
|
111
|
+
}
|
|
112
|
+
if (provider === "exa") {
|
|
113
|
+
return await runExa({ url, fmt, timeoutMs, apiKey, maxCharacters, costPerQuery, startedAt });
|
|
114
|
+
}
|
|
115
|
+
return { success: false, status: 400, error: `Unsupported provider: ${provider}` };
|
|
116
|
+
} catch (err) {
|
|
117
|
+
log?.("fetch handler error:", err?.message || err);
|
|
118
|
+
return { success: false, status: 502, error: err?.message || "Internal fetch error" };
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
async function runFirecrawl({ url, fmt, timeoutMs, apiKey, maxCharacters, costPerQuery, startedAt }) {
|
|
123
|
+
const upstreamStart = Date.now();
|
|
124
|
+
const r = await tryFetch("https://api.firecrawl.dev/v1/scrape", {
|
|
125
|
+
method: "POST",
|
|
126
|
+
headers: {
|
|
127
|
+
"content-type": "application/json",
|
|
128
|
+
...(apiKey ? { authorization: `Bearer ${apiKey}` } : {})
|
|
129
|
+
},
|
|
130
|
+
body: JSON.stringify({ url, formats: [fmt] })
|
|
131
|
+
}, timeoutMs);
|
|
132
|
+
|
|
133
|
+
if (!r.ok) {
|
|
134
|
+
return { success: false, status: r.timeout ? 504 : 502, error: r.error };
|
|
135
|
+
}
|
|
136
|
+
const upstreamMs = Date.now() - upstreamStart;
|
|
137
|
+
const { json } = await readJsonOrText(r.res);
|
|
138
|
+
if (!r.res.ok) {
|
|
139
|
+
return { success: false, status: r.res.status, error: json?.error || `Firecrawl error: ${r.res.status}` };
|
|
140
|
+
}
|
|
141
|
+
const d = json?.data || {};
|
|
142
|
+
const text = truncate(d.markdown || d.html || d.text || "", maxCharacters);
|
|
143
|
+
const title = d.metadata?.title || null;
|
|
144
|
+
return {
|
|
145
|
+
success: true,
|
|
146
|
+
data: buildData({
|
|
147
|
+
provider: "firecrawl", url, title, format: fmt, text,
|
|
148
|
+
costUsd: costPerQuery, responseMs: Date.now() - startedAt, upstreamMs
|
|
149
|
+
})
|
|
150
|
+
};
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
async function runJina({ url, fmt, timeoutMs, apiKey, maxCharacters, costPerQuery, startedAt }) {
|
|
154
|
+
const target = `https://r.jina.ai/${encodeURIComponent(url)}`;
|
|
155
|
+
const upstreamStart = Date.now();
|
|
156
|
+
const r = await tryFetch(target, {
|
|
157
|
+
method: "GET",
|
|
158
|
+
headers: apiKey ? { authorization: `Bearer ${apiKey}` } : {}
|
|
159
|
+
}, timeoutMs);
|
|
160
|
+
|
|
161
|
+
if (!r.ok) {
|
|
162
|
+
return { success: false, status: r.timeout ? 504 : 502, error: r.error };
|
|
163
|
+
}
|
|
164
|
+
const upstreamMs = Date.now() - upstreamStart;
|
|
165
|
+
const body = await r.res.text();
|
|
166
|
+
if (!r.res.ok) {
|
|
167
|
+
return { success: false, status: r.res.status, error: body?.slice(0, 500) || `Jina error: ${r.res.status}` };
|
|
168
|
+
}
|
|
169
|
+
const text = truncate(body, maxCharacters);
|
|
170
|
+
return {
|
|
171
|
+
success: true,
|
|
172
|
+
data: buildData({
|
|
173
|
+
provider: "jina-reader", url, title: parseJinaTitle(body), format: fmt, text,
|
|
174
|
+
costUsd: costPerQuery, responseMs: Date.now() - startedAt, upstreamMs
|
|
175
|
+
})
|
|
176
|
+
};
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
async function runTavily({ url, fmt, timeoutMs, apiKey, maxCharacters, costPerQuery, startedAt }) {
|
|
180
|
+
const upstreamStart = Date.now();
|
|
181
|
+
const r = await tryFetch("https://api.tavily.com/extract", {
|
|
182
|
+
method: "POST",
|
|
183
|
+
headers: {
|
|
184
|
+
"content-type": "application/json",
|
|
185
|
+
...(apiKey ? { authorization: `Bearer ${apiKey}` } : {})
|
|
186
|
+
},
|
|
187
|
+
body: JSON.stringify({ urls: [url], extract_depth: "basic" })
|
|
188
|
+
}, timeoutMs);
|
|
189
|
+
|
|
190
|
+
if (!r.ok) {
|
|
191
|
+
return { success: false, status: r.timeout ? 504 : 502, error: r.error };
|
|
192
|
+
}
|
|
193
|
+
const upstreamMs = Date.now() - upstreamStart;
|
|
194
|
+
const { json } = await readJsonOrText(r.res);
|
|
195
|
+
if (!r.res.ok) {
|
|
196
|
+
return { success: false, status: r.res.status, error: json?.error || `Tavily error: ${r.res.status}` };
|
|
197
|
+
}
|
|
198
|
+
const first = json?.results?.[0] || {};
|
|
199
|
+
const text = truncate(first.raw_content || "", maxCharacters);
|
|
200
|
+
return {
|
|
201
|
+
success: true,
|
|
202
|
+
data: buildData({
|
|
203
|
+
provider: "tavily", url, title: null, format: fmt, text,
|
|
204
|
+
costUsd: costPerQuery, responseMs: Date.now() - startedAt, upstreamMs
|
|
205
|
+
})
|
|
206
|
+
};
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
async function runExa({ url, fmt, timeoutMs, apiKey, maxCharacters, costPerQuery, startedAt }) {
|
|
210
|
+
const upstreamStart = Date.now();
|
|
211
|
+
const r = await tryFetch("https://api.exa.ai/contents", {
|
|
212
|
+
method: "POST",
|
|
213
|
+
headers: {
|
|
214
|
+
"content-type": "application/json",
|
|
215
|
+
...(apiKey ? { "x-api-key": apiKey } : {})
|
|
216
|
+
},
|
|
217
|
+
body: JSON.stringify({ ids: [url], text: true })
|
|
218
|
+
}, timeoutMs);
|
|
219
|
+
|
|
220
|
+
if (!r.ok) {
|
|
221
|
+
return { success: false, status: r.timeout ? 504 : 502, error: r.error };
|
|
222
|
+
}
|
|
223
|
+
const upstreamMs = Date.now() - upstreamStart;
|
|
224
|
+
const { json } = await readJsonOrText(r.res);
|
|
225
|
+
if (!r.res.ok) {
|
|
226
|
+
return { success: false, status: r.res.status, error: json?.error || `Exa error: ${r.res.status}` };
|
|
227
|
+
}
|
|
228
|
+
const first = json?.results?.[0] || {};
|
|
229
|
+
const text = truncate(first.text || "", maxCharacters);
|
|
230
|
+
return {
|
|
231
|
+
success: true,
|
|
232
|
+
data: buildData({
|
|
233
|
+
provider: "exa", url, title: first.title || null, format: fmt, text,
|
|
234
|
+
costUsd: costPerQuery, responseMs: Date.now() - startedAt, upstreamMs
|
|
235
|
+
})
|
|
236
|
+
};
|
|
237
|
+
}
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
import { createErrorResult, parseUpstreamError, formatProviderError } from "../utils/error.js";
|
|
2
|
+
import { HTTP_STATUS } from "../config/runtimeConfig.js";
|
|
3
|
+
import { refreshWithRetry } from "../services/tokenRefresh.js";
|
|
4
|
+
import { getExecutor } from "../executors/index.js";
|
|
5
|
+
import { getImageAdapter } from "./imageProviders/index.js";
|
|
6
|
+
import { urlToBase64 } from "./imageProviders/_base.js";
|
|
7
|
+
|
|
8
|
+
function serializeRequestBody(requestBody) {
|
|
9
|
+
if (typeof FormData !== "undefined" && requestBody instanceof FormData) return requestBody;
|
|
10
|
+
if (typeof requestBody === "string") return requestBody;
|
|
11
|
+
return JSON.stringify(requestBody);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Core image generation handler — orchestrator only.
|
|
16
|
+
* Provider-specific URL/headers/body/parse/normalize live in `./imageProviders/{id}.js`.
|
|
17
|
+
*
|
|
18
|
+
* @param {object} options
|
|
19
|
+
* @param {object} options.body - Request body { model, prompt, n, size, ... }
|
|
20
|
+
* @param {object} options.modelInfo - { provider, model }
|
|
21
|
+
* @param {object} options.credentials - Provider credentials
|
|
22
|
+
* @param {object} [options.log] - Logger
|
|
23
|
+
* @param {boolean} [options.streamToClient] - Pipe SSE to client (codex)
|
|
24
|
+
* @param {boolean} [options.binaryOutput] - Return raw image bytes
|
|
25
|
+
* @param {function} [options.onCredentialsRefreshed]
|
|
26
|
+
* @param {function} [options.onRequestSuccess]
|
|
27
|
+
* @returns {Promise<{ success: boolean, response: Response, status?: number, error?: string }>}
|
|
28
|
+
*/
|
|
29
|
+
export async function handleImageGenerationCore({
|
|
30
|
+
body,
|
|
31
|
+
modelInfo,
|
|
32
|
+
credentials,
|
|
33
|
+
log,
|
|
34
|
+
streamToClient = false,
|
|
35
|
+
binaryOutput = false,
|
|
36
|
+
onCredentialsRefreshed,
|
|
37
|
+
onRequestSuccess,
|
|
38
|
+
}) {
|
|
39
|
+
const { provider, model } = modelInfo;
|
|
40
|
+
|
|
41
|
+
if (!body.prompt) {
|
|
42
|
+
return createErrorResult(HTTP_STATUS.BAD_REQUEST, "Missing required field: prompt");
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
const adapter = getImageAdapter(provider);
|
|
46
|
+
if (!adapter) {
|
|
47
|
+
return createErrorResult(
|
|
48
|
+
HTTP_STATUS.BAD_REQUEST,
|
|
49
|
+
`Provider '${provider}' does not support image generation`
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// Executor-delegating adapters: skip manual URL/headers/body, use the proven executor flow
|
|
54
|
+
if (adapter.useExecutor && adapter.executeViaExecutor) {
|
|
55
|
+
try {
|
|
56
|
+
log?.debug?.("IMAGE", `${provider.toUpperCase()} | ${model} | prompt="${body.prompt.slice(0, 50)}..." (executor)`);
|
|
57
|
+
const responseBody = await adapter.executeViaExecutor(model, body, credentials, log);
|
|
58
|
+
if (onRequestSuccess) await onRequestSuccess();
|
|
59
|
+
const normalized = adapter.normalize(responseBody, body.prompt);
|
|
60
|
+
const finalBody = (normalized.created && Array.isArray(normalized.data)) ? normalized : responseBody;
|
|
61
|
+
|
|
62
|
+
if (binaryOutput) {
|
|
63
|
+
const first = finalBody.data?.[0];
|
|
64
|
+
let b64 = first?.b64_json;
|
|
65
|
+
if (!b64 && first?.url) {
|
|
66
|
+
try { b64 = await urlToBase64(first.url); } catch {}
|
|
67
|
+
}
|
|
68
|
+
if (b64) {
|
|
69
|
+
const buf = Buffer.from(b64, "base64");
|
|
70
|
+
const fmt = (body.output_format || "png").toLowerCase();
|
|
71
|
+
const mime = fmt === "jpeg" || fmt === "jpg" ? "image/jpeg" : fmt === "webp" ? "image/webp" : "image/png";
|
|
72
|
+
return {
|
|
73
|
+
success: true,
|
|
74
|
+
response: new Response(buf, {
|
|
75
|
+
headers: { "Content-Type": mime, "Content-Disposition": `inline; filename="image.${fmt === "jpeg" ? "jpg" : fmt}"`, "Access-Control-Allow-Origin": "*" },
|
|
76
|
+
}),
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
return {
|
|
82
|
+
success: true,
|
|
83
|
+
response: new Response(JSON.stringify(finalBody), {
|
|
84
|
+
headers: { "Content-Type": "application/json", "Access-Control-Allow-Origin": "*" },
|
|
85
|
+
}),
|
|
86
|
+
};
|
|
87
|
+
} catch (error) {
|
|
88
|
+
const errMsg = formatProviderError(error, provider, model, HTTP_STATUS.BAD_GATEWAY);
|
|
89
|
+
log?.debug?.("IMAGE", `Executor error: ${errMsg}`);
|
|
90
|
+
return createErrorResult(HTTP_STATUS.BAD_GATEWAY, errMsg);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
let url;
|
|
95
|
+
let headers;
|
|
96
|
+
let requestBody;
|
|
97
|
+
|
|
98
|
+
try {
|
|
99
|
+
url = adapter.buildUrl(model, credentials);
|
|
100
|
+
requestBody = await adapter.buildBody(model, body);
|
|
101
|
+
headers = adapter.buildHeaders(credentials, requestBody, model, body);
|
|
102
|
+
} catch (error) {
|
|
103
|
+
return createErrorResult(HTTP_STATUS.BAD_REQUEST, error.message || `Invalid ${provider} image request`);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
log?.debug?.("IMAGE", `${provider.toUpperCase()} | ${model} | prompt="${body.prompt.slice(0, 50)}..."`);
|
|
107
|
+
|
|
108
|
+
let providerResponse;
|
|
109
|
+
try {
|
|
110
|
+
providerResponse = await fetch(url, {
|
|
111
|
+
method: "POST",
|
|
112
|
+
headers,
|
|
113
|
+
body: serializeRequestBody(requestBody),
|
|
114
|
+
});
|
|
115
|
+
} catch (error) {
|
|
116
|
+
const errMsg = formatProviderError(error, provider, model, HTTP_STATUS.BAD_GATEWAY);
|
|
117
|
+
log?.debug?.("IMAGE", `Fetch error: ${errMsg}`);
|
|
118
|
+
return createErrorResult(HTTP_STATUS.BAD_GATEWAY, errMsg);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
// Handle 401/403 — try token refresh (skipped for noAuth providers)
|
|
122
|
+
const executor = getExecutor(provider);
|
|
123
|
+
if (
|
|
124
|
+
!executor?.noAuth &&
|
|
125
|
+
!adapter.noAuth &&
|
|
126
|
+
(providerResponse.status === HTTP_STATUS.UNAUTHORIZED ||
|
|
127
|
+
providerResponse.status === HTTP_STATUS.FORBIDDEN)
|
|
128
|
+
) {
|
|
129
|
+
const newCredentials = await refreshWithRetry(
|
|
130
|
+
() => executor.refreshCredentials(credentials, log),
|
|
131
|
+
3,
|
|
132
|
+
log
|
|
133
|
+
);
|
|
134
|
+
|
|
135
|
+
if (newCredentials?.accessToken || newCredentials?.apiKey) {
|
|
136
|
+
log?.info?.("TOKEN", `${provider.toUpperCase()} | refreshed for image generation`);
|
|
137
|
+
Object.assign(credentials, newCredentials);
|
|
138
|
+
if (onCredentialsRefreshed) await onCredentialsRefreshed(newCredentials);
|
|
139
|
+
|
|
140
|
+
try {
|
|
141
|
+
const retryBody = await adapter.buildBody(model, body);
|
|
142
|
+
const retryHeaders = adapter.buildHeaders(credentials, retryBody, model, body);
|
|
143
|
+
const retryUrl = adapter.buildUrl(model, credentials);
|
|
144
|
+
providerResponse = await fetch(retryUrl, {
|
|
145
|
+
method: "POST",
|
|
146
|
+
headers: retryHeaders,
|
|
147
|
+
body: serializeRequestBody(retryBody),
|
|
148
|
+
});
|
|
149
|
+
} catch {
|
|
150
|
+
log?.warn?.("TOKEN", `${provider.toUpperCase()} | retry after refresh failed`);
|
|
151
|
+
}
|
|
152
|
+
} else {
|
|
153
|
+
log?.warn?.("TOKEN", `${provider.toUpperCase()} | refresh failed`);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
if (!providerResponse.ok) {
|
|
158
|
+
const { statusCode, message } = await parseUpstreamError(providerResponse);
|
|
159
|
+
const errMsg = formatProviderError(new Error(message), provider, model, statusCode);
|
|
160
|
+
log?.debug?.("IMAGE", `Provider error: ${errMsg}`);
|
|
161
|
+
return createErrorResult(statusCode, errMsg);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// Parse provider response — adapter may override (codex SSE / async polling / binary)
|
|
165
|
+
let parsed;
|
|
166
|
+
try {
|
|
167
|
+
if (adapter.parseResponse) {
|
|
168
|
+
parsed = await adapter.parseResponse(providerResponse, {
|
|
169
|
+
headers,
|
|
170
|
+
log,
|
|
171
|
+
streamToClient,
|
|
172
|
+
onRequestSuccess,
|
|
173
|
+
url,
|
|
174
|
+
requestBody,
|
|
175
|
+
model,
|
|
176
|
+
body,
|
|
177
|
+
});
|
|
178
|
+
// Codex streaming case: returns an SSE Response directly
|
|
179
|
+
if (parsed?.sseResponse) {
|
|
180
|
+
return { success: true, response: parsed.sseResponse };
|
|
181
|
+
}
|
|
182
|
+
} else {
|
|
183
|
+
parsed = await providerResponse.json();
|
|
184
|
+
}
|
|
185
|
+
} catch (parseError) {
|
|
186
|
+
return createErrorResult(HTTP_STATUS.BAD_GATEWAY, parseError.message || `Invalid response from ${provider}`);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
if (onRequestSuccess) await onRequestSuccess();
|
|
190
|
+
|
|
191
|
+
// Normalize → OpenAI-compatible shape
|
|
192
|
+
const normalized = adapter.normalize(parsed, body.prompt);
|
|
193
|
+
|
|
194
|
+
// Already in OpenAI shape? skip re-normalize
|
|
195
|
+
const finalBody = (normalized.created && Array.isArray(normalized.data)) ? normalized : parsed;
|
|
196
|
+
|
|
197
|
+
// Binary output: decode first b64_json (or fetch url) into raw bytes
|
|
198
|
+
if (binaryOutput) {
|
|
199
|
+
const first = finalBody.data?.[0];
|
|
200
|
+
let b64 = first?.b64_json;
|
|
201
|
+
if (!b64 && first?.url) {
|
|
202
|
+
try { b64 = await urlToBase64(first.url); } catch {}
|
|
203
|
+
}
|
|
204
|
+
if (b64) {
|
|
205
|
+
const buf = Buffer.from(b64, "base64");
|
|
206
|
+
const fmt = (body.output_format || "png").toLowerCase();
|
|
207
|
+
const mime = fmt === "jpeg" || fmt === "jpg" ? "image/jpeg" : fmt === "webp" ? "image/webp" : "image/png";
|
|
208
|
+
return {
|
|
209
|
+
success: true,
|
|
210
|
+
response: new Response(buf, {
|
|
211
|
+
headers: {
|
|
212
|
+
"Content-Type": mime,
|
|
213
|
+
"Content-Disposition": `inline; filename="image.${fmt === "jpeg" ? "jpg" : fmt}"`,
|
|
214
|
+
"Access-Control-Allow-Origin": "*",
|
|
215
|
+
},
|
|
216
|
+
}),
|
|
217
|
+
};
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
return {
|
|
222
|
+
success: true,
|
|
223
|
+
response: new Response(JSON.stringify(finalBody), {
|
|
224
|
+
headers: {
|
|
225
|
+
"Content-Type": "application/json",
|
|
226
|
+
"Access-Control-Allow-Origin": "*",
|
|
227
|
+
},
|
|
228
|
+
}),
|
|
229
|
+
};
|
|
230
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// Shared helpers for image provider adapters
|
|
2
|
+
|
|
3
|
+
export const POLL_INTERVAL_MS = 1500;
|
|
4
|
+
export const POLL_TIMEOUT_MS = 120000;
|
|
5
|
+
|
|
6
|
+
export const sleep = (ms) => new Promise((r) => setTimeout(r, ms));
|
|
7
|
+
|
|
8
|
+
// Map OpenAI size to provider-specific aspect ratio
|
|
9
|
+
export function sizeToAspectRatio(size) {
|
|
10
|
+
if (!size || typeof size !== "string") return "1:1";
|
|
11
|
+
const map = {
|
|
12
|
+
"1024x1024": "1:1",
|
|
13
|
+
"1024x1792": "9:16",
|
|
14
|
+
"1792x1024": "16:9",
|
|
15
|
+
"1024x1536": "2:3",
|
|
16
|
+
"1536x1024": "3:2",
|
|
17
|
+
};
|
|
18
|
+
return map[size] || "1:1";
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
// Fetch URL → base64 (for providers returning image URLs)
|
|
22
|
+
export async function urlToBase64(url) {
|
|
23
|
+
const res = await fetch(url);
|
|
24
|
+
if (!res.ok) throw new Error(`Failed to fetch image: ${res.status}`);
|
|
25
|
+
const buf = await res.arrayBuffer();
|
|
26
|
+
return Buffer.from(buf).toString("base64");
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export function nowSec() {
|
|
30
|
+
return Math.floor(Date.now() / 1000);
|
|
31
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
// Antigravity image adapter - delegates to the executor for correct request
|
|
2
|
+
// envelope (project, model, requestType, sessionId) and auth headers.
|
|
3
|
+
import { nowSec } from "./_base.js";
|
|
4
|
+
import { getExecutor } from "../../executors/index.js";
|
|
5
|
+
|
|
6
|
+
// Convert image input (data URI or raw base64) to Gemini inlineData part
|
|
7
|
+
function resolveImageInput(input) {
|
|
8
|
+
if (!input || typeof input !== "string") return null;
|
|
9
|
+
// data:image/png;base64,... format
|
|
10
|
+
const dataUriMatch = input.match(/^data:(image\/[^;]+);base64,(.+)$/);
|
|
11
|
+
if (dataUriMatch) {
|
|
12
|
+
return { inlineData: { mimeType: dataUriMatch[1], data: dataUriMatch[2] } };
|
|
13
|
+
}
|
|
14
|
+
// Raw base64 string (assume PNG)
|
|
15
|
+
if (/^[A-Za-z0-9+/]/.test(input) && input.length > 100 && !input.startsWith("http")) {
|
|
16
|
+
return { inlineData: { mimeType: "image/png", data: input } };
|
|
17
|
+
}
|
|
18
|
+
return null;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export default {
|
|
22
|
+
// Delegate to executor instead of building URL/headers/body manually
|
|
23
|
+
useExecutor: true,
|
|
24
|
+
|
|
25
|
+
// Stubs - required by imageGenerationCore interface but unused with useExecutor
|
|
26
|
+
buildUrl: () => "",
|
|
27
|
+
buildHeaders: () => ({}),
|
|
28
|
+
buildBody: () => ({}),
|
|
29
|
+
|
|
30
|
+
async executeViaExecutor(model, body, credentials, log) {
|
|
31
|
+
const executor = getExecutor("antigravity");
|
|
32
|
+
if (!executor) throw new Error("Antigravity executor not found");
|
|
33
|
+
|
|
34
|
+
// Build parts: text prompt + optional input image for editing
|
|
35
|
+
const parts = [{ text: body.prompt }];
|
|
36
|
+
const imageInput = body.image || (Array.isArray(body.images) && body.images[0]);
|
|
37
|
+
if (imageInput) {
|
|
38
|
+
const inlineData = resolveImageInput(imageInput);
|
|
39
|
+
if (inlineData) parts.unshift(inlineData);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
const chatBody = {
|
|
43
|
+
contents: [{ role: "user", parts }],
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
const result = await executor.execute({
|
|
47
|
+
model,
|
|
48
|
+
body: chatBody,
|
|
49
|
+
stream: false,
|
|
50
|
+
credentials,
|
|
51
|
+
log,
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
if (!result.response.ok) {
|
|
55
|
+
const text = await result.response.text();
|
|
56
|
+
throw new Error(text || `HTTP ${result.response.status}`);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
return result.response.json();
|
|
60
|
+
},
|
|
61
|
+
|
|
62
|
+
normalize: (responseBody, prompt) => {
|
|
63
|
+
const candidates = responseBody.candidates || responseBody.response?.candidates || [];
|
|
64
|
+
const parts = candidates[0]?.content?.parts || [];
|
|
65
|
+
const images = parts.filter((p) => p.inlineData?.data).map((p) => ({
|
|
66
|
+
b64_json: p.inlineData.data,
|
|
67
|
+
}));
|
|
68
|
+
return {
|
|
69
|
+
created: nowSec(),
|
|
70
|
+
data: images.length > 0 ? images : [{ b64_json: "", revised_prompt: prompt }],
|
|
71
|
+
};
|
|
72
|
+
},
|
|
73
|
+
};
|