@fudrouter/fsrouter 0.6.61 → 0.6.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/copyJs.js +13 -9
- 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,380 @@
|
|
|
1
|
+
// Gemini helper functions for translator
|
|
2
|
+
|
|
3
|
+
import { safeParseJSON } from "../concerns/json.js";
|
|
4
|
+
import { OPENAI_BLOCK } from "../schema/index.js";
|
|
5
|
+
|
|
6
|
+
// Unsupported JSON Schema constraints that should be removed for Antigravity
|
|
7
|
+
export const UNSUPPORTED_SCHEMA_CONSTRAINTS = [
|
|
8
|
+
// Basic constraints (not supported by Gemini API)
|
|
9
|
+
"minLength", "maxLength", "exclusiveMinimum", "exclusiveMaximum",
|
|
10
|
+
"minItems", "maxItems", "format",
|
|
11
|
+
// Claude rejects these in VALIDATED mode
|
|
12
|
+
"default", "examples",
|
|
13
|
+
// JSON Schema meta keywords
|
|
14
|
+
"$schema", "$defs", "definitions", "const", "$ref", "$comment",
|
|
15
|
+
// Annotation keywords (rejected by Gemini/Antigravity - e.g. MCP tool schemas set these)
|
|
16
|
+
"deprecated", "readOnly", "writeOnly",
|
|
17
|
+
// Object validation keywords (not supported)
|
|
18
|
+
"additionalProperties", "propertyNames", "patternProperties", "enumDescriptions",
|
|
19
|
+
// Complex schema keywords (handled by flattenAnyOfOneOf/mergeAllOf)
|
|
20
|
+
"anyOf", "oneOf", "allOf", "not",
|
|
21
|
+
// Dependency keywords (not supported)
|
|
22
|
+
"dependencies", "dependentSchemas", "dependentRequired",
|
|
23
|
+
// Other unsupported keywords
|
|
24
|
+
"title", "optional", "deprecated", "if", "then", "else", "contentMediaType", "contentEncoding",
|
|
25
|
+
// UI/Styling properties (from Cursor tools - NOT JSON Schema standard)
|
|
26
|
+
"cornerRadius", "fillColor", "fontFamily", "fontSize", "fontWeight",
|
|
27
|
+
"gap", "padding", "strokeColor", "strokeThickness", "textColor"
|
|
28
|
+
];
|
|
29
|
+
|
|
30
|
+
// Default safety settings
|
|
31
|
+
export const DEFAULT_SAFETY_SETTINGS = [
|
|
32
|
+
{ category: "HARM_CATEGORY_HATE_SPEECH", threshold: "OFF" },
|
|
33
|
+
{ category: "HARM_CATEGORY_DANGEROUS_CONTENT", threshold: "OFF" },
|
|
34
|
+
{ category: "HARM_CATEGORY_SEXUALLY_EXPLICIT", threshold: "OFF" },
|
|
35
|
+
{ category: "HARM_CATEGORY_HARASSMENT", threshold: "OFF" },
|
|
36
|
+
{ category: "HARM_CATEGORY_CIVIC_INTEGRITY", threshold: "OFF" }
|
|
37
|
+
];
|
|
38
|
+
|
|
39
|
+
// Convert OpenAI content to Gemini parts
|
|
40
|
+
export function convertOpenAIContentToParts(content) {
|
|
41
|
+
const parts = [];
|
|
42
|
+
|
|
43
|
+
if (typeof content === "string") {
|
|
44
|
+
parts.push({ text: content });
|
|
45
|
+
} else if (Array.isArray(content)) {
|
|
46
|
+
for (const item of content) {
|
|
47
|
+
if (item.type === OPENAI_BLOCK.TEXT) {
|
|
48
|
+
parts.push({ text: item.text });
|
|
49
|
+
} else if (item.type === OPENAI_BLOCK.IMAGE_URL && item.image_url?.url?.startsWith("data:")) {
|
|
50
|
+
const url = item.image_url.url;
|
|
51
|
+
const commaIndex = url.indexOf(",");
|
|
52
|
+
if (commaIndex !== -1) {
|
|
53
|
+
const mimePart = url.substring(5, commaIndex); // skip "data:"
|
|
54
|
+
const data = url.substring(commaIndex + 1);
|
|
55
|
+
const mimeType = mimePart.split(";")[0];
|
|
56
|
+
|
|
57
|
+
parts.push({
|
|
58
|
+
inlineData: { mime_type: mimeType, data: data }
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
} else if (item.type === OPENAI_BLOCK.IMAGE_URL && item.image_url?.url && (item.image_url.url.startsWith("http://") || item.image_url.url.startsWith("https://"))) {
|
|
62
|
+
parts.push({
|
|
63
|
+
fileData: { fileUri: item.image_url.url, mimeType: "image/*" }
|
|
64
|
+
});
|
|
65
|
+
} else if (item.type === OPENAI_BLOCK.INPUT_AUDIO && item.input_audio?.data) {
|
|
66
|
+
const format = item.input_audio.format || "wav";
|
|
67
|
+
const mimeType = format === "mp3" ? "audio/mpeg" : `audio/${format}`;
|
|
68
|
+
parts.push({
|
|
69
|
+
inlineData: { mime_type: mimeType, data: item.input_audio.data }
|
|
70
|
+
});
|
|
71
|
+
} else if (item.type === OPENAI_BLOCK.AUDIO_URL && item.audio_url?.url?.startsWith("data:")) {
|
|
72
|
+
const url = item.audio_url.url;
|
|
73
|
+
const commaIndex = url.indexOf(",");
|
|
74
|
+
if (commaIndex !== -1) {
|
|
75
|
+
const mimePart = url.substring(5, commaIndex);
|
|
76
|
+
const data = url.substring(commaIndex + 1);
|
|
77
|
+
const mimeType = mimePart.split(";")[0];
|
|
78
|
+
parts.push({
|
|
79
|
+
inlineData: { mime_type: mimeType, data: data }
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
} else if (item.type === OPENAI_BLOCK.FILE && item.file?.file_data?.startsWith("data:")) {
|
|
83
|
+
const url = item.file.file_data;
|
|
84
|
+
const commaIndex = url.indexOf(",");
|
|
85
|
+
if (commaIndex !== -1) {
|
|
86
|
+
const mimeType = url.substring(5, commaIndex).split(";")[0];
|
|
87
|
+
const data = url.substring(commaIndex + 1);
|
|
88
|
+
parts.push({ inlineData: { mime_type: mimeType, data: data } });
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
return parts;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// Extract text content from OpenAI content
|
|
98
|
+
export function extractTextContent(content, separator = "") {
|
|
99
|
+
if (typeof content === "string") return content;
|
|
100
|
+
if (Array.isArray(content)) {
|
|
101
|
+
return content.filter(c => c.type === OPENAI_BLOCK.TEXT).map(c => c.text).join(separator);
|
|
102
|
+
}
|
|
103
|
+
return "";
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// Try parse JSON safely (null fallback on parse error; re-export keeps legacy API)
|
|
107
|
+
export function tryParseJSON(str) {
|
|
108
|
+
return safeParseJSON(str, null);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
// Generate request ID
|
|
112
|
+
export function generateRequestId() {
|
|
113
|
+
return `agent-${crypto.randomUUID()}`;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// Generate session ID (binary-compatible format: UUID + timestamp)
|
|
117
|
+
export function generateSessionId() {
|
|
118
|
+
return crypto.randomUUID() + Date.now().toString();
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
// Generate project ID
|
|
122
|
+
export function generateProjectId() {
|
|
123
|
+
const adjectives = ["useful", "bright", "swift", "calm", "bold"];
|
|
124
|
+
const nouns = ["fuze", "wave", "spark", "flow", "core"];
|
|
125
|
+
const adj = adjectives[Math.floor(Math.random() * adjectives.length)];
|
|
126
|
+
const noun = nouns[Math.floor(Math.random() * nouns.length)];
|
|
127
|
+
return `${adj}-${noun}-${crypto.randomUUID().slice(0, 5)}`;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// Helper: Remove unsupported keywords recursively from object/array
|
|
131
|
+
// Also strips all vendor extension fields (x- prefixed) not supported by Gemini
|
|
132
|
+
function removeUnsupportedKeywords(obj, keywords) {
|
|
133
|
+
if (!obj || typeof obj !== "object") return;
|
|
134
|
+
|
|
135
|
+
if (Array.isArray(obj)) {
|
|
136
|
+
for (const item of obj) {
|
|
137
|
+
removeUnsupportedKeywords(item, keywords);
|
|
138
|
+
}
|
|
139
|
+
return;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
for (const key of Object.keys(obj)) {
|
|
143
|
+
if (keywords.includes(key) || key.startsWith("x-")) {
|
|
144
|
+
delete obj[key];
|
|
145
|
+
continue;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
const value = obj[key];
|
|
149
|
+
if (value && typeof value === "object") {
|
|
150
|
+
removeUnsupportedKeywords(value, keywords);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
// Convert const to enum
|
|
156
|
+
function convertConstToEnum(obj) {
|
|
157
|
+
if (!obj || typeof obj !== "object") return;
|
|
158
|
+
|
|
159
|
+
if (obj.const !== undefined && !obj.enum) {
|
|
160
|
+
obj.enum = [obj.const];
|
|
161
|
+
delete obj.const;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
for (const value of Object.values(obj)) {
|
|
165
|
+
if (value && typeof value === "object") {
|
|
166
|
+
convertConstToEnum(value);
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
// Convert enum values to strings (Gemini requires string enum values + explicit type:"string")
|
|
172
|
+
function convertEnumValuesToStrings(obj) {
|
|
173
|
+
if (!obj || typeof obj !== "object") return;
|
|
174
|
+
|
|
175
|
+
if (obj.enum && Array.isArray(obj.enum)) {
|
|
176
|
+
obj.enum = obj.enum.map(v => String(v));
|
|
177
|
+
// Gemini API requires type:"string" when enum is present — without it returns 400
|
|
178
|
+
if (!obj.type) {
|
|
179
|
+
obj.type = "string";
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
for (const value of Object.values(obj)) {
|
|
184
|
+
if (value && typeof value === "object") {
|
|
185
|
+
convertEnumValuesToStrings(value);
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
// Merge allOf schemas
|
|
191
|
+
function mergeAllOf(obj) {
|
|
192
|
+
if (!obj || typeof obj !== "object") return;
|
|
193
|
+
|
|
194
|
+
if (obj.allOf && Array.isArray(obj.allOf)) {
|
|
195
|
+
const merged = {};
|
|
196
|
+
|
|
197
|
+
for (const item of obj.allOf) {
|
|
198
|
+
if (item.properties) {
|
|
199
|
+
if (!merged.properties) merged.properties = {};
|
|
200
|
+
Object.assign(merged.properties, item.properties);
|
|
201
|
+
}
|
|
202
|
+
if (item.required && Array.isArray(item.required)) {
|
|
203
|
+
if (!merged.required) merged.required = [];
|
|
204
|
+
for (const req of item.required) {
|
|
205
|
+
if (!merged.required.includes(req)) {
|
|
206
|
+
merged.required.push(req);
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
delete obj.allOf;
|
|
213
|
+
if (merged.properties) obj.properties = { ...obj.properties, ...merged.properties };
|
|
214
|
+
if (merged.required) obj.required = [...(obj.required || []), ...merged.required];
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
for (const value of Object.values(obj)) {
|
|
218
|
+
if (value && typeof value === "object") {
|
|
219
|
+
mergeAllOf(value);
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
// Select best schema from anyOf/oneOf
|
|
225
|
+
function selectBest(items) {
|
|
226
|
+
let bestIdx = 0;
|
|
227
|
+
let bestScore = -1;
|
|
228
|
+
|
|
229
|
+
for (let i = 0; i < items.length; i++) {
|
|
230
|
+
const item = items[i];
|
|
231
|
+
let score = 0;
|
|
232
|
+
const type = item.type;
|
|
233
|
+
|
|
234
|
+
if (type === "object" || item.properties) {
|
|
235
|
+
score = 3;
|
|
236
|
+
} else if (type === "array" || item.items) {
|
|
237
|
+
score = 2;
|
|
238
|
+
} else if (type && type !== "null") {
|
|
239
|
+
score = 1;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
if (score > bestScore) {
|
|
243
|
+
bestScore = score;
|
|
244
|
+
bestIdx = i;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
return bestIdx;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
// Flatten anyOf/oneOf
|
|
252
|
+
function flattenAnyOfOneOf(obj) {
|
|
253
|
+
if (!obj || typeof obj !== "object") return;
|
|
254
|
+
|
|
255
|
+
if (obj.anyOf && Array.isArray(obj.anyOf) && obj.anyOf.length > 0) {
|
|
256
|
+
const nonNullSchemas = obj.anyOf.filter(s => s && s.type !== "null");
|
|
257
|
+
if (nonNullSchemas.length > 0) {
|
|
258
|
+
const bestIdx = selectBest(nonNullSchemas);
|
|
259
|
+
const selected = nonNullSchemas[bestIdx];
|
|
260
|
+
delete obj.anyOf;
|
|
261
|
+
Object.assign(obj, selected);
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
if (obj.oneOf && Array.isArray(obj.oneOf) && obj.oneOf.length > 0) {
|
|
266
|
+
const nonNullSchemas = obj.oneOf.filter(s => s && s.type !== "null");
|
|
267
|
+
if (nonNullSchemas.length > 0) {
|
|
268
|
+
const bestIdx = selectBest(nonNullSchemas);
|
|
269
|
+
const selected = nonNullSchemas[bestIdx];
|
|
270
|
+
delete obj.oneOf;
|
|
271
|
+
Object.assign(obj, selected);
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
for (const value of Object.values(obj)) {
|
|
276
|
+
if (value && typeof value === "object") {
|
|
277
|
+
flattenAnyOfOneOf(value);
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
// Flatten type arrays
|
|
283
|
+
function flattenTypeArrays(obj) {
|
|
284
|
+
if (!obj || typeof obj !== "object") return;
|
|
285
|
+
|
|
286
|
+
if (obj.type && Array.isArray(obj.type)) {
|
|
287
|
+
const nonNullTypes = obj.type.filter(t => t !== "null");
|
|
288
|
+
obj.type = nonNullTypes.length > 0 ? nonNullTypes[0] : "string";
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
for (const value of Object.values(obj)) {
|
|
292
|
+
if (value && typeof value === "object") {
|
|
293
|
+
flattenTypeArrays(value);
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
// Infer missing type=object when properties exist (Gemini requires explicit type)
|
|
299
|
+
function ensureObjectType(obj) {
|
|
300
|
+
if (!obj || typeof obj !== "object") return;
|
|
301
|
+
if (obj.properties && !obj.type) obj.type = "object";
|
|
302
|
+
for (const v of Object.values(obj)) if (v && typeof v === "object") ensureObjectType(v);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
// Clean JSON Schema for Antigravity API compatibility - removes unsupported keywords recursively
|
|
306
|
+
export function cleanJSONSchemaForAntigravity(schema) {
|
|
307
|
+
if (!schema || typeof schema !== "object") return schema;
|
|
308
|
+
|
|
309
|
+
// Mutate directly (schema is only used once per request)
|
|
310
|
+
let cleaned = schema;
|
|
311
|
+
|
|
312
|
+
// Phase 1: Convert and prepare
|
|
313
|
+
convertConstToEnum(cleaned);
|
|
314
|
+
convertEnumValuesToStrings(cleaned);
|
|
315
|
+
|
|
316
|
+
// Phase 2: Flatten complex structures
|
|
317
|
+
mergeAllOf(cleaned);
|
|
318
|
+
flattenAnyOfOneOf(cleaned);
|
|
319
|
+
flattenTypeArrays(cleaned);
|
|
320
|
+
|
|
321
|
+
// Phase 2.5: Infer missing type=object when properties exist (Gemini requirement)
|
|
322
|
+
ensureObjectType(cleaned);
|
|
323
|
+
|
|
324
|
+
// Phase 3: Remove all unsupported keywords at ALL levels (including inside arrays)
|
|
325
|
+
removeUnsupportedKeywords(cleaned, UNSUPPORTED_SCHEMA_CONSTRAINTS);
|
|
326
|
+
|
|
327
|
+
// Phase 4: Cleanup required fields recursively
|
|
328
|
+
function cleanupRequired(obj) {
|
|
329
|
+
if (!obj || typeof obj !== "object") return;
|
|
330
|
+
|
|
331
|
+
if (obj.required && Array.isArray(obj.required) && obj.properties) {
|
|
332
|
+
const validRequired = obj.required.filter(field =>
|
|
333
|
+
Object.prototype.hasOwnProperty.call(obj.properties, field)
|
|
334
|
+
);
|
|
335
|
+
if (validRequired.length === 0) {
|
|
336
|
+
delete obj.required;
|
|
337
|
+
} else {
|
|
338
|
+
obj.required = validRequired;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
// Recurse into nested objects
|
|
343
|
+
for (const value of Object.values(obj)) {
|
|
344
|
+
if (value && typeof value === "object") {
|
|
345
|
+
cleanupRequired(value);
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
cleanupRequired(cleaned);
|
|
351
|
+
|
|
352
|
+
// Phase 5: Add placeholder for empty object schemas (Antigravity requirement)
|
|
353
|
+
function addPlaceholders(obj) {
|
|
354
|
+
if (!obj || typeof obj !== "object") return;
|
|
355
|
+
|
|
356
|
+
if (obj.type === "object") {
|
|
357
|
+
if (!obj.properties || Object.keys(obj.properties).length === 0) {
|
|
358
|
+
obj.properties = {
|
|
359
|
+
reason: {
|
|
360
|
+
type: "string",
|
|
361
|
+
description: "Brief explanation of why you are calling this tool"
|
|
362
|
+
}
|
|
363
|
+
};
|
|
364
|
+
obj.required = ["reason"];
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
// Recurse into nested objects
|
|
369
|
+
for (const value of Object.values(obj)) {
|
|
370
|
+
if (value && typeof value === "object") {
|
|
371
|
+
addPlaceholders(value);
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
addPlaceholders(cleaned);
|
|
377
|
+
|
|
378
|
+
return cleaned;
|
|
379
|
+
}
|
|
380
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { DEFAULT_MAX_TOKENS, DEFAULT_MIN_TOKENS } from "../../config/runtimeConfig.js";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Adjust max_tokens based on request context
|
|
5
|
+
* @param {object} body - Request body
|
|
6
|
+
* @param {number} [ceiling=DEFAULT_MAX_TOKENS] - Upper bound for max_tokens.
|
|
7
|
+
* Callers with model context (e.g. openai-to-claude) pass the model's real
|
|
8
|
+
* maxOutput so high-output models (Opus 4.8 = 128000) aren't pre-clamped to
|
|
9
|
+
* the conservative 64000 default before the model-aware step sees them.
|
|
10
|
+
* @returns {number} Adjusted max_tokens
|
|
11
|
+
*/
|
|
12
|
+
export function adjustMaxTokens(body, ceiling = DEFAULT_MAX_TOKENS) {
|
|
13
|
+
let maxTokens = body.max_tokens || DEFAULT_MAX_TOKENS;
|
|
14
|
+
|
|
15
|
+
// Auto-increase for tool calling to prevent truncated arguments (min never above max)
|
|
16
|
+
if (body.tools && Array.isArray(body.tools) && body.tools.length > 0) {
|
|
17
|
+
if (maxTokens < DEFAULT_MIN_TOKENS) {
|
|
18
|
+
maxTokens = DEFAULT_MIN_TOKENS;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Ensure max_tokens > thinking.budget_tokens (Claude API requirement)
|
|
23
|
+
// Claude API requires strictly greater, so add buffer instead of using the
|
|
24
|
+
// ceiling which could equal budget_tokens when budget_tokens >= ceiling
|
|
25
|
+
if (body.thinking?.budget_tokens && maxTokens <= body.thinking.budget_tokens) {
|
|
26
|
+
maxTokens = body.thinking.budget_tokens + 1024;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// Never exceed the ceiling
|
|
30
|
+
if (maxTokens > ceiling) maxTokens = ceiling;
|
|
31
|
+
|
|
32
|
+
return maxTokens;
|
|
33
|
+
}
|
|
34
|
+
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
// OpenAI helper functions for translator
|
|
2
|
+
import { ROLE, OPENAI_BLOCK, CLAUDE_BLOCK, VALID_OPENAI_CONTENT_TYPES, VALID_OPENAI_MESSAGE_TYPES } from "../schema/index.js";
|
|
3
|
+
|
|
4
|
+
// Re-export valid-type lists (moved to schema/blocks.js) to keep existing importers working.
|
|
5
|
+
export { VALID_OPENAI_CONTENT_TYPES, VALID_OPENAI_MESSAGE_TYPES };
|
|
6
|
+
|
|
7
|
+
// Filter messages to OpenAI standard format
|
|
8
|
+
// Remove: thinking, redacted_thinking, signature, and other non-OpenAI blocks
|
|
9
|
+
// opts.preserveCacheControl: keep cache_control on content blocks (e.g. for DashScope/alicode)
|
|
10
|
+
export function filterToOpenAIFormat(body, opts = {}) {
|
|
11
|
+
if (!body.messages || !Array.isArray(body.messages)) return body;
|
|
12
|
+
const keepCache = !!opts.preserveCacheControl;
|
|
13
|
+
|
|
14
|
+
function stripBlock(block) {
|
|
15
|
+
const { signature, cache_control, ...rest } = block;
|
|
16
|
+
return keepCache && cache_control ? { ...rest, cache_control } : rest;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
body.messages = body.messages.map(msg => {
|
|
20
|
+
// Normalize developer role to system (many providers don't support developer)
|
|
21
|
+
if (msg.role === ROLE.DEVELOPER) msg = { ...msg, role: ROLE.SYSTEM };
|
|
22
|
+
|
|
23
|
+
// Keep tool messages as-is (OpenAI format)
|
|
24
|
+
if (msg.role === ROLE.TOOL) return msg;
|
|
25
|
+
|
|
26
|
+
// Keep assistant messages with tool_calls as-is
|
|
27
|
+
if (msg.role === ROLE.ASSISTANT && msg.tool_calls) return msg;
|
|
28
|
+
|
|
29
|
+
// Handle string content
|
|
30
|
+
if (typeof msg.content === "string") return msg;
|
|
31
|
+
|
|
32
|
+
// Handle array content
|
|
33
|
+
if (Array.isArray(msg.content)) {
|
|
34
|
+
const filteredContent = [];
|
|
35
|
+
|
|
36
|
+
for (const block of msg.content) {
|
|
37
|
+
// Skip thinking blocks
|
|
38
|
+
if (block.type === CLAUDE_BLOCK.THINKING || block.type === CLAUDE_BLOCK.REDACTED_THINKING) continue;
|
|
39
|
+
|
|
40
|
+
// Only keep valid OpenAI content types
|
|
41
|
+
if (VALID_OPENAI_CONTENT_TYPES.includes(block.type)) {
|
|
42
|
+
filteredContent.push(stripBlock(block));
|
|
43
|
+
} else if (block.type === CLAUDE_BLOCK.TOOL_USE) {
|
|
44
|
+
// Convert tool_use to tool_calls format (handled separately)
|
|
45
|
+
continue;
|
|
46
|
+
} else if (block.type === CLAUDE_BLOCK.TOOL_RESULT) {
|
|
47
|
+
// Keep tool_result but clean it
|
|
48
|
+
filteredContent.push(stripBlock(block));
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// If all content was filtered, add empty text
|
|
53
|
+
if (filteredContent.length === 0) {
|
|
54
|
+
filteredContent.push({ type: OPENAI_BLOCK.TEXT, text: "" });
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
return { ...msg, content: filteredContent };
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
return msg;
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
// Filter out messages with only empty text (but NEVER filter tool messages)
|
|
64
|
+
body.messages = body.messages.filter(msg => {
|
|
65
|
+
// Always keep tool messages
|
|
66
|
+
if (msg.role === ROLE.TOOL) return true;
|
|
67
|
+
// Always keep assistant messages with tool_calls
|
|
68
|
+
if (msg.role === ROLE.ASSISTANT && msg.tool_calls) return true;
|
|
69
|
+
|
|
70
|
+
if (typeof msg.content === "string") return msg.content.trim() !== "";
|
|
71
|
+
if (Array.isArray(msg.content)) {
|
|
72
|
+
return msg.content.some(b =>
|
|
73
|
+
(b.type === OPENAI_BLOCK.TEXT && b.text?.trim()) ||
|
|
74
|
+
b.type !== OPENAI_BLOCK.TEXT
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
return true;
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
// Remove empty tools array (some providers like QWEN reject it)
|
|
81
|
+
if (body.tools && Array.isArray(body.tools) && body.tools.length === 0) {
|
|
82
|
+
delete body.tools;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// Normalize tools to OpenAI format (from Claude, Gemini, etc.)
|
|
86
|
+
if (body.tools && Array.isArray(body.tools) && body.tools.length > 0) {
|
|
87
|
+
body.tools = body.tools.map(tool => {
|
|
88
|
+
// Already OpenAI format
|
|
89
|
+
if (tool.type === OPENAI_BLOCK.FUNCTION && tool.function) return tool;
|
|
90
|
+
|
|
91
|
+
// Claude format: {name, description, input_schema}
|
|
92
|
+
if (tool.name && (tool.input_schema || tool.description)) {
|
|
93
|
+
return {
|
|
94
|
+
type: OPENAI_BLOCK.FUNCTION,
|
|
95
|
+
function: {
|
|
96
|
+
name: tool.name,
|
|
97
|
+
description: String(tool.description || ""),
|
|
98
|
+
parameters: tool.input_schema || { type: "object", properties: {} }
|
|
99
|
+
}
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
// Gemini format: {functionDeclarations: [{name, description, parameters}]}
|
|
104
|
+
if (tool.functionDeclarations && Array.isArray(tool.functionDeclarations)) {
|
|
105
|
+
return tool.functionDeclarations.map(fn => ({
|
|
106
|
+
type: OPENAI_BLOCK.FUNCTION,
|
|
107
|
+
function: {
|
|
108
|
+
name: fn.name,
|
|
109
|
+
description: String(fn.description || ""),
|
|
110
|
+
parameters: fn.parameters || { type: "object", properties: {} }
|
|
111
|
+
}
|
|
112
|
+
}));
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
return tool;
|
|
116
|
+
}).flat();
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
// Normalize tool_choice to OpenAI format
|
|
120
|
+
if (body.tool_choice && typeof body.tool_choice === "object") {
|
|
121
|
+
const choice = body.tool_choice;
|
|
122
|
+
// Claude format: {type: "auto|any|tool", name?: "..."}
|
|
123
|
+
if (choice.type === "auto") {
|
|
124
|
+
body.tool_choice = "auto";
|
|
125
|
+
} else if (choice.type === "any") {
|
|
126
|
+
body.tool_choice = "required";
|
|
127
|
+
} else if (choice.type === "tool" && choice.name) {
|
|
128
|
+
body.tool_choice = { type: OPENAI_BLOCK.FUNCTION, function: { name: choice.name } };
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
return body;
|
|
133
|
+
}
|
|
134
|
+
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import { ROLE, OPENAI_BLOCK, RESPONSES_ITEM } from "../schema/index.js";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Normalize Responses API input to array format.
|
|
5
|
+
* Accepts string or array, returns array of message items.
|
|
6
|
+
* An empty array is treated like an empty string — providers require at least one user
|
|
7
|
+
* message, so we inject a placeholder rather than forwarding an empty messages[].
|
|
8
|
+
* @param {string|Array} input - raw input from Responses API body
|
|
9
|
+
* @returns {Array|null} normalized array or null if invalid
|
|
10
|
+
*/
|
|
11
|
+
export function normalizeResponsesInput(input) {
|
|
12
|
+
if (typeof input === "string") {
|
|
13
|
+
const text = input.trim() === "" ? "..." : input;
|
|
14
|
+
return [{ type: RESPONSES_ITEM.MESSAGE, role: ROLE.USER, content: [{ type: RESPONSES_ITEM.INPUT_TEXT, text }] }];
|
|
15
|
+
}
|
|
16
|
+
if (Array.isArray(input)) {
|
|
17
|
+
// Empty input[] would produce messages:[] which all providers reject (#389)
|
|
18
|
+
if (input.length === 0) {
|
|
19
|
+
return [{ type: RESPONSES_ITEM.MESSAGE, role: ROLE.USER, content: [{ type: RESPONSES_ITEM.INPUT_TEXT, text: "..." }] }];
|
|
20
|
+
}
|
|
21
|
+
return input;
|
|
22
|
+
}
|
|
23
|
+
return null;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Convert OpenAI Responses API format to standard chat completions format
|
|
28
|
+
* Responses API uses: { input: [...], instructions: "..." }
|
|
29
|
+
* Chat API uses: { messages: [...] }
|
|
30
|
+
*/
|
|
31
|
+
export function convertResponsesApiFormat(body) {
|
|
32
|
+
if (!body.input) return body;
|
|
33
|
+
|
|
34
|
+
const result = { ...body };
|
|
35
|
+
result.messages = [];
|
|
36
|
+
|
|
37
|
+
// Convert instructions to system message
|
|
38
|
+
if (body.instructions) {
|
|
39
|
+
result.messages.push({ role: ROLE.SYSTEM, content: body.instructions });
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// Group items by conversation turn
|
|
43
|
+
let currentAssistantMsg = null;
|
|
44
|
+
let pendingToolCalls = [];
|
|
45
|
+
let pendingToolResults = [];
|
|
46
|
+
|
|
47
|
+
const inputItems = normalizeResponsesInput(body.input);
|
|
48
|
+
if (!inputItems) return body;
|
|
49
|
+
|
|
50
|
+
for (const item of inputItems) {
|
|
51
|
+
// Determine item type - Droid CLI sends role-based items without 'type' field
|
|
52
|
+
// Fallback: if no type but has role property, treat as message
|
|
53
|
+
const itemType = item.type || (item.role ? RESPONSES_ITEM.MESSAGE : null);
|
|
54
|
+
|
|
55
|
+
if (itemType === RESPONSES_ITEM.MESSAGE) {
|
|
56
|
+
// Flush any pending assistant message with tool calls
|
|
57
|
+
if (currentAssistantMsg) {
|
|
58
|
+
result.messages.push(currentAssistantMsg);
|
|
59
|
+
currentAssistantMsg = null;
|
|
60
|
+
}
|
|
61
|
+
// Flush pending tool results
|
|
62
|
+
if (pendingToolResults.length > 0) {
|
|
63
|
+
for (const tr of pendingToolResults) {
|
|
64
|
+
result.messages.push(tr);
|
|
65
|
+
}
|
|
66
|
+
pendingToolResults = [];
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// Convert content: input_text → text, output_text → text, input_image → image_url
|
|
70
|
+
const content = Array.isArray(item.content)
|
|
71
|
+
? item.content.map(c => {
|
|
72
|
+
if (c.type === RESPONSES_ITEM.INPUT_TEXT) return { type: OPENAI_BLOCK.TEXT, text: c.text };
|
|
73
|
+
if (c.type === RESPONSES_ITEM.OUTPUT_TEXT) return { type: OPENAI_BLOCK.TEXT, text: c.text };
|
|
74
|
+
if (c.type === RESPONSES_ITEM.INPUT_IMAGE) {
|
|
75
|
+
const url = c.image_url || c.file_id || "";
|
|
76
|
+
return { type: OPENAI_BLOCK.IMAGE_URL, image_url: { url, detail: c.detail || "auto" } };
|
|
77
|
+
}
|
|
78
|
+
return c;
|
|
79
|
+
})
|
|
80
|
+
: item.content;
|
|
81
|
+
result.messages.push({ role: item.role, content });
|
|
82
|
+
}
|
|
83
|
+
else if (itemType === RESPONSES_ITEM.FUNCTION_CALL) {
|
|
84
|
+
// Start or append to assistant message with tool_calls
|
|
85
|
+
if (!currentAssistantMsg) {
|
|
86
|
+
currentAssistantMsg = {
|
|
87
|
+
role: ROLE.ASSISTANT,
|
|
88
|
+
content: null,
|
|
89
|
+
tool_calls: []
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
// Skip items with empty/missing name — upstream APIs reject nameless tool calls (#444)
|
|
93
|
+
if (!item.name || typeof item.name !== "string" || item.name.trim() === "") continue;
|
|
94
|
+
currentAssistantMsg.tool_calls.push({
|
|
95
|
+
id: item.call_id,
|
|
96
|
+
type: OPENAI_BLOCK.FUNCTION,
|
|
97
|
+
function: {
|
|
98
|
+
name: item.name,
|
|
99
|
+
arguments: item.arguments
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
else if (itemType === RESPONSES_ITEM.FUNCTION_CALL_OUTPUT) {
|
|
104
|
+
// Flush assistant message first if exists
|
|
105
|
+
if (currentAssistantMsg) {
|
|
106
|
+
result.messages.push(currentAssistantMsg);
|
|
107
|
+
currentAssistantMsg = null;
|
|
108
|
+
}
|
|
109
|
+
// Add tool result
|
|
110
|
+
pendingToolResults.push({
|
|
111
|
+
role: ROLE.TOOL,
|
|
112
|
+
tool_call_id: item.call_id,
|
|
113
|
+
content: typeof item.output === "string" ? item.output : JSON.stringify(item.output)
|
|
114
|
+
});
|
|
115
|
+
}
|
|
116
|
+
else if (itemType === RESPONSES_ITEM.REASONING) {
|
|
117
|
+
// Skip reasoning items - they are for display only
|
|
118
|
+
continue;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
// Flush remaining
|
|
123
|
+
if (currentAssistantMsg) {
|
|
124
|
+
result.messages.push(currentAssistantMsg);
|
|
125
|
+
}
|
|
126
|
+
if (pendingToolResults.length > 0) {
|
|
127
|
+
for (const tr of pendingToolResults) {
|
|
128
|
+
result.messages.push(tr);
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// Cleanup Responses API specific fields
|
|
133
|
+
delete result.input;
|
|
134
|
+
delete result.instructions;
|
|
135
|
+
delete result.include;
|
|
136
|
+
delete result.prompt_cache_key;
|
|
137
|
+
delete result.store;
|
|
138
|
+
delete result.reasoning;
|
|
139
|
+
|
|
140
|
+
return result;
|
|
141
|
+
}
|