@fudrouter/fsrouter 0.6.64 → 0.6.65

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.
Files changed (556) hide show
  1. package/open-sse/AGENTS.md +39 -0
  2. package/open-sse/config/anthropicHeaders.js +87 -0
  3. package/open-sse/config/appConstants.js +238 -0
  4. package/open-sse/config/audioRegistry.js +506 -0
  5. package/open-sse/config/cliFingerprints.js +304 -0
  6. package/open-sse/config/codexInstructions.js +119 -0
  7. package/open-sse/config/codexQuotaScopes.js +42 -0
  8. package/open-sse/config/constants.js +4 -0
  9. package/open-sse/config/contextEditing.js +68 -0
  10. package/open-sse/config/credentialLoader.js +83 -0
  11. package/open-sse/config/defaultThinkingSignature.js +12 -0
  12. package/open-sse/config/embeddingRegistry.js +264 -0
  13. package/open-sse/config/errorConfig.js +96 -0
  14. package/open-sse/config/freeModelCatalog.data.js +121 -0
  15. package/open-sse/config/freeModelCatalog.js +90 -0
  16. package/open-sse/config/freeTierCatalog.js +81 -0
  17. package/open-sse/config/googleTtsLanguages.js +62 -0
  18. package/open-sse/config/imageParamDefs.js +360 -0
  19. package/open-sse/config/imageRegistry.js +493 -0
  20. package/open-sse/config/kiroConstants.js +268 -0
  21. package/open-sse/config/mediaConfig.js +27 -0
  22. package/open-sse/config/mediaServiceKinds.js +71 -0
  23. package/open-sse/config/models.js +13 -0
  24. package/open-sse/config/moderationRegistry.js +71 -0
  25. package/open-sse/config/musicRegistry.js +99 -0
  26. package/open-sse/config/ocrRegistry.js +61 -0
  27. package/open-sse/config/ollamaModels.js +19 -0
  28. package/open-sse/config/providerErrorRules.js +114 -0
  29. package/open-sse/config/providerFieldStrips.js +35 -0
  30. package/open-sse/config/providerHeaderProfiles.js +191 -0
  31. package/open-sse/config/providerModels.js +106 -0
  32. package/open-sse/config/providerRegistry.js +16 -0
  33. package/open-sse/config/providers.js +19 -0
  34. package/open-sse/config/registryUtils.js +106 -0
  35. package/open-sse/config/rerankRegistry.js +177 -0
  36. package/open-sse/config/runtimeConfig.js +96 -0
  37. package/open-sse/config/runway.js +39 -0
  38. package/open-sse/config/searchRegistry.js +153 -0
  39. package/open-sse/config/toolCloaking.js +199 -0
  40. package/open-sse/config/ttsModels.js +129 -0
  41. package/open-sse/config/videoRegistry.js +207 -0
  42. package/open-sse/executors/adapta-web.js +435 -0
  43. package/open-sse/executors/antigravity.js +534 -0
  44. package/open-sse/executors/antigravityUpstreamError.js +13 -0
  45. package/open-sse/executors/auggie.js +437 -0
  46. package/open-sse/executors/azure-openai.js +32 -0
  47. package/open-sse/executors/azure.js +57 -0
  48. package/open-sse/executors/base.js +181 -0
  49. package/open-sse/executors/bedrock.js +633 -0
  50. package/open-sse/executors/blackbox-web.js +578 -0
  51. package/open-sse/executors/chatgpt-web.js +2042 -0
  52. package/open-sse/executors/chipotle.js +357 -0
  53. package/open-sse/executors/claude-web-with-auto-refresh.js +73 -0
  54. package/open-sse/executors/claude-web.js +586 -0
  55. package/open-sse/executors/cliproxyapi.js +296 -0
  56. package/open-sse/executors/cloudflare-ai.js +46 -0
  57. package/open-sse/executors/codebuddy-cn.js +40 -0
  58. package/open-sse/executors/codex.js +1324 -0
  59. package/open-sse/executors/commandCode.js +558 -0
  60. package/open-sse/executors/commandcode.js +88 -0
  61. package/open-sse/executors/copilot-m365-connection.js +176 -0
  62. package/open-sse/executors/copilot-m365-frames.js +192 -0
  63. package/open-sse/executors/copilot-m365-web.js +299 -0
  64. package/open-sse/executors/copilot-web.js +580 -0
  65. package/open-sse/executors/cursor.js +795 -0
  66. package/open-sse/executors/deepseek-web-with-auto-refresh.js +150 -0
  67. package/open-sse/executors/deepseek-web.js +875 -0
  68. package/open-sse/executors/default.js +430 -0
  69. package/open-sse/executors/devin-cli.js +351 -0
  70. package/open-sse/executors/doubao-web.js +550 -0
  71. package/open-sse/executors/duckduckgo-web.js +629 -0
  72. package/open-sse/executors/forceResponsesUpstream.js +33 -0
  73. package/open-sse/executors/gemini-business.js +320 -0
  74. package/open-sse/executors/gemini-cli.js +89 -0
  75. package/open-sse/executors/gemini-web.js +297 -0
  76. package/open-sse/executors/github.js +379 -0
  77. package/open-sse/executors/gitlab.js +569 -0
  78. package/open-sse/executors/glm.js +361 -0
  79. package/open-sse/executors/grok-cli.js +119 -0
  80. package/open-sse/executors/grok-web.js +345 -0
  81. package/open-sse/executors/huggingchat.js +467 -0
  82. package/open-sse/executors/iflow.js +108 -0
  83. package/open-sse/executors/index.js +78 -0
  84. package/open-sse/executors/inner-ai.js +527 -0
  85. package/open-sse/executors/kimchi.js +123 -0
  86. package/open-sse/executors/kimi-web.js +325 -0
  87. package/open-sse/executors/kimi.js +97 -0
  88. package/open-sse/executors/kiro.js +503 -0
  89. package/open-sse/executors/kiroThinking.js +44 -0
  90. package/open-sse/executors/lmarena.js +395 -0
  91. package/open-sse/executors/mimo-free.js +167 -0
  92. package/open-sse/executors/mimocode.js +392 -0
  93. package/open-sse/executors/ninerouter.js +155 -0
  94. package/open-sse/executors/nlpcloud.js +438 -0
  95. package/open-sse/executors/ollama-local.js +14 -0
  96. package/open-sse/executors/opencode-go.js +41 -0
  97. package/open-sse/executors/opencode.js +32 -0
  98. package/open-sse/executors/perplexity-web.js +581 -0
  99. package/open-sse/executors/poe-web.js +133 -0
  100. package/open-sse/executors/pollinations.js +95 -0
  101. package/open-sse/executors/puter.js +31 -0
  102. package/open-sse/executors/qoder.js +448 -0
  103. package/open-sse/executors/qwen-web.js +372 -0
  104. package/open-sse/executors/qwen.js +129 -0
  105. package/open-sse/executors/t3-chat-web.js +417 -0
  106. package/open-sse/executors/theoldllm.js +290 -0
  107. package/open-sse/executors/trae.js +418 -0
  108. package/open-sse/executors/v0-vercel-web.js +141 -0
  109. package/open-sse/executors/venice-web.js +142 -0
  110. package/open-sse/executors/vertex.js +131 -0
  111. package/open-sse/executors/vertexMedia.js +236 -0
  112. package/open-sse/executors/windsurf.js +560 -0
  113. package/open-sse/executors/xai.js +46 -0
  114. package/open-sse/executors/xiaomi-tokenplan.js +19 -0
  115. package/open-sse/executors/yuanbao-web.js +385 -0
  116. package/open-sse/executors/zed-hosted.js +281 -0
  117. package/open-sse/executors/zenmux-free.js +247 -0
  118. package/open-sse/handlers/audioSpeech.js +759 -0
  119. package/open-sse/handlers/audioTranscription.js +395 -0
  120. package/open-sse/handlers/audioTranslation.js +181 -0
  121. package/open-sse/handlers/chatCore/nonStreamingHandler.js +300 -0
  122. package/open-sse/handlers/chatCore/requestDetail.js +102 -0
  123. package/open-sse/handlers/chatCore/sseToJsonHandler.js +231 -0
  124. package/open-sse/handlers/chatCore/streamingHandler.js +95 -0
  125. package/open-sse/handlers/chatCore.js +404 -0
  126. package/open-sse/handlers/embeddingProviders/_base.js +4 -0
  127. package/open-sse/handlers/embeddingProviders/gemini.js +54 -0
  128. package/open-sse/handlers/embeddingProviders/index.js +23 -0
  129. package/open-sse/handlers/embeddingProviders/openai.js +39 -0
  130. package/open-sse/handlers/embeddingProviders/openaiCompatNode.js +13 -0
  131. package/open-sse/handlers/embeddingsCore.js +126 -0
  132. package/open-sse/handlers/fetch/index.js +237 -0
  133. package/open-sse/handlers/imageGenerationCore.js +230 -0
  134. package/open-sse/handlers/imageProviders/_base.js +31 -0
  135. package/open-sse/handlers/imageProviders/antigravity.js +73 -0
  136. package/open-sse/handlers/imageProviders/blackForestLabs.js +63 -0
  137. package/open-sse/handlers/imageProviders/cloudflareAi.js +207 -0
  138. package/open-sse/handlers/imageProviders/codex.js +217 -0
  139. package/open-sse/handlers/imageProviders/comfyui.js +25 -0
  140. package/open-sse/handlers/imageProviders/falAi.js +62 -0
  141. package/open-sse/handlers/imageProviders/gemini.js +40 -0
  142. package/open-sse/handlers/imageProviders/huggingface.js +38 -0
  143. package/open-sse/handlers/imageProviders/index.js +44 -0
  144. package/open-sse/handlers/imageProviders/leonardo.js +435 -0
  145. package/open-sse/handlers/imageProviders/nanobanana.js +79 -0
  146. package/open-sse/handlers/imageProviders/openai.js +61 -0
  147. package/open-sse/handlers/imageProviders/runwayml.js +72 -0
  148. package/open-sse/handlers/imageProviders/sdwebui.js +36 -0
  149. package/open-sse/handlers/imageProviders/stabilityAi.js +59 -0
  150. package/open-sse/handlers/imageProviders/weavy.js +222 -0
  151. package/open-sse/handlers/moderations.js +92 -0
  152. package/open-sse/handlers/ocr.js +89 -0
  153. package/open-sse/handlers/rerank.js +223 -0
  154. package/open-sse/handlers/responseSanitizer/reasoning.js +144 -0
  155. package/open-sse/handlers/responsesHandler.js +99 -0
  156. package/open-sse/handlers/search/callers.js +371 -0
  157. package/open-sse/handlers/search/chatSearch.js +409 -0
  158. package/open-sse/handlers/search/index.js +201 -0
  159. package/open-sse/handlers/search/normalizers.js +223 -0
  160. package/open-sse/handlers/search.js +1056 -0
  161. package/open-sse/handlers/sseParser.js +469 -0
  162. package/open-sse/handlers/sttCore.js +193 -0
  163. package/open-sse/handlers/ttsCore.js +74 -0
  164. package/open-sse/handlers/ttsProviders/_base.js +39 -0
  165. package/open-sse/handlers/ttsProviders/edgeTts.js +89 -0
  166. package/open-sse/handlers/ttsProviders/elevenlabs.js +48 -0
  167. package/open-sse/handlers/ttsProviders/gemini.js +117 -0
  168. package/open-sse/handlers/ttsProviders/genericFormats.js +169 -0
  169. package/open-sse/handlers/ttsProviders/googleTts.js +54 -0
  170. package/open-sse/handlers/ttsProviders/index.js +50 -0
  171. package/open-sse/handlers/ttsProviders/localDevice.js +87 -0
  172. package/open-sse/handlers/ttsProviders/minimax.js +59 -0
  173. package/open-sse/handlers/ttsProviders/openai.js +30 -0
  174. package/open-sse/handlers/ttsProviders/openrouter.js +70 -0
  175. package/open-sse/handlers/usageExtractor.js +93 -0
  176. package/open-sse/handlers/videoGenerationCore.js +119 -0
  177. package/open-sse/handlers/videoProviders/index.js +22 -0
  178. package/open-sse/handlers/videoProviders/leonardo.js +511 -0
  179. package/open-sse/handlers/videoProviders/weavy.js +198 -0
  180. package/open-sse/handlers/webFetch.js +200 -0
  181. package/open-sse/index.js +79 -0
  182. package/open-sse/mcp-server/audit.js +283 -0
  183. package/open-sse/mcp-server/catalog.js +184 -0
  184. package/open-sse/mcp-server/descriptionCompressor.js +175 -0
  185. package/open-sse/mcp-server/httpAuthContext.js +32 -0
  186. package/open-sse/mcp-server/httpTransport.js +229 -0
  187. package/open-sse/mcp-server/index.js +33 -0
  188. package/open-sse/mcp-server/mcpCallerIdentity.js +21 -0
  189. package/open-sse/mcp-server/runtimeHeartbeat.js +110 -0
  190. package/open-sse/mcp-server/schemas/a2a.js +153 -0
  191. package/open-sse/mcp-server/schemas/audit.js +17 -0
  192. package/open-sse/mcp-server/schemas/index.js +166 -0
  193. package/open-sse/mcp-server/schemas/pickFastestModel.js +90 -0
  194. package/open-sse/mcp-server/schemas/toolDefinition.js +0 -0
  195. package/open-sse/mcp-server/schemas/toolSearch.js +32 -0
  196. package/open-sse/mcp-server/schemas/tools.js +1219 -0
  197. package/open-sse/mcp-server/scopeEnforcement.js +80 -0
  198. package/open-sse/mcp-server/server.js +1168 -0
  199. package/open-sse/mcp-server/toolCardinality.js +78 -0
  200. package/open-sse/mcp-server/toolSearch/catalog.js +66 -0
  201. package/open-sse/mcp-server/toolSearch/handler.js +20 -0
  202. package/open-sse/mcp-server/toolSearch/index.js +10 -0
  203. package/open-sse/mcp-server/toolSearch/register.js +21 -0
  204. package/open-sse/mcp-server/toolSearch/search.js +55 -0
  205. package/open-sse/mcp-server/toolSearch/signature.js +67 -0
  206. package/open-sse/mcp-server/tools/advancedTools.js +893 -0
  207. package/open-sse/mcp-server/tools/agentSkillTools.js +69 -0
  208. package/open-sse/mcp-server/tools/compressionTools.js +309 -0
  209. package/open-sse/mcp-server/tools/gamificationTools.js +134 -0
  210. package/open-sse/mcp-server/tools/githubSkillTools.js +102 -0
  211. package/open-sse/mcp-server/tools/memoryTools.js +118 -0
  212. package/open-sse/mcp-server/tools/notionTools.js +101 -0
  213. package/open-sse/mcp-server/tools/obsidianTools.js +307 -0
  214. package/open-sse/mcp-server/tools/pickFastestModel.js +223 -0
  215. package/open-sse/mcp-server/tools/pluginTools.js +181 -0
  216. package/open-sse/mcp-server/tools/poolTools.js +139 -0
  217. package/open-sse/mcp-server/tools/skillTools.js +113 -0
  218. package/open-sse/package.json +10 -0
  219. package/open-sse/providers/REGISTRY_TEMPLATE.js +98 -0
  220. package/open-sse/providers/capabilities.js +293 -0
  221. package/open-sse/providers/index.js +51 -0
  222. package/open-sse/providers/models/helpers.js +20 -0
  223. package/open-sse/providers/models/namePatterns.js +33 -0
  224. package/open-sse/providers/models/schema.js +40 -0
  225. package/open-sse/providers/pricing.js +308 -0
  226. package/open-sse/providers/registry/alicode-intl.js +30 -0
  227. package/open-sse/providers/registry/alicode.js +31 -0
  228. package/open-sse/providers/registry/anthropic.js +37 -0
  229. package/open-sse/providers/registry/antigravity.js +81 -0
  230. package/open-sse/providers/registry/assemblyai.js +38 -0
  231. package/open-sse/providers/registry/aws-polly.js +45 -0
  232. package/open-sse/providers/registry/azure.js +21 -0
  233. package/open-sse/providers/registry/black-forest-labs.js +32 -0
  234. package/open-sse/providers/registry/blackbox.js +41 -0
  235. package/open-sse/providers/registry/brave-search.js +35 -0
  236. package/open-sse/providers/registry/byteplus.js +35 -0
  237. package/open-sse/providers/registry/cartesia.js +36 -0
  238. package/open-sse/providers/registry/cerebras.js +31 -0
  239. package/open-sse/providers/registry/chutes.js +24 -0
  240. package/open-sse/providers/registry/claude.js +87 -0
  241. package/open-sse/providers/registry/cline.js +51 -0
  242. package/open-sse/providers/registry/clinepass.js +57 -0
  243. package/open-sse/providers/registry/cloudflare-ai.js +55 -0
  244. package/open-sse/providers/registry/codebuddy-cn.js +77 -0
  245. package/open-sse/providers/registry/codex.js +100 -0
  246. package/open-sse/providers/registry/cohere.js +27 -0
  247. package/open-sse/providers/registry/comfyui.js +20 -0
  248. package/open-sse/providers/registry/commandcode.js +43 -0
  249. package/open-sse/providers/registry/coqui.js +30 -0
  250. package/open-sse/providers/registry/cursor.js +58 -0
  251. package/open-sse/providers/registry/deepgram.js +33 -0
  252. package/open-sse/providers/registry/deepseek.js +51 -0
  253. package/open-sse/providers/registry/digitalocean.js +92 -0
  254. package/open-sse/providers/registry/edge-tts.js +24 -0
  255. package/open-sse/providers/registry/elevenlabs.js +35 -0
  256. package/open-sse/providers/registry/exa.js +50 -0
  257. package/open-sse/providers/registry/fal-ai.js +34 -0
  258. package/open-sse/providers/registry/featherless.js +34 -0
  259. package/open-sse/providers/registry/firecrawl.js +34 -0
  260. package/open-sse/providers/registry/fireworks.js +29 -0
  261. package/open-sse/providers/registry/gemini-cli.js +58 -0
  262. package/open-sse/providers/registry/gemini.js +83 -0
  263. package/open-sse/providers/registry/github.js +88 -0
  264. package/open-sse/providers/registry/gitlab.js +32 -0
  265. package/open-sse/providers/registry/glm-cn.js +35 -0
  266. package/open-sse/providers/registry/glm.js +58 -0
  267. package/open-sse/providers/registry/google-pse.js +35 -0
  268. package/open-sse/providers/registry/google-tts.js +24 -0
  269. package/open-sse/providers/registry/grok-cli.js +86 -0
  270. package/open-sse/providers/registry/grok-web.js +39 -0
  271. package/open-sse/providers/registry/groq.js +37 -0
  272. package/open-sse/providers/registry/huggingface.js +34 -0
  273. package/open-sse/providers/registry/hyperbolic.js +35 -0
  274. package/open-sse/providers/registry/ibm-bob.js +27 -0
  275. package/open-sse/providers/registry/iflow.js +52 -0
  276. package/open-sse/providers/registry/index.js +210 -0
  277. package/open-sse/providers/registry/inworld.js +36 -0
  278. package/open-sse/providers/registry/jina-ai.js +42 -0
  279. package/open-sse/providers/registry/jina-reader.js +34 -0
  280. package/open-sse/providers/registry/kilocode.js +51 -0
  281. package/open-sse/providers/registry/kimchi.js +49 -0
  282. package/open-sse/providers/registry/kimi-coding.js +65 -0
  283. package/open-sse/providers/registry/kimi.js +56 -0
  284. package/open-sse/providers/registry/kiro.js +115 -0
  285. package/open-sse/providers/registry/linkup.js +34 -0
  286. package/open-sse/providers/registry/local-device.js +24 -0
  287. package/open-sse/providers/registry/mimo-free.js +24 -0
  288. package/open-sse/providers/registry/minimax-cn.js +76 -0
  289. package/open-sse/providers/registry/minimax.js +83 -0
  290. package/open-sse/providers/registry/mistral.js +34 -0
  291. package/open-sse/providers/registry/mmf.js +19 -0
  292. package/open-sse/providers/registry/nanobanana.js +35 -0
  293. package/open-sse/providers/registry/nebius.js +27 -0
  294. package/open-sse/providers/registry/nvidia.js +43 -0
  295. package/open-sse/providers/registry/ollama-local.js +19 -0
  296. package/open-sse/providers/registry/ollama.js +36 -0
  297. package/open-sse/providers/registry/openai.js +84 -0
  298. package/open-sse/providers/registry/opencode-go.js +41 -0
  299. package/open-sse/providers/registry/opencode.js +25 -0
  300. package/open-sse/providers/registry/openrouter.js +60 -0
  301. package/open-sse/providers/registry/perplexity-agent.js +49 -0
  302. package/open-sse/providers/registry/perplexity-web.js +33 -0
  303. package/open-sse/providers/registry/perplexity.js +37 -0
  304. package/open-sse/providers/registry/playht.js +36 -0
  305. package/open-sse/providers/registry/qoder.js +54 -0
  306. package/open-sse/providers/registry/qwen.js +33 -0
  307. package/open-sse/providers/registry/recraft.js +24 -0
  308. package/open-sse/providers/registry/runwayml.js +30 -0
  309. package/open-sse/providers/registry/sdwebui.js +20 -0
  310. package/open-sse/providers/registry/searchapi.js +35 -0
  311. package/open-sse/providers/registry/searxng.js +35 -0
  312. package/open-sse/providers/registry/serper.js +35 -0
  313. package/open-sse/providers/registry/siliconflow.js +39 -0
  314. package/open-sse/providers/registry/stability-ai.js +31 -0
  315. package/open-sse/providers/registry/tavily.js +50 -0
  316. package/open-sse/providers/registry/together.js +31 -0
  317. package/open-sse/providers/registry/topaz.js +19 -0
  318. package/open-sse/providers/registry/tortoise.js +30 -0
  319. package/open-sse/providers/registry/venice.js +56 -0
  320. package/open-sse/providers/registry/vercel-ai-gateway.js +41 -0
  321. package/open-sse/providers/registry/vertex-partner.js +29 -0
  322. package/open-sse/providers/registry/vertex.js +32 -0
  323. package/open-sse/providers/registry/volcengine-ark.js +35 -0
  324. package/open-sse/providers/registry/voyage-ai.js +30 -0
  325. package/open-sse/providers/registry/xai.js +45 -0
  326. package/open-sse/providers/registry/xiaomi-mimo.js +46 -0
  327. package/open-sse/providers/registry/xiaomi-tokenplan.js +63 -0
  328. package/open-sse/providers/registry/youcom.js +35 -0
  329. package/open-sse/providers/schema.js +76 -0
  330. package/open-sse/providers/shared.js +74 -0
  331. package/open-sse/providers/thinkingLevels.js +48 -0
  332. package/open-sse/rtk/applyFilter.js +15 -0
  333. package/open-sse/rtk/autodetect.js +111 -0
  334. package/open-sse/rtk/caveman.js +100 -0
  335. package/open-sse/rtk/cavemanPrompts.js +78 -0
  336. package/open-sse/rtk/constants.js +55 -0
  337. package/open-sse/rtk/filters/buildOutput.js +127 -0
  338. package/open-sse/rtk/filters/dedupLog.js +44 -0
  339. package/open-sse/rtk/filters/find.js +50 -0
  340. package/open-sse/rtk/filters/gitDiff.js +92 -0
  341. package/open-sse/rtk/filters/gitLog.js +99 -0
  342. package/open-sse/rtk/filters/gitStatus.js +117 -0
  343. package/open-sse/rtk/filters/grep.js +48 -0
  344. package/open-sse/rtk/filters/ls.js +79 -0
  345. package/open-sse/rtk/filters/readNumbered.js +27 -0
  346. package/open-sse/rtk/filters/searchList.js +52 -0
  347. package/open-sse/rtk/filters/smartTruncate.js +15 -0
  348. package/open-sse/rtk/filters/tree.js +32 -0
  349. package/open-sse/rtk/headroom.js +215 -0
  350. package/open-sse/rtk/index.js +155 -0
  351. package/open-sse/rtk/paleo.js +47 -0
  352. package/open-sse/rtk/ponytail.js +9 -0
  353. package/open-sse/rtk/ponytailPrompt.js +52 -0
  354. package/open-sse/rtk/ponytailPrompts.js +76 -0
  355. package/open-sse/rtk/pxpipe.js +104 -0
  356. package/open-sse/rtk/registry.js +38 -0
  357. package/open-sse/rtk/systemInject.js +98 -0
  358. package/open-sse/services/accountFallback.js +323 -0
  359. package/open-sse/services/antigravityHeaders.js +91 -0
  360. package/open-sse/services/antigravityVersion.js +154 -0
  361. package/open-sse/services/clinepassModels.js +63 -0
  362. package/open-sse/services/codexQuotaFetcher.js +312 -0
  363. package/open-sse/services/codexVerbosity.js +30 -0
  364. package/open-sse/services/combo/context.js +12 -0
  365. package/open-sse/services/combo/fingerprintExpansion.js +51 -0
  366. package/open-sse/services/combo/headroomRanking.js +28 -0
  367. package/open-sse/services/combo/quotaExhaustionCutoff.js +87 -0
  368. package/open-sse/services/combo/quotaScoring.js +226 -0
  369. package/open-sse/services/combo/quotaShareConcurrency.js +25 -0
  370. package/open-sse/services/combo/quotaShareInflight.js +50 -0
  371. package/open-sse/services/combo/quotaShareStrategy.js +130 -0
  372. package/open-sse/services/combo/resolveAutoStrategy.js +231 -0
  373. package/open-sse/services/combo/responseValidation.js +140 -0
  374. package/open-sse/services/combo/runtimeUnits.js +195 -0
  375. package/open-sse/services/combo/sessionStickiness.js +128 -0
  376. package/open-sse/services/combo/shadowRouting.js +131 -0
  377. package/open-sse/services/combo/targetExhaustion.js +75 -0
  378. package/open-sse/services/combo/targetSorters.js +126 -0
  379. package/open-sse/services/combo/targetTimeoutRunner.js +65 -0
  380. package/open-sse/services/combo/validateQuality.js +271 -0
  381. package/open-sse/services/combo.js +571 -0
  382. package/open-sse/services/comboAgentMiddleware.js +91 -0
  383. package/open-sse/services/comboConfig.js +153 -0
  384. package/open-sse/services/comboManifestMetrics.js +10 -0
  385. package/open-sse/services/comboMetrics.js +278 -0
  386. package/open-sse/services/compact.js +71 -0
  387. package/open-sse/services/copilotModels.js +155 -0
  388. package/open-sse/services/emergencyFallback.js +109 -0
  389. package/open-sse/services/errorClassifier.js +190 -0
  390. package/open-sse/services/evalRouting.js +201 -0
  391. package/open-sse/services/freeWebSearch.js +4 -0
  392. package/open-sse/services/fusion.js +223 -0
  393. package/open-sse/services/intentClassifier.js +631 -0
  394. package/open-sse/services/kimchiModels.js +176 -0
  395. package/open-sse/services/kiroModels.js +332 -0
  396. package/open-sse/services/model.js +136 -0
  397. package/open-sse/services/modelCapabilities.js +5 -0
  398. package/open-sse/services/modelDeprecation.js +101 -0
  399. package/open-sse/services/modelFamilyFallback.js +166 -0
  400. package/open-sse/services/oauthCredentialManager.js +156 -0
  401. package/open-sse/services/pipeline.js +107 -0
  402. package/open-sse/services/projectId.js +306 -0
  403. package/open-sse/services/provider.js +169 -0
  404. package/open-sse/services/providerCooldownTracker.js +94 -0
  405. package/open-sse/services/providerDefaultRateLimit.js +11 -0
  406. package/open-sse/services/proxyAutoSelector.js +24 -0
  407. package/open-sse/services/qoderModels.js +214 -0
  408. package/open-sse/services/quotaFetchThrottle.js +103 -0
  409. package/open-sse/services/quotaMonitor.js +310 -0
  410. package/open-sse/services/quotaPreflight.js +266 -0
  411. package/open-sse/services/rateLimitManager/headers.js +56 -0
  412. package/open-sse/services/rateLimitManager.js +616 -0
  413. package/open-sse/services/rateLimitSemaphore.js +112 -0
  414. package/open-sse/services/responsesInputSanitizer.js +99 -0
  415. package/open-sse/services/slidingWindowLimiter.js +44 -0
  416. package/open-sse/services/streamRecovery.js +355 -0
  417. package/open-sse/services/taskAwareRouter.js +227 -0
  418. package/open-sse/services/taskAwareRouting.js +332 -0
  419. package/open-sse/services/thinkingBudget.js +247 -0
  420. package/open-sse/services/tokenRefresh/dedup.js +31 -0
  421. package/open-sse/services/tokenRefresh/providers.js +624 -0
  422. package/open-sse/services/tokenRefresh.js +254 -0
  423. package/open-sse/services/usage/claude.js +147 -0
  424. package/open-sse/services/usage/codebuddy-cn.js +138 -0
  425. package/open-sse/services/usage/codex.js +267 -0
  426. package/open-sse/services/usage/github.js +100 -0
  427. package/open-sse/services/usage/google.js +241 -0
  428. package/open-sse/services/usage/grok-cli.js +274 -0
  429. package/open-sse/services/usage/kiro.js +188 -0
  430. package/open-sse/services/usage/minimax.js +234 -0
  431. package/open-sse/services/usage/misc.js +288 -0
  432. package/open-sse/services/usage/shared.js +70 -0
  433. package/open-sse/services/usage.js +62 -0
  434. package/open-sse/services/usageDb.js +2 -0
  435. package/open-sse/services/webSearchRouting.js +25 -0
  436. package/open-sse/services/wildcardRouter.js +59 -0
  437. package/open-sse/shared/clineAuth.js +37 -0
  438. package/open-sse/shared/machineId.js +19 -0
  439. package/open-sse/shared/qoder/constants.js +64 -0
  440. package/open-sse/shared/qoder/cosy.js +175 -0
  441. package/open-sse/shared/qoder/encoding.js +55 -0
  442. package/open-sse/transformer/responsesTransformer.js +439 -0
  443. package/open-sse/transformer/streamToJsonConverter.js +103 -0
  444. package/open-sse/translator/concerns/chunk.js +11 -0
  445. package/open-sse/translator/concerns/finishReason.js +63 -0
  446. package/open-sse/translator/concerns/image.js +124 -0
  447. package/open-sse/translator/concerns/json.js +5 -0
  448. package/open-sse/translator/concerns/message.js +7 -0
  449. package/open-sse/translator/concerns/modality.js +155 -0
  450. package/open-sse/translator/concerns/paramSupport.js +75 -0
  451. package/open-sse/translator/concerns/prefetch.js +96 -0
  452. package/open-sse/translator/concerns/reasoning.js +24 -0
  453. package/open-sse/translator/concerns/thinking.js +53 -0
  454. package/open-sse/translator/concerns/thinkingUnified.js +329 -0
  455. package/open-sse/translator/concerns/toolCall.js +153 -0
  456. package/open-sse/translator/concerns/usage.js +69 -0
  457. package/open-sse/translator/formats/claude.js +368 -0
  458. package/open-sse/translator/formats/gemini.js +380 -0
  459. package/open-sse/translator/formats/maxTokens.js +34 -0
  460. package/open-sse/translator/formats/openai.js +134 -0
  461. package/open-sse/translator/formats/responsesApi.js +141 -0
  462. package/open-sse/translator/formats.js +36 -0
  463. package/open-sse/translator/helpers/claudeHelper.js +216 -0
  464. package/open-sse/translator/helpers/geminiHelper.js +372 -0
  465. package/open-sse/translator/helpers/imageHelper.js +34 -0
  466. package/open-sse/translator/helpers/maxTokensHelper.js +27 -0
  467. package/open-sse/translator/helpers/openaiHelper.js +130 -0
  468. package/open-sse/translator/helpers/responsesApiHelper.js +139 -0
  469. package/open-sse/translator/helpers/toolCallHelper.js +148 -0
  470. package/open-sse/translator/index.js +252 -0
  471. package/open-sse/translator/request/antigravity-to-openai.js +242 -0
  472. package/open-sse/translator/request/claude-to-kiro.js +478 -0
  473. package/open-sse/translator/request/claude-to-openai.js +263 -0
  474. package/open-sse/translator/request/gemini-to-openai.js +152 -0
  475. package/open-sse/translator/request/openai-responses.js +385 -0
  476. package/open-sse/translator/request/openai-to-claude.js +383 -0
  477. package/open-sse/translator/request/openai-to-commandcode.js +176 -0
  478. package/open-sse/translator/request/openai-to-cursor.js +185 -0
  479. package/open-sse/translator/request/openai-to-gemini.js +442 -0
  480. package/open-sse/translator/request/openai-to-kiro.js +607 -0
  481. package/open-sse/translator/request/openai-to-kiro.old.js +278 -0
  482. package/open-sse/translator/request/openai-to-ollama.js +195 -0
  483. package/open-sse/translator/request/openai-to-vertex.js +42 -0
  484. package/open-sse/translator/response/claude-to-openai.js +195 -0
  485. package/open-sse/translator/response/commandcode-to-openai.js +188 -0
  486. package/open-sse/translator/response/cursor-to-openai.js +30 -0
  487. package/open-sse/translator/response/gemini-to-openai.js +147 -0
  488. package/open-sse/translator/response/kiro-to-claude.js +261 -0
  489. package/open-sse/translator/response/kiro-to-openai.js +160 -0
  490. package/open-sse/translator/response/ollama-to-openai.js +134 -0
  491. package/open-sse/translator/response/openai-responses.js +535 -0
  492. package/open-sse/translator/response/openai-to-antigravity.js +123 -0
  493. package/open-sse/translator/response/openai-to-claude.js +265 -0
  494. package/open-sse/translator/schema/blocks.js +43 -0
  495. package/open-sse/translator/schema/defaults.js +7 -0
  496. package/open-sse/translator/schema/finishReasons.js +27 -0
  497. package/open-sse/translator/schema/index.js +8 -0
  498. package/open-sse/translator/schema/roles.js +16 -0
  499. package/open-sse/utils/agentGoalPolicy.js +85 -0
  500. package/open-sse/utils/aiSdkCompat.js +75 -0
  501. package/open-sse/utils/bypassHandler.js +298 -0
  502. package/open-sse/utils/cacheControlPolicy.js +189 -0
  503. package/open-sse/utils/claudeCloaking.js +155 -0
  504. package/open-sse/utils/claudeHeaderCache.js +70 -0
  505. package/open-sse/utils/claudeSignature.js +41 -0
  506. package/open-sse/utils/clientDetector.js +63 -0
  507. package/open-sse/utils/codebuddySanitizer.js +96 -0
  508. package/open-sse/utils/composerToolCalls.js +158 -0
  509. package/open-sse/utils/cors.js +13 -0
  510. package/open-sse/utils/cursorChecksum.js +149 -0
  511. package/open-sse/utils/cursorImages.js +224 -0
  512. package/open-sse/utils/cursorProtobuf.js +904 -0
  513. package/open-sse/utils/cursorVersionDetector.js +55 -0
  514. package/open-sse/utils/debugLog.js +14 -0
  515. package/open-sse/utils/diagnostics.js +143 -0
  516. package/open-sse/utils/error.js +164 -0
  517. package/open-sse/utils/estimateSize.js +33 -0
  518. package/open-sse/utils/finishReason.js +32 -0
  519. package/open-sse/utils/flattenToolHistory.js +68 -0
  520. package/open-sse/utils/headers.js +36 -0
  521. package/open-sse/utils/heapPressure.js +35 -0
  522. package/open-sse/utils/jsonToSse.js +125 -0
  523. package/open-sse/utils/keepaliveThreshold.js +40 -0
  524. package/open-sse/utils/logger.js +104 -0
  525. package/open-sse/utils/noThinkingAlias.js +74 -0
  526. package/open-sse/utils/number.js +7 -0
  527. package/open-sse/utils/ollamaTransform.js +85 -0
  528. package/open-sse/utils/opencodeHeaders.js +47 -0
  529. package/open-sse/utils/progressTracker.js +81 -0
  530. package/open-sse/utils/providerRequestLogging.js +219 -0
  531. package/open-sse/utils/proxyFetch.js +369 -0
  532. package/open-sse/utils/reasoningContentInjector.js +79 -0
  533. package/open-sse/utils/reasoningFields.js +70 -0
  534. package/open-sse/utils/requestLogger.js +260 -0
  535. package/open-sse/utils/responsesInputNormalization.js +92 -0
  536. package/open-sse/utils/responsesStatePolicy.js +52 -0
  537. package/open-sse/utils/responsesStreamHelpers.js +49 -0
  538. package/open-sse/utils/sessionManager.js +240 -0
  539. package/open-sse/utils/sleep.js +6 -0
  540. package/open-sse/utils/sse.js +14 -0
  541. package/open-sse/utils/sseConstants.js +23 -0
  542. package/open-sse/utils/sseHeartbeat.js +104 -0
  543. package/open-sse/utils/stream.js +517 -0
  544. package/open-sse/utils/streamFailureFinalization.js +134 -0
  545. package/open-sse/utils/streamHandler.js +250 -0
  546. package/open-sse/utils/streamHelpers.js +137 -0
  547. package/open-sse/utils/textualToolCall.js +104 -0
  548. package/open-sse/utils/thinkCloseMarker.js +72 -0
  549. package/open-sse/utils/thinkTagParser.js +146 -0
  550. package/open-sse/utils/toolCallArguments.js +12 -0
  551. package/open-sse/utils/toolDeduper.js +49 -0
  552. package/open-sse/utils/toolSources.js +31 -0
  553. package/open-sse/utils/upstreamResponseHeaders.js +25 -0
  554. package/open-sse/utils/urlSanitize.js +15 -0
  555. package/open-sse/utils/usageTracking.js +347 -0
  556. package/package.json +1 -1
@@ -0,0 +1,98 @@
1
+ /**
2
+ * REGISTRY ENTRY TEMPLATE — copy into registry/{id}.js when adding a new provider.
3
+ *
4
+ * NOT imported by registry/index.js (lives outside registry/, static-import list ignores it).
5
+ * Delete every block your provider does not need. Only `id` + `category` are required.
6
+ * Field contract: see schema.js `@typedef RegistryEntry`. Runtime builders: providers/index.js.
7
+ *
8
+ * Quick recipes:
9
+ * - Plain API-key LLM → id, alias, category:"apikey", display, transport{baseUrl}, models.
10
+ * - OAuth LLM (device/PKCE)→ add oauth{...}; clientId/tokenUrl auto-inject into transport.
11
+ * - Media-only (tts/stt/…) → drop `models`+chat baseUrl, fill media{serviceKinds, *Config}.
12
+ */
13
+
14
+ // import { CLAUDE_API_HEADERS, GOOGLE_OAUTH_CLIENT, OPENAI_COMPAT_BASE } from "./shared.js";
15
+
16
+ export default {
17
+ // ── identity ────────────────────────────────────────────────────────────
18
+ id: "example", // REQUIRED. kebab-case, unique.
19
+ alias: "ex", // short key for PROVIDER_MODELS (defaults to id if omitted).
20
+ aliases: ["example-ai"], // optional extra lookup tokens.
21
+ uiAlias: "ex", // optional UI badge token.
22
+ category: "apikey", // REQUIRED. "apikey" | "oauth" | "freeTier" | ...
23
+
24
+ // ── auth hints (only when relevant) ──────────────────────────────────────
25
+ authType: "apikey", // "apikey" | "oauth".
26
+ hasOAuth: false, // true if an OAuth flow exists.
27
+ authModes: ["apikey"], // e.g. ["oauth","apikey"] when both supported.
28
+ // noAuth: true, // local/free providers needing no credential.
29
+
30
+ // ── UI display ───────────────────────────────────────────────────────────
31
+ display: {
32
+ name: "Example",
33
+ icon: "bolt", // material icon name OR textIcon fallback.
34
+ color: "#3B82F6",
35
+ textIcon: "EX",
36
+ website: "https://example.com",
37
+ notice: { apiKeyUrl: "https://example.com/keys" }, // or signupUrl.
38
+ // deprecated: true, deprecationNotice: "RISK_NOTICE",
39
+ // kindNotice: { image: "Requires paid plan." },
40
+ // mediaPriority: 1,
41
+ },
42
+
43
+ // ── transport (HTTP runtime) → PROVIDERS[id] ─────────────────────────────
44
+ // Defaults applied: format:"openai". Declare ONLY what differs.
45
+ transport: {
46
+ baseUrl: "https://api.example.com/v1/chat/completions",
47
+ format: "openai", // "openai" | "claude" | "gemini" | "openai-responses" | ...
48
+ // validateUrl: "https://api.example.com/v1/models",
49
+ // headers: { "User-Agent": "..." }, // static fingerprint (anti-ban) lives here.
50
+ // auth: { header: "x-api-key", scheme: "raw" },
51
+ // forceStream: true, urlSuffix: "?beta=true",
52
+ // quirks: { dropOutputConfig: true },
53
+ // retry: { 429: { attempts: 6 }, 503: { attempts: 3 } },
54
+ // usage: { url: "https://api.example.com/usage" }, // or { urls: [...] } for multi-call.
55
+ // modelsFetcher: { url: "https://api.example.com/models", type: "openai" }, // dynamic model list.
56
+ // regions: { sgp: "https://sgp...", cn: "https://cn..." }, defaultRegion: "sgp",
57
+ // NOTE: clientId/clientSecret/tokenUrl are injected from `oauth` — do NOT duplicate here.
58
+ },
59
+
60
+ // ── oauth flow → PROVIDER_OAUTH[id] (omit for pure API-key) ───────────────
61
+ // oauth: {
62
+ // clientId: "app_xxx",
63
+ // authorizeUrl: "https://auth.example.com/oauth/authorize", // PKCE/code flow.
64
+ // tokenUrl: "https://auth.example.com/oauth/token",
65
+ // deviceCodeUrl: "https://auth.example.com/device", // device-code flow.
66
+ // refreshUrl: "https://auth.example.com/oauth/token",
67
+ // scope: "openid profile offline_access", // or scopes: [...].
68
+ // codeChallengeMethod: "S256",
69
+ // redirectUri: "http://127.0.0.1:1455/auth/callback", fixedPort: 1455, callbackPath: "/auth/callback",
70
+ // extraParams: { foo: "bar" },
71
+ // refresh: { encoding: "form", scope: "openid offline_access" }, // "form" | "json".
72
+ // refreshLeadMs: 300000,
73
+ // userInfoUrl: "https://example.com/userinfo",
74
+ // },
75
+
76
+ // ── media (non-LLM services) → PROVIDER_MEDIA[id] ────────────────────────
77
+ // media: {
78
+ // serviceKinds: ["llm", "tts", "stt", "embedding", "image", "imageToText", "webSearch"],
79
+ // ttsConfig: { baseUrl: "...", authType: "apikey", authHeader: "bearer", format: "openai", defaultModel: "tts-1", models: [{ id: "tts-1", name: "TTS-1" }] },
80
+ // sttConfig: { baseUrl: "...", authType: "apikey", authHeader: "bearer", format: "openai", models: [{ id: "whisper-1", name: "Whisper" }] },
81
+ // embeddingConfig: { baseUrl: "...", authType: "apikey", authHeader: "bearer", models: [{ id: "emb-1", name: "Emb", dimensions: 1536 }] },
82
+ // imageConfig: { baseUrl: "https://api.example.com/v1/images/generations" },
83
+ // searchViaChat: { defaultModel: "ex-search", pricingUrl: "https://example.com/pricing" },
84
+ // // hiddenKinds: ["image"],
85
+ // },
86
+
87
+ // ── models (omit = no key; [] = explicit empty) ──────────────────────────
88
+ models: [
89
+ { id: "example-large", name: "Example Large" },
90
+ // { id: "example-img", name: "Example Image", type: "image", capabilities: ["text2img"], params: ["size"] },
91
+ // { id: "example-emb", name: "Example Embed", type: "embedding" },
92
+ ],
93
+
94
+ // ── optional flags ───────────────────────────────────────────────────────
95
+ // features: { usage: true },
96
+ // thinkingConfig: { options: ["auto", "none", "low", "high"], defaultMode: "auto" },
97
+ // passthroughModels: true,
98
+ };
@@ -0,0 +1,293 @@
1
+ // Model capabilities — what each model can read/do beyond plain text.
2
+ //
3
+ // Fallback order (first match wins), result merged over DEFAULT_CAPABILITIES:
4
+ // 1. PROVIDER_CAPABILITIES[provider][model] — provider-specific override
5
+ // 2. MODEL_CAPABILITIES[model] — canonical exact id (handles exceptions)
6
+ // 3. PATTERN_CAPABILITIES — glob match, ordered specific -> generic
7
+ // 4. DEFAULT_CAPABILITIES — safe floor (always returned)
8
+ //
9
+ // ── HOW TO ADD / UPDATE A MODEL ──────────────────────────────────────
10
+ // Authoritative data source: https://models.dev/api.json (145 providers, 4000+
11
+ // models, MIT). Each model exposes the exact fields we map below:
12
+ // modalities.input ["text","image","pdf","audio","video"] -> vision / pdf / audioInput / videoInput
13
+ // modalities.output ["text","image","audio"] -> imageOutput / audioOutput
14
+ // reasoning -> reasoning tool_call -> tools
15
+ // limit.context -> contextWindow limit.output -> maxOutput
16
+ // Look up the model id, then:
17
+ // • If a PATTERN below already covers it correctly -> nothing to do.
18
+ // • If it is an exception (pattern would mis-match) -> add an exact entry to
19
+ // MODEL_CAPABILITIES (only the fields that differ from DEFAULT).
20
+ // • If a whole new family -> add an ordered PATTERN (specific before generic).
21
+ // NOTE: models.dev has NO "search" flag (web search is a runtime tool, not a
22
+ // model spec); set `search` from vendor docs (Claude 4.x+, GPT-5.x/4o, Gemini
23
+ // 2.0+, Grok, Perplexity). Verify with: curl -s https://models.dev/api.json
24
+
25
+ import { matchPattern } from "./pricing.js";
26
+
27
+ /**
28
+ * Safe floor — every resolved result is merged over this so consumers
29
+ * never need null-checks. Most modern LLMs meet these limits.
30
+ */
31
+ export const DEFAULT_CAPABILITIES = {
32
+ // input modalities
33
+ vision: false, // read images
34
+ pdf: false, // read PDF / documents
35
+ audioInput: false, // read audio
36
+ videoInput: false, // read video
37
+ // output modalities
38
+ imageOutput: false, // generate images
39
+ audioOutput: false, // generate audio
40
+ // features
41
+ search: false, // built-in web search tool / grounding
42
+ tools: true, // function / tool calling
43
+ reasoning: false, // thinking / reasoning
44
+ // thinking wire format (only meaningful when reasoning:true). null → derive from transport.format.
45
+ // enum: openai|claude-adaptive|claude-budget|gemini-level|gemini-budget|zai|qwen|deepseek|kimi|minimax|hunyuan|step
46
+ thinkingFormat: null,
47
+ thinkingCanDisable: true, // false → model cannot turn thinking off (clamp to min instead of disable)
48
+ thinkingRange: null, // { min, max } for budget formats; null = no clamp
49
+ // limits (tokens)
50
+ contextWindow: 200000,
51
+ maxOutput: 64000,
52
+ };
53
+
54
+ // User-added model metadata can carry dashboard service kinds instead of the
55
+ // runtime capability names used here. Map those typed model kinds into input /
56
+ // output capabilities so custom vision models are not treated as text-only.
57
+ const SERVICE_KIND_CAPABILITIES = {
58
+ imageToText: { vision: true },
59
+ image: { imageOutput: true },
60
+ stt: { audioInput: true },
61
+ tts: { audioOutput: true },
62
+ embedding: { tools: false },
63
+ };
64
+
65
+ export function capabilitiesFromServiceKind(kind) {
66
+ return SERVICE_KIND_CAPABILITIES[kind] || null;
67
+ }
68
+
69
+ /**
70
+ * Canonical exact-id overrides — used for exceptions that patterns would
71
+ * otherwise mis-match. Only declare deltas vs DEFAULT.
72
+ */
73
+ export const MODEL_CAPABILITIES = {
74
+ // Claude 4.6/4.7/4.8 and Kiro Sonnet 5 have 1M context + adaptive thinking (override generic claude pattern)
75
+ "claude-opus-4.6": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
76
+ "claude-opus-4.7": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
77
+ "claude-opus-4-7": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
78
+ "claude-opus-4.8": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
79
+ "claude-opus-4-6": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
80
+ "claude-opus-4-8": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
81
+ "claude-opus-4.8-thinking": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
82
+ "claude-opus-4-8-thinking": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
83
+ "claude-sonnet-4.6": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
84
+ "claude-sonnet-4-6": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
85
+ "claude-sonnet-5": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
86
+ "claude-sonnet-5-thinking": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
87
+ "claude-sonnet-5-agentic": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
88
+ "claude-sonnet-5-thinking-agentic": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
89
+
90
+ // Gemini image-gen / OpenAI image / xai image variants
91
+ "gpt-image-1": { imageOutput: true, tools: false },
92
+
93
+ // GLM vision variant (text GLM has no vision)
94
+ "glm-4.6v": { vision: true, reasoning: true, thinkingFormat: "zai", contextWindow: 128000 },
95
+
96
+ // Qwen plain coder/text (no vision) — registry "vision-model" / "coder-model" aliases
97
+ "vision-model": { vision: true, reasoning: true, thinkingFormat: "qwen", contextWindow: 1000000 },
98
+ "coder-model": { reasoning: true, thinkingFormat: "qwen", contextWindow: 1000000 },
99
+ };
100
+
101
+ /**
102
+ * Provider-specific capability overrides. Keyed by provider alias/id.
103
+ */
104
+ export const PROVIDER_CAPABILITIES = {
105
+ // NVIDIA NIM is OpenAI-compatible → rejects MiniMax/GLM native `thinking` field.
106
+ // Force openai reasoning_effort format for its reasoning models. #issue
107
+ "nvidia": {
108
+ "minimaxai/minimax-m2.7": { reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 200000, maxOutput: 131072 },
109
+ "minimaxai/minimax-m3": { vision: true, reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 512000, maxOutput: 131072 },
110
+ "z-ai/glm-5.2": { reasoning: true, thinkingFormat: "openai", contextWindow: 200000, maxOutput: 128000 },
111
+ "deepseek-ai/deepseek-v4-pro": { reasoning: true, thinkingFormat: "openai", contextWindow: 1000000, maxOutput: 65536 },
112
+ "deepseek-ai/deepseek-v4-flash": { reasoning: true, thinkingFormat: "openai", contextWindow: 1000000, maxOutput: 65536 },
113
+ },
114
+ // CodeBuddy.cn — authoritative per-model metadata from the gateway's model
115
+ // config (contextWindow=maxInputTokens, maxOutput=maxOutputTokens, vision=
116
+ // supportsImages). Every model reasons via OpenAI-style reasoning_effort
117
+ // (see registry thinkingFormat). `onlyReasoning` models can't turn thinking
118
+ // off → thinkingCanDisable:false (clamped to minimal instead of disabled).
119
+ "codebuddy-cn": {
120
+ "glm-5.2": { reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 1000000, maxOutput: 48000 },
121
+ "glm-5.1": { reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 200000, maxOutput: 48000 },
122
+ "glm-5.0": { reasoning: true, thinkingFormat: "openai", contextWindow: 200000, maxOutput: 48000 },
123
+ "glm-5.0-turbo": { reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 200000, maxOutput: 48000 },
124
+ "glm-5v-turbo": { vision: true, reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 200000, maxOutput: 38000 },
125
+ "glm-4.7": { reasoning: true, thinkingFormat: "openai", contextWindow: 200000, maxOutput: 48000 },
126
+ "minimax-m3": { vision: true, reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 512000, maxOutput: 48000 },
127
+ "minimax-m2.7": { vision: true, reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 200000, maxOutput: 48000 },
128
+ "kimi-k2.7": { vision: true, reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 256000, maxOutput: 32000 },
129
+ "kimi-k2.6": { vision: true, reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 256000, maxOutput: 32000 },
130
+ "kimi-k2.5": { vision: true, reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 164000, maxOutput: 32000 },
131
+ "hy3-preview": { vision: true, reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 192000, maxOutput: 64000 },
132
+ "deepseek-v4-pro": { vision: true, reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 1000000, maxOutput: 50000 },
133
+ "deepseek-v4-flash": { vision: true, reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 1000000, maxOutput: 50000 },
134
+ "deepseek-v3-2-volc": { reasoning: true, thinkingFormat: "openai", thinkingCanDisable: false, contextWindow: 96000, maxOutput: 32000 },
135
+ },
136
+ };
137
+
138
+ /**
139
+ * Pattern fallback — glob (* = wildcard), matched case-insensitively and
140
+ * anchored (^...$) so a pattern must match the full model id. ORDER MATTERS:
141
+ * vision/specific variants first, text-only/generic families last, to avoid
142
+ * a broad family pattern swallowing an exception (e.g. glm-4.6v vs glm-5).
143
+ */
144
+ export const PATTERN_CAPABILITIES = [
145
+ // ── Claude (4.6+ = adaptive thinking; older/haiku = budget) ──────
146
+ { pattern: "*claude*opus-4.6*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive" } },
147
+ { pattern: "*claude*opus-4.7*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive" } },
148
+ { pattern: "*claude*opus-4.8*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive" } },
149
+ { pattern: "*claude*sonnet-4.6*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive" } },
150
+ { pattern: "*claude*sonnet-4.7*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive" } },
151
+ { pattern: "*claude*haiku*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "claude-budget" } },
152
+ { pattern: "*claude*opus*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "claude-budget" } },
153
+ { pattern: "*claude*sonnet*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "claude-budget" } },
154
+ { pattern: "*claude*fable*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "claude-budget", contextWindow: 1000000, maxOutput: 128000 } },
155
+ { pattern: "*claude*mythos*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "claude-budget", contextWindow: 1000000, maxOutput: 128000 } },
156
+ { pattern: "*claude-3*", caps: { vision: true } },
157
+ { pattern: "*claude*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "claude-budget" } },
158
+
159
+ // ── Gemini (all 2.0+ multimodal + google_search grounding, 1M ctx) ─
160
+ { pattern: "*gemini*image*", caps: { vision: true, imageOutput: true, contextWindow: 1048576 } },
161
+ { pattern: "*gemini-3*pro*", caps: { vision: true, audioInput: true, videoInput: true, reasoning: true, search: true, thinkingFormat: "gemini-level", thinkingCanDisable: false, contextWindow: 1048576, maxOutput: 65535 } },
162
+ { pattern: "*gemini-3*", caps: { vision: true, audioInput: true, videoInput: true, reasoning: true, search: true, thinkingFormat: "gemini-level", thinkingCanDisable: false, contextWindow: 1048576, maxOutput: 65536 } },
163
+ { pattern: "*gemini-2.5*", caps: { vision: true, audioInput: true, videoInput: true, reasoning: true, search: true, thinkingFormat: "gemini-budget", thinkingRange: { min: 0, max: 24576 }, contextWindow: 1048576, maxOutput: 65536 } },
164
+ { pattern: "*gemini-2*", caps: { vision: true, audioInput: true, videoInput: true, search: true, contextWindow: 1048576, maxOutput: 65536 } },
165
+ { pattern: "*gemini*", caps: { vision: true, search: true, contextWindow: 1048576 } },
166
+ { pattern: "*gemma*", caps: { vision: true, contextWindow: 128000 } },
167
+ { pattern: "*nanobanana*", caps: { vision: true, imageOutput: true } },
168
+
169
+ // ── OpenAI GPT-5.x (vision + thinking + web search) ──────────────
170
+ { pattern: "*gpt-5*image*", caps: { imageOutput: true } },
171
+ { pattern: "*gpt-5*codex*", caps: { reasoning: true, search: true, thinkingFormat: "openai", contextWindow: 400000, maxOutput: 128000 } },
172
+ { pattern: "*gpt-5*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "openai", contextWindow: 400000, maxOutput: 128000 } },
173
+ { pattern: "*gpt-4o*", caps: { vision: true, search: true, contextWindow: 128000, maxOutput: 16384 } },
174
+ { pattern: "*gpt-4.1*", caps: { vision: true, contextWindow: 1000000, maxOutput: 32768 } },
175
+ { pattern: "*gpt-4-turbo*", caps: { vision: true, contextWindow: 128000 } },
176
+ { pattern: "*gpt-4*", caps: { contextWindow: 128000 } },
177
+ { pattern: "*gpt-3.5*", caps: { contextWindow: 16385, maxOutput: 4096 } },
178
+ { pattern: "*gpt-oss*", caps: { reasoning: true, thinkingFormat: "openai", contextWindow: 128000 } },
179
+
180
+ // ── OpenAI o-series (reasoning, vision) ──────────────────────────
181
+ { pattern: "*o1-mini*", caps: { reasoning: true, thinkingFormat: "openai", contextWindow: 128000 } },
182
+ { pattern: "*o1*", caps: { vision: true, reasoning: true, thinkingFormat: "openai", contextWindow: 200000, maxOutput: 100000 } },
183
+ { pattern: "*o3*", caps: { vision: true, reasoning: true, thinkingFormat: "openai", contextWindow: 200000, maxOutput: 100000 } },
184
+ { pattern: "*o4*", caps: { vision: true, reasoning: true, thinkingFormat: "openai", contextWindow: 200000, maxOutput: 100000 } },
185
+
186
+ // ── Grok (vision + Live Search) ──────────────────────────────────
187
+ { pattern: "*grok*image*", caps: { imageOutput: true } },
188
+ { pattern: "*grok-code*", caps: { reasoning: true, thinkingFormat: "openai", contextWindow: 256000 } },
189
+ // Grok 4.5 (Grok CLI / Grok Build): 500k context per cli-chat-proxy /v1/models
190
+ { pattern: "*grok-4.5*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "openai", contextWindow: 500000, maxOutput: 64000 } },
191
+ { pattern: "*grok-4*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "openai", contextWindow: 256000 } },
192
+ { pattern: "*grok-3*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "openai", contextWindow: 131072 } },
193
+ { pattern: "*grok*", caps: { vision: true, reasoning: true, search: true, thinkingFormat: "openai", contextWindow: 256000 } },
194
+
195
+ // ── Qwen (3.5+ = native vision/video; coder & max = text-only; QwQ = thinking-only) ─
196
+ { pattern: "*qwen*vl*", caps: { vision: true, reasoning: true, thinkingFormat: "qwen", contextWindow: 262144 } },
197
+ { pattern: "*qwen*omni*", caps: { vision: true, audioInput: true, videoInput: true, reasoning: true, thinkingFormat: "qwen", contextWindow: 262144, maxOutput: 65536 } },
198
+ { pattern: "*qwen*coder*", caps: { reasoning: true, thinkingFormat: "qwen", contextWindow: 1000000 } },
199
+ { pattern: "*qwen*max*", caps: { reasoning: true, thinkingFormat: "qwen", contextWindow: 1000000, maxOutput: 65536 } },
200
+ { pattern: "*qwen3.5*", caps: { vision: true, videoInput: true, reasoning: true, thinkingFormat: "qwen", contextWindow: 1000000, maxOutput: 65536 } },
201
+ { pattern: "*qwen3.6*", caps: { vision: true, videoInput: true, reasoning: true, thinkingFormat: "qwen", contextWindow: 1000000, maxOutput: 65536 } },
202
+ { pattern: "*qwen3.7*", caps: { vision: true, videoInput: true, reasoning: true, thinkingFormat: "qwen", contextWindow: 1000000, maxOutput: 65536 } },
203
+ { pattern: "*qwen*plus*", caps: { vision: true, reasoning: true, thinkingFormat: "qwen", contextWindow: 1000000, maxOutput: 65536 } },
204
+ { pattern: "*qwen*235b*", caps: { reasoning: true, thinkingFormat: "qwen", contextWindow: 262144 } },
205
+ { pattern: "*qwq*", caps: { reasoning: true, thinkingFormat: "qwen", thinkingCanDisable: false, contextWindow: 131072 } },
206
+ { pattern: "*qwen*", caps: { reasoning: true, thinkingFormat: "qwen", contextWindow: 262144 } },
207
+
208
+ // ── Kimi (enabled→reasoning_effort; K2.7-code cannot disable) ─────
209
+ { pattern: "*kimi*k2.7*code*", caps: { vision: true, reasoning: true, thinkingFormat: "kimi", thinkingCanDisable: false, contextWindow: 262144, maxOutput: 262144 } },
210
+ { pattern: "*kimi*k2*", caps: { vision: true, reasoning: true, thinkingFormat: "kimi", contextWindow: 262144, maxOutput: 262144 } },
211
+ { pattern: "*kimi*", caps: { reasoning: true, thinkingFormat: "kimi", contextWindow: 262144 } },
212
+
213
+ // ── GLM / Z.ai (thinking.enabled; disable via enable_thinking:false) ─
214
+ { pattern: "*glm-5*", caps: { reasoning: true, thinkingFormat: "zai", contextWindow: 200000, maxOutput: 128000 } },
215
+ { pattern: "*glm-4.7*", caps: { reasoning: true, thinkingFormat: "zai", contextWindow: 200000, maxOutput: 128000 } },
216
+ { pattern: "*glm-4*", caps: { reasoning: true, thinkingFormat: "zai", contextWindow: 200000 } },
217
+ { pattern: "*glm*", caps: { reasoning: true, thinkingFormat: "zai", contextWindow: 200000 } },
218
+
219
+ // ── DeepSeek (thinking.enabled + reasoning_effort; r1 = thinking-only) ─
220
+ { pattern: "*deepseek-v4*", caps: { reasoning: true, thinkingFormat: "deepseek", contextWindow: 1000000, maxOutput: 384000 } },
221
+ { pattern: "*reasoner*", caps: { reasoning: true, thinkingFormat: "deepseek", thinkingCanDisable: false, contextWindow: 128000 } },
222
+ { pattern: "*deepseek-r*", caps: { reasoning: true, thinkingFormat: "deepseek", thinkingCanDisable: false, contextWindow: 128000 } },
223
+ { pattern: "*deepseek-chat*", caps: { contextWindow: 128000 } },
224
+ { pattern: "*deepseek*", caps: { reasoning: true, thinkingFormat: "deepseek", contextWindow: 128000 } },
225
+
226
+ // ── MiniMax (M3 = adaptive; M2.x cannot disable) ─────────────────
227
+ { pattern: "*minimax*image*", caps: { imageOutput: true } },
228
+ { pattern: "*minimax-m3*", caps: { vision: true, reasoning: true, thinkingFormat: "minimax", contextWindow: 1048576, maxOutput: 512000 } },
229
+ { pattern: "*minimax-m2.7*", caps: { reasoning: true, thinkingFormat: "minimax", thinkingCanDisable: false, contextWindow: 204800, maxOutput: 131072 } },
230
+ { pattern: "*minimax*", caps: { reasoning: true, thinkingFormat: "minimax", thinkingCanDisable: false, contextWindow: 200000, maxOutput: 131072 } },
231
+
232
+ // ── Xiaomi MiMo (vision, 1M / 262K ctx) ──────────────────────────
233
+ { pattern: "*mimo*v2.5*", caps: { vision: true, contextWindow: 1048576, maxOutput: 131072 } },
234
+ { pattern: "*mimo*omni*", caps: { vision: true, audioInput: true, contextWindow: 262144, maxOutput: 131072 } },
235
+ { pattern: "*mimo*", caps: { vision: true, contextWindow: 262144, maxOutput: 131072 } },
236
+
237
+ // ── Llama (4 = vision/1M; 3.x = text-only/128K) ──────────────────
238
+ { pattern: "*llama-4*", caps: { vision: true, contextWindow: 1000000 } },
239
+ { pattern: "*llama*", caps: { contextWindow: 128000 } },
240
+
241
+ // ── Mistral (Large 3 = vision/256K; codestral text) ──────────────
242
+ { pattern: "*codestral*", caps: { contextWindow: 256000 } },
243
+ { pattern: "*mistral-large*", caps: { vision: true, contextWindow: 256000 } },
244
+ { pattern: "*mistral*", caps: { contextWindow: 128000 } },
245
+
246
+ // ── Cohere (Command A Vision = vision; others text) ──────────────
247
+ { pattern: "*command-a-vision*", caps: { vision: true, contextWindow: 128000 } },
248
+ { pattern: "*command*", caps: { contextWindow: 128000 } },
249
+
250
+ // ── Perplexity (web search native) ───────────────────────────────
251
+ { pattern: "*sonar*", caps: { search: true, contextWindow: 128000 } },
252
+ { pattern: "*pplx*", caps: { search: true, contextWindow: 128000 } },
253
+ { pattern: "*perplexity*", caps: { search: true, contextWindow: 128000 } },
254
+
255
+ // ── Others ───────────────────────────────────────────────────────
256
+ { pattern: "*hunyuan*", caps: { reasoning: true, thinkingFormat: "hunyuan", contextWindow: 262144, maxOutput: 262144 } },
257
+ { pattern: "hy3*", caps: { reasoning: true, thinkingFormat: "hunyuan", contextWindow: 262144, maxOutput: 262144 } },
258
+ { pattern: "*step-*", caps: { reasoning: true, thinkingFormat: "step", contextWindow: 128000 } },
259
+ { pattern: "*nemotron*", caps: { reasoning: true, contextWindow: 128000 } },
260
+ { pattern: "*ling-*", caps: { reasoning: true, contextWindow: 128000 } },
261
+ ];
262
+
263
+ /**
264
+ * Resolve capabilities for a model using the 4-step fallback chain,
265
+ * merged over DEFAULT_CAPABILITIES so the result is always complete.
266
+ *
267
+ * @param {string} provider
268
+ * @param {string} model
269
+ * @returns {object} full capabilities object
270
+ */
271
+ export function getCapabilitiesForModel(provider, model) {
272
+ if (!model) return { ...DEFAULT_CAPABILITIES };
273
+
274
+ // 1. Provider-specific override
275
+ if (provider && PROVIDER_CAPABILITIES[provider]?.[model]) {
276
+ return { ...DEFAULT_CAPABILITIES, ...PROVIDER_CAPABILITIES[provider][model] };
277
+ }
278
+
279
+ // 2. Canonical exact (strip vendor prefix: "anthropic/claude-opus-4.7" -> "claude-opus-4.7")
280
+ const baseModel = model.includes("/") ? model.split("/").pop() : model;
281
+ if (MODEL_CAPABILITIES[baseModel]) return { ...DEFAULT_CAPABILITIES, ...MODEL_CAPABILITIES[baseModel] };
282
+ if (MODEL_CAPABILITIES[model]) return { ...DEFAULT_CAPABILITIES, ...MODEL_CAPABILITIES[model] };
283
+
284
+ // 3. Pattern match (first match wins)
285
+ for (const { pattern, caps } of PATTERN_CAPABILITIES) {
286
+ if (matchPattern(pattern, baseModel) || matchPattern(pattern, model)) {
287
+ return { ...DEFAULT_CAPABILITIES, ...caps };
288
+ }
289
+ }
290
+
291
+ // 4. Floor
292
+ return { ...DEFAULT_CAPABILITIES };
293
+ }
@@ -0,0 +1,51 @@
1
+ // Single source: build PROVIDERS + PROVIDER_MODELS from registry/{id}.js (transport + models co-located).
2
+ import REGISTRY from "./registry/index.js";
3
+ import { PROVIDER_DEFAULTS } from "./schema.js";
4
+ import { normalizeModel } from "./models/schema.js";
5
+ import { buildTtsProviderModels } from "../config/ttsModels.js";
6
+
7
+ // oauth block is canonical for these fields; inject into transport so executors reading
8
+ // this.config.{clientId,clientSecret,tokenUrl} keep working without duplicating in transport
9
+ const OAUTH_INJECT_FIELDS = ["clientId", "clientSecret", "tokenUrl"];
10
+
11
+ // transport: re-apply shared default (format:"openai") + inject oauth-canonical fields
12
+ function buildTransport(transport, oauth) {
13
+ const t = { ...transport };
14
+ if (!t.format) t.format = PROVIDER_DEFAULTS.format;
15
+ if (oauth) {
16
+ for (const f of OAUTH_INJECT_FIELDS) {
17
+ if (t[f] === undefined && oauth[f] !== undefined) t[f] = oauth[f];
18
+ }
19
+ }
20
+ return t;
21
+ }
22
+
23
+ const MEDIA_KEYS = new Set([
24
+ "serviceKinds", "ttsConfig", "sttConfig", "embeddingConfig",
25
+ "imageConfig", "imageToTextConfig", "videoConfig", "musicConfig",
26
+ "searchViaChat", "searchConfig", "fetchConfig",
27
+ "modelsFetcher", "mediaPriority", "hiddenKinds",
28
+ ]);
29
+
30
+ export const PROVIDERS = {};
31
+ export const PROVIDER_MODELS = {};
32
+ export const PROVIDER_OAUTH = {};
33
+ export const PROVIDER_MEDIA = {};
34
+ for (const entry of REGISTRY) {
35
+ if (entry.transport) {
36
+ PROVIDERS[entry.id] = buildTransport(entry.transport, entry.oauth);
37
+ if (entry.transports) PROVIDERS[entry.id].transports = entry.transports;
38
+ }
39
+ if (entry.models !== undefined) PROVIDER_MODELS[entry.alias || entry.id] = entry.models.map(normalizeModel);
40
+ if (entry.oauth) PROVIDER_OAUTH[entry.id] = entry.oauth;
41
+ // Build PROVIDER_MEDIA from top-level fields (post-migration) + legacy entry.media
42
+ const mediaFields = {};
43
+ for (const k of MEDIA_KEYS) {
44
+ if (entry[k] !== undefined) mediaFields[k] = entry[k];
45
+ }
46
+ if (entry.media) Object.assign(mediaFields, entry.media);
47
+ if (Object.keys(mediaFields).length) PROVIDER_MEDIA[entry.id] = mediaFields;
48
+ }
49
+
50
+ // TTS model/voice tables keyed by special names (openai-tts-models, ...), not provider ids
51
+ Object.assign(PROVIDER_MODELS, buildTtsProviderModels());
@@ -0,0 +1,20 @@
1
+ // Codex auto-generates a "-review" variant for each llm model (review quota family)
2
+ export const CODEX_REVIEW_SUFFIX = "-review";
3
+
4
+ export function withCodexReviewModels(models) {
5
+ return models.flatMap((model) => {
6
+ if ((model.kind || model.type || "llm") !== "llm" || model.id.endsWith(CODEX_REVIEW_SUFFIX)) {
7
+ return [model];
8
+ }
9
+ return [
10
+ model,
11
+ {
12
+ ...model,
13
+ id: `${model.id}${CODEX_REVIEW_SUFFIX}`,
14
+ name: `${model.name} Review`,
15
+ upstreamModelId: model.upstreamModelId || model.id,
16
+ quotaFamily: "review"
17
+ }
18
+ ];
19
+ });
20
+ }
@@ -0,0 +1,33 @@
1
+ // Derive a display name from a model id when the entry omits `name` (mirrors PATTERN_PRICING).
2
+ // Provider entries that ship their own `name` always win; this is only a fallback for terse entries.
3
+
4
+ // Capitalize a hyphen/space separated token group: "coder-plus" → "Coder Plus".
5
+ function titleCase(s) {
6
+ return s
7
+ .split(/[-_\s]+/)
8
+ .filter(Boolean)
9
+ .map((w) => (/^\d/.test(w) ? w : w.charAt(0).toUpperCase() + w.slice(1)))
10
+ .join(" ");
11
+ }
12
+
13
+ // Ordered: first match wins. Keep specific patterns above generic ones.
14
+ export const NAME_PATTERNS = [
15
+ [/^kimi-k(\d+(?:\.\d+)?)(-thinking)?$/i, (m) => `Kimi K${m[1]}${m[2] ? " Thinking" : ""}`],
16
+ [/^glm-(\d+(?:\.\d+)?)(v)?$/i, (m) => `GLM ${m[1]}${m[2] ? "V (Vision)" : ""}`],
17
+ [/^minimax-m(\d+(?:\.\d+)?)$/i, (m) => `MiniMax M${m[1]}`],
18
+ [/^gpt-(.+)$/i, (m) => `GPT ${titleCase(m[1])}`],
19
+ [/^gemini-(.+)$/i, (m) => `Gemini ${titleCase(m[1])}`],
20
+ [/^grok-(.+)$/i, (m) => `Grok ${titleCase(m[1])}`],
21
+ [/^deepseek-(.+)$/i, (m) => `DeepSeek ${titleCase(m[1])}`],
22
+ [/^qwen([\d.]+.*)$/i, (m) => `Qwen ${titleCase(m[1])}`],
23
+ ];
24
+
25
+ // id → display name (regex fallback → id verbatim)
26
+ export function deriveModelName(id) {
27
+ if (typeof id !== "string") return id;
28
+ for (const [re, fn] of NAME_PATTERNS) {
29
+ const m = id.match(re);
30
+ if (m) return fn(m);
31
+ }
32
+ return id;
33
+ }
@@ -0,0 +1,40 @@
1
+ import { deriveModelName } from "./namePatterns.js";
2
+
3
+ // Normalize version separators in a model id: hyphen between two digits becomes a dot.
4
+ // Registry ids use dots for versions ("claude-sonnet-4.5") but clients (CLIs, aliases)
5
+ // often send them with dashes ("claude-sonnet-4-5"). Only digit-digit hyphens are
6
+ // touched, so word/suffix hyphens stay intact ("-thinking", "-agentic", "qwen3-coder-next").
7
+ export function normalizeModelId(modelId) {
8
+ if (typeof modelId !== "string") return modelId;
9
+ return modelId.replace(/(\d)-(\d)/g, "$1.$2");
10
+ }
11
+
12
+ // Model defaults centralized (was scattered as `m.kind || "llm"`, `quotaFamily || "normal"`, etc.)
13
+ export const MODEL_DEFAULTS = {
14
+ kind: "llm",
15
+ quotaFamily: "normal",
16
+ strip: [],
17
+ targetFormat: null
18
+ };
19
+
20
+ // Normalize a registry model entry: accept terse "id" string, fill name via regex when omitted.
21
+ // Override always wins (raw spread last); name falls back to regex → id.
22
+ export function normalizeModel(raw) {
23
+ const model = typeof raw === "string" ? { id: raw } : raw;
24
+ if (model.name !== undefined) return model;
25
+ return { ...model, name: deriveModelName(model.id) };
26
+ }
27
+
28
+ // Resolve model kind with default (accepts legacy `type` field)
29
+ export function modelKind(model) {
30
+ return model?.kind || model?.type || MODEL_DEFAULTS.kind;
31
+ }
32
+ export function modelQuotaFamily(model) {
33
+ return model?.quotaFamily || MODEL_DEFAULTS.quotaFamily;
34
+ }
35
+ export function modelStrip(model) {
36
+ return model?.strip || [];
37
+ }
38
+ export function modelTargetFormat(model) {
39
+ return model?.targetFormat || MODEL_DEFAULTS.targetFormat;
40
+ }