@cjhyy/code-shell-core 0.5.0-rc.0

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 (484) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +162 -0
  3. package/dist/agent/coordinator.d.ts +49 -0
  4. package/dist/agent/coordinator.js +77 -0
  5. package/dist/arena/arena.d.ts +43 -0
  6. package/dist/arena/arena.js +334 -0
  7. package/dist/arena/context/context-tools.d.ts +16 -0
  8. package/dist/arena/context/context-tools.js +231 -0
  9. package/dist/arena/detect-mode.d.ts +20 -0
  10. package/dist/arena/detect-mode.js +78 -0
  11. package/dist/arena/digest-builder.d.ts +25 -0
  12. package/dist/arena/digest-builder.js +120 -0
  13. package/dist/arena/index.d.ts +29 -0
  14. package/dist/arena/index.js +29 -0
  15. package/dist/arena/iterate/convergence.d.ts +25 -0
  16. package/dist/arena/iterate/convergence.js +103 -0
  17. package/dist/arena/iterate/formats/index.d.ts +22 -0
  18. package/dist/arena/iterate/formats/index.js +283 -0
  19. package/dist/arena/iterate/index.d.ts +11 -0
  20. package/dist/arena/iterate/index.js +9 -0
  21. package/dist/arena/iterate/iterative-arena.d.ts +23 -0
  22. package/dist/arena/iterate/iterative-arena.js +237 -0
  23. package/dist/arena/iterate/parse.d.ts +42 -0
  24. package/dist/arena/iterate/parse.js +123 -0
  25. package/dist/arena/iterate/phases/argue.d.ts +22 -0
  26. package/dist/arena/iterate/phases/argue.js +159 -0
  27. package/dist/arena/iterate/phases/revise.d.ts +16 -0
  28. package/dist/arena/iterate/phases/revise.js +62 -0
  29. package/dist/arena/iterate/phases/tournament.d.ts +34 -0
  30. package/dist/arena/iterate/phases/tournament.js +113 -0
  31. package/dist/arena/iterate/tools/web-tools.d.ts +13 -0
  32. package/dist/arena/iterate/tools/web-tools.js +54 -0
  33. package/dist/arena/iterate/types.d.ts +152 -0
  34. package/dist/arena/iterate/types.js +8 -0
  35. package/dist/arena/ledger.d.ts +47 -0
  36. package/dist/arena/ledger.js +151 -0
  37. package/dist/arena/lenses/architecture.d.ts +5 -0
  38. package/dist/arena/lenses/architecture.js +22 -0
  39. package/dist/arena/lenses/engineering.d.ts +5 -0
  40. package/dist/arena/lenses/engineering.js +22 -0
  41. package/dist/arena/lenses/general.d.ts +5 -0
  42. package/dist/arena/lenses/general.js +20 -0
  43. package/dist/arena/lenses/index.d.ts +16 -0
  44. package/dist/arena/lenses/index.js +47 -0
  45. package/dist/arena/lenses/product.d.ts +5 -0
  46. package/dist/arena/lenses/product.js +22 -0
  47. package/dist/arena/model-presets.d.ts +23 -0
  48. package/dist/arena/model-presets.js +44 -0
  49. package/dist/arena/phases/adjudication.d.ts +24 -0
  50. package/dist/arena/phases/adjudication.js +144 -0
  51. package/dist/arena/phases/build-consensus.d.ts +29 -0
  52. package/dist/arena/phases/build-consensus.js +86 -0
  53. package/dist/arena/phases/claim-registry.d.ts +26 -0
  54. package/dist/arena/phases/claim-registry.js +60 -0
  55. package/dist/arena/phases/cross-review.d.ts +45 -0
  56. package/dist/arena/phases/cross-review.js +224 -0
  57. package/dist/arena/phases/debate-rounds.d.ts +27 -0
  58. package/dist/arena/phases/debate-rounds.js +162 -0
  59. package/dist/arena/phases/participant-research.d.ts +38 -0
  60. package/dist/arena/phases/participant-research.js +317 -0
  61. package/dist/arena/phases/planning-detail-expansion.d.ts +38 -0
  62. package/dist/arena/phases/planning-detail-expansion.js +121 -0
  63. package/dist/arena/planner.d.ts +27 -0
  64. package/dist/arena/planner.js +312 -0
  65. package/dist/arena/providers/docs.d.ts +6 -0
  66. package/dist/arena/providers/docs.js +108 -0
  67. package/dist/arena/providers/git.d.ts +8 -0
  68. package/dist/arena/providers/git.js +174 -0
  69. package/dist/arena/providers/index.d.ts +32 -0
  70. package/dist/arena/providers/index.js +132 -0
  71. package/dist/arena/providers/none.d.ts +7 -0
  72. package/dist/arena/providers/none.js +11 -0
  73. package/dist/arena/providers/repo.d.ts +6 -0
  74. package/dist/arena/providers/repo.js +255 -0
  75. package/dist/arena/render/session.d.ts +17 -0
  76. package/dist/arena/render/session.js +190 -0
  77. package/dist/arena/render/terminal.d.ts +34 -0
  78. package/dist/arena/render/terminal.js +286 -0
  79. package/dist/arena/strategies/discussion.d.ts +25 -0
  80. package/dist/arena/strategies/discussion.js +143 -0
  81. package/dist/arena/strategies/index.d.ts +15 -0
  82. package/dist/arena/strategies/index.js +28 -0
  83. package/dist/arena/strategies/language-wrapper.d.ts +17 -0
  84. package/dist/arena/strategies/language-wrapper.js +102 -0
  85. package/dist/arena/strategies/lens-wrapper.d.ts +16 -0
  86. package/dist/arena/strategies/lens-wrapper.js +236 -0
  87. package/dist/arena/strategies/planning.d.ts +30 -0
  88. package/dist/arena/strategies/planning.js +225 -0
  89. package/dist/arena/strategies/review.d.ts +26 -0
  90. package/dist/arena/strategies/review.js +168 -0
  91. package/dist/arena/strategies/utils.d.ts +39 -0
  92. package/dist/arena/strategies/utils.js +647 -0
  93. package/dist/arena/tools/selector.d.ts +17 -0
  94. package/dist/arena/tools/selector.js +61 -0
  95. package/dist/arena/transitions.d.ts +48 -0
  96. package/dist/arena/transitions.js +92 -0
  97. package/dist/arena/types.d.ts +508 -0
  98. package/dist/arena/types.js +27 -0
  99. package/dist/cli/agent-server-stdio.d.ts +32 -0
  100. package/dist/cli/agent-server-stdio.js +116 -0
  101. package/dist/colorizer.d.ts +23 -0
  102. package/dist/colorizer.js +12 -0
  103. package/dist/context/compaction.d.ts +116 -0
  104. package/dist/context/compaction.js +534 -0
  105. package/dist/context/manager.d.ts +145 -0
  106. package/dist/context/manager.js +423 -0
  107. package/dist/context/token-counter.d.ts +27 -0
  108. package/dist/context/token-counter.js +91 -0
  109. package/dist/context/tool-result-storage.d.ts +96 -0
  110. package/dist/context/tool-result-storage.js +296 -0
  111. package/dist/cost-tracker.d.ts +64 -0
  112. package/dist/cost-tracker.js +314 -0
  113. package/dist/cron/scheduler.d.ts +34 -0
  114. package/dist/cron/scheduler.js +115 -0
  115. package/dist/data/deepseek-models.json +46 -0
  116. package/dist/data/gemini-models.json +67 -0
  117. package/dist/data/openai-models.json +175 -0
  118. package/dist/data/openrouter-models.d.ts +35 -0
  119. package/dist/data/openrouter-models.js +36 -0
  120. package/dist/data/openrouter-models.json +4626 -0
  121. package/dist/data/openrouter-sync.d.ts +16 -0
  122. package/dist/data/openrouter-sync.js +53 -0
  123. package/dist/data/static-catalogs.d.ts +25 -0
  124. package/dist/data/static-catalogs.js +26 -0
  125. package/dist/data/zai-models.json +56 -0
  126. package/dist/engine/cost-store.d.ts +22 -0
  127. package/dist/engine/cost-store.js +15 -0
  128. package/dist/engine/engine.d.ts +295 -0
  129. package/dist/engine/engine.js +1467 -0
  130. package/dist/engine/model-facade.d.ts +24 -0
  131. package/dist/engine/model-facade.js +194 -0
  132. package/dist/engine/parse-task.d.ts +59 -0
  133. package/dist/engine/parse-task.js +135 -0
  134. package/dist/engine/patch-orphaned-tools.d.ts +52 -0
  135. package/dist/engine/patch-orphaned-tools.js +95 -0
  136. package/dist/engine/query.d.ts +50 -0
  137. package/dist/engine/query.js +107 -0
  138. package/dist/engine/runtime.d.ts +50 -0
  139. package/dist/engine/runtime.js +59 -0
  140. package/dist/engine/streaming-tool-queue.d.ts +34 -0
  141. package/dist/engine/streaming-tool-queue.js +61 -0
  142. package/dist/engine/token-budget.d.ts +22 -0
  143. package/dist/engine/token-budget.js +40 -0
  144. package/dist/engine/tool-summary.d.ts +13 -0
  145. package/dist/engine/tool-summary.js +35 -0
  146. package/dist/engine/turn-loop.d.ts +122 -0
  147. package/dist/engine/turn-loop.js +602 -0
  148. package/dist/engine/turn-state.d.ts +20 -0
  149. package/dist/engine/turn-state.js +17 -0
  150. package/dist/exceptions.d.ts +61 -0
  151. package/dist/exceptions.js +116 -0
  152. package/dist/git/utils.d.ts +35 -0
  153. package/dist/git/utils.js +98 -0
  154. package/dist/git/worktree.d.ts +36 -0
  155. package/dist/git/worktree.js +139 -0
  156. package/dist/hooks/events.d.ts +114 -0
  157. package/dist/hooks/events.js +4 -0
  158. package/dist/hooks/inject.d.ts +19 -0
  159. package/dist/hooks/inject.js +29 -0
  160. package/dist/hooks/registry.d.ts +15 -0
  161. package/dist/hooks/registry.js +84 -0
  162. package/dist/hooks/shell-runner.d.ts +45 -0
  163. package/dist/hooks/shell-runner.js +173 -0
  164. package/dist/index.d.ts +117 -0
  165. package/dist/index.js +145 -0
  166. package/dist/llm/api-key-sanitize.d.ts +22 -0
  167. package/dist/llm/api-key-sanitize.js +81 -0
  168. package/dist/llm/capabilities/index.d.ts +20 -0
  169. package/dist/llm/capabilities/index.js +39 -0
  170. package/dist/llm/capabilities/rules.d.ts +26 -0
  171. package/dist/llm/capabilities/rules.js +215 -0
  172. package/dist/llm/capabilities/types.d.ts +114 -0
  173. package/dist/llm/capabilities/types.js +24 -0
  174. package/dist/llm/client-base.d.ts +29 -0
  175. package/dist/llm/client-base.js +137 -0
  176. package/dist/llm/client-factory.d.ts +10 -0
  177. package/dist/llm/client-factory.js +29 -0
  178. package/dist/llm/model-cache.d.ts +21 -0
  179. package/dist/llm/model-cache.js +46 -0
  180. package/dist/llm/model-fetcher.d.ts +29 -0
  181. package/dist/llm/model-fetcher.js +282 -0
  182. package/dist/llm/model-pool.d.ts +95 -0
  183. package/dist/llm/model-pool.js +246 -0
  184. package/dist/llm/provider-catalog.d.ts +32 -0
  185. package/dist/llm/provider-catalog.js +50 -0
  186. package/dist/llm/provider-kinds.d.ts +21 -0
  187. package/dist/llm/provider-kinds.js +132 -0
  188. package/dist/llm/providers/anthropic.d.ts +19 -0
  189. package/dist/llm/providers/anthropic.js +267 -0
  190. package/dist/llm/providers/openai.d.ts +64 -0
  191. package/dist/llm/providers/openai.js +606 -0
  192. package/dist/llm/retry.d.ts +12 -0
  193. package/dist/llm/retry.js +17 -0
  194. package/dist/llm/stream-watchdog.d.ts +42 -0
  195. package/dist/llm/stream-watchdog.js +70 -0
  196. package/dist/llm/token-counter.d.ts +17 -0
  197. package/dist/llm/token-counter.js +36 -0
  198. package/dist/llm/types.d.ts +37 -0
  199. package/dist/llm/types.js +4 -0
  200. package/dist/logging/logger.d.ts +109 -0
  201. package/dist/logging/logger.js +390 -0
  202. package/dist/logging/sanitize-messages.d.ts +42 -0
  203. package/dist/logging/sanitize-messages.js +150 -0
  204. package/dist/logging/session-recorder.d.ts +90 -0
  205. package/dist/logging/session-recorder.js +304 -0
  206. package/dist/lsp/client.d.ts +41 -0
  207. package/dist/lsp/client.js +166 -0
  208. package/dist/lsp/manager.d.ts +40 -0
  209. package/dist/lsp/manager.js +124 -0
  210. package/dist/lsp/servers.d.ts +16 -0
  211. package/dist/lsp/servers.js +60 -0
  212. package/dist/migrate-models.d.ts +45 -0
  213. package/dist/migrate-models.js +179 -0
  214. package/dist/onboarding.d.ts +189 -0
  215. package/dist/onboarding.js +625 -0
  216. package/dist/plugins/gitOps.d.ts +32 -0
  217. package/dist/plugins/gitOps.js +62 -0
  218. package/dist/plugins/installedPlugins.d.ts +15 -0
  219. package/dist/plugins/installedPlugins.js +56 -0
  220. package/dist/plugins/knownMarketplaces.d.ts +10 -0
  221. package/dist/plugins/knownMarketplaces.js +46 -0
  222. package/dist/plugins/loadPluginHooks.d.ts +52 -0
  223. package/dist/plugins/loadPluginHooks.js +162 -0
  224. package/dist/plugins/marketplaceManager.d.ts +49 -0
  225. package/dist/plugins/marketplaceManager.js +142 -0
  226. package/dist/plugins/parseMarketplaceInput.d.ts +16 -0
  227. package/dist/plugins/parseMarketplaceInput.js +73 -0
  228. package/dist/plugins/pluginCommandHook.d.ts +54 -0
  229. package/dist/plugins/pluginCommandHook.js +180 -0
  230. package/dist/plugins/pluginCommandsLoader.d.ts +25 -0
  231. package/dist/plugins/pluginCommandsLoader.js +114 -0
  232. package/dist/plugins/pluginInstaller.d.ts +36 -0
  233. package/dist/plugins/pluginInstaller.js +228 -0
  234. package/dist/plugins/schemas.d.ts +9 -0
  235. package/dist/plugins/schemas.js +136 -0
  236. package/dist/plugins/types.d.ts +75 -0
  237. package/dist/plugins/types.js +7 -0
  238. package/dist/plugins/varRewrite.d.ts +42 -0
  239. package/dist/plugins/varRewrite.js +129 -0
  240. package/dist/preset/index.d.ts +60 -0
  241. package/dist/preset/index.js +159 -0
  242. package/dist/product/define.d.ts +60 -0
  243. package/dist/product/define.js +123 -0
  244. package/dist/product/index.d.ts +5 -0
  245. package/dist/product/index.js +4 -0
  246. package/dist/product/types.d.ts +111 -0
  247. package/dist/product/types.js +21 -0
  248. package/dist/prompt/composer.d.ts +49 -0
  249. package/dist/prompt/composer.js +168 -0
  250. package/dist/prompt/instruction-scanner.d.ts +54 -0
  251. package/dist/prompt/instruction-scanner.js +187 -0
  252. package/dist/prompt/section-cache.d.ts +15 -0
  253. package/dist/prompt/section-cache.js +31 -0
  254. package/dist/prompt/section-loader.d.ts +26 -0
  255. package/dist/prompt/section-loader.js +53 -0
  256. package/dist/prompt/sections/base.md +35 -0
  257. package/dist/prompt/sections/coding.md +31 -0
  258. package/dist/prompt/sections/orchestration.md +16 -0
  259. package/dist/prompt/sections/tone.md +9 -0
  260. package/dist/protocol/chat-session-manager.d.ts +33 -0
  261. package/dist/protocol/chat-session-manager.js +65 -0
  262. package/dist/protocol/chat-session.d.ts +49 -0
  263. package/dist/protocol/chat-session.js +86 -0
  264. package/dist/protocol/client.d.ts +104 -0
  265. package/dist/protocol/client.js +260 -0
  266. package/dist/protocol/factories.d.ts +93 -0
  267. package/dist/protocol/factories.js +64 -0
  268. package/dist/protocol/helpers.d.ts +42 -0
  269. package/dist/protocol/helpers.js +55 -0
  270. package/dist/protocol/index.d.ts +4 -0
  271. package/dist/protocol/index.js +4 -0
  272. package/dist/protocol/server.d.ts +80 -0
  273. package/dist/protocol/server.js +855 -0
  274. package/dist/protocol/transport.d.ts +37 -0
  275. package/dist/protocol/transport.js +85 -0
  276. package/dist/protocol/types.d.ts +221 -0
  277. package/dist/protocol/types.js +61 -0
  278. package/dist/remote/bridge.d.ts +37 -0
  279. package/dist/remote/bridge.js +103 -0
  280. package/dist/run/ArtifactTracker.d.ts +38 -0
  281. package/dist/run/ArtifactTracker.js +132 -0
  282. package/dist/run/CheckpointWriter.d.ts +53 -0
  283. package/dist/run/CheckpointWriter.js +135 -0
  284. package/dist/run/EngineRunner.d.ts +72 -0
  285. package/dist/run/EngineRunner.js +119 -0
  286. package/dist/run/Evaluator.d.ts +56 -0
  287. package/dist/run/Evaluator.js +62 -0
  288. package/dist/run/FileRunStore.d.ts +39 -0
  289. package/dist/run/FileRunStore.js +176 -0
  290. package/dist/run/Heartbeat.d.ts +54 -0
  291. package/dist/run/Heartbeat.js +123 -0
  292. package/dist/run/RunApprovalBackend.d.ts +53 -0
  293. package/dist/run/RunApprovalBackend.js +85 -0
  294. package/dist/run/RunLock.d.ts +40 -0
  295. package/dist/run/RunLock.js +98 -0
  296. package/dist/run/RunManager.d.ts +82 -0
  297. package/dist/run/RunManager.js +587 -0
  298. package/dist/run/RunQueue.d.ts +27 -0
  299. package/dist/run/RunQueue.js +73 -0
  300. package/dist/run/RunStore.d.ts +25 -0
  301. package/dist/run/RunStore.js +9 -0
  302. package/dist/run/factory.d.ts +63 -0
  303. package/dist/run/factory.js +51 -0
  304. package/dist/run/index.d.ts +17 -0
  305. package/dist/run/index.js +23 -0
  306. package/dist/run/types.d.ts +136 -0
  307. package/dist/run/types.js +28 -0
  308. package/dist/runtime/safe-spawn.d.ts +118 -0
  309. package/dist/runtime/safe-spawn.js +268 -0
  310. package/dist/services/analytics.d.ts +29 -0
  311. package/dist/services/analytics.js +84 -0
  312. package/dist/services/auto-dream.d.ts +49 -0
  313. package/dist/services/auto-dream.js +124 -0
  314. package/dist/services/diagnostics.d.ts +41 -0
  315. package/dist/services/diagnostics.js +99 -0
  316. package/dist/services/extract-memories.d.ts +31 -0
  317. package/dist/services/extract-memories.js +71 -0
  318. package/dist/services/index.d.ts +11 -0
  319. package/dist/services/index.js +17 -0
  320. package/dist/services/memory-orchestrator.d.ts +60 -0
  321. package/dist/services/memory-orchestrator.js +133 -0
  322. package/dist/services/notifier.d.ts +25 -0
  323. package/dist/services/notifier.js +69 -0
  324. package/dist/services/oauth.d.ts +27 -0
  325. package/dist/services/oauth.js +153 -0
  326. package/dist/services/session-memory.d.ts +37 -0
  327. package/dist/services/session-memory.js +81 -0
  328. package/dist/session/file-history.d.ts +41 -0
  329. package/dist/session/file-history.js +115 -0
  330. package/dist/session/memory.d.ts +104 -0
  331. package/dist/session/memory.js +310 -0
  332. package/dist/session/session-manager.d.ts +41 -0
  333. package/dist/session/session-manager.js +261 -0
  334. package/dist/session/transcript.d.ts +39 -0
  335. package/dist/session/transcript.js +186 -0
  336. package/dist/settings/manager.d.ts +36 -0
  337. package/dist/settings/manager.js +187 -0
  338. package/dist/settings/schema.d.ts +1219 -0
  339. package/dist/settings/schema.js +246 -0
  340. package/dist/skills/frontmatter.d.ts +13 -0
  341. package/dist/skills/frontmatter.js +70 -0
  342. package/dist/skills/index.d.ts +7 -0
  343. package/dist/skills/index.js +6 -0
  344. package/dist/skills/scanner.d.ts +31 -0
  345. package/dist/skills/scanner.js +171 -0
  346. package/dist/state.d.ts +160 -0
  347. package/dist/state.js +267 -0
  348. package/dist/tool-system/builtin/agent-notifications.d.ts +84 -0
  349. package/dist/tool-system/builtin/agent-notifications.js +197 -0
  350. package/dist/tool-system/builtin/agent-registry.d.ts +67 -0
  351. package/dist/tool-system/builtin/agent-registry.js +126 -0
  352. package/dist/tool-system/builtin/agent-transcript-translator.d.ts +22 -0
  353. package/dist/tool-system/builtin/agent-transcript-translator.js +160 -0
  354. package/dist/tool-system/builtin/agent.d.ts +16 -0
  355. package/dist/tool-system/builtin/agent.js +364 -0
  356. package/dist/tool-system/builtin/apply-patch/applier.d.ts +26 -0
  357. package/dist/tool-system/builtin/apply-patch/applier.js +250 -0
  358. package/dist/tool-system/builtin/apply-patch/index.d.ts +20 -0
  359. package/dist/tool-system/builtin/apply-patch/index.js +101 -0
  360. package/dist/tool-system/builtin/apply-patch/parser.d.ts +17 -0
  361. package/dist/tool-system/builtin/apply-patch/parser.js +212 -0
  362. package/dist/tool-system/builtin/apply-patch/seek-sequence.d.ts +18 -0
  363. package/dist/tool-system/builtin/apply-patch/seek-sequence.js +123 -0
  364. package/dist/tool-system/builtin/apply-patch/types.d.ts +49 -0
  365. package/dist/tool-system/builtin/apply-patch/types.js +13 -0
  366. package/dist/tool-system/builtin/arena.d.ts +31 -0
  367. package/dist/tool-system/builtin/arena.js +416 -0
  368. package/dist/tool-system/builtin/ask-user.d.ts +20 -0
  369. package/dist/tool-system/builtin/ask-user.js +99 -0
  370. package/dist/tool-system/builtin/bash.d.ts +21 -0
  371. package/dist/tool-system/builtin/bash.js +149 -0
  372. package/dist/tool-system/builtin/brief.d.ts +6 -0
  373. package/dist/tool-system/builtin/brief.js +41 -0
  374. package/dist/tool-system/builtin/config.d.ts +6 -0
  375. package/dist/tool-system/builtin/config.js +67 -0
  376. package/dist/tool-system/builtin/cron.d.ts +10 -0
  377. package/dist/tool-system/builtin/cron.js +61 -0
  378. package/dist/tool-system/builtin/edit.d.ts +6 -0
  379. package/dist/tool-system/builtin/edit.js +100 -0
  380. package/dist/tool-system/builtin/file-cache.d.ts +11 -0
  381. package/dist/tool-system/builtin/file-cache.js +39 -0
  382. package/dist/tool-system/builtin/glob.d.ts +7 -0
  383. package/dist/tool-system/builtin/glob.js +76 -0
  384. package/dist/tool-system/builtin/grep.d.ts +7 -0
  385. package/dist/tool-system/builtin/grep.js +150 -0
  386. package/dist/tool-system/builtin/index.d.ts +20 -0
  387. package/dist/tool-system/builtin/index.js +449 -0
  388. package/dist/tool-system/builtin/lsp.d.ts +6 -0
  389. package/dist/tool-system/builtin/lsp.js +141 -0
  390. package/dist/tool-system/builtin/mcp-tools.d.ts +10 -0
  391. package/dist/tool-system/builtin/mcp-tools.js +102 -0
  392. package/dist/tool-system/builtin/memory.d.ts +26 -0
  393. package/dist/tool-system/builtin/memory.js +226 -0
  394. package/dist/tool-system/builtin/notebook-edit.d.ts +6 -0
  395. package/dist/tool-system/builtin/notebook-edit.js +124 -0
  396. package/dist/tool-system/builtin/plan.d.ts +15 -0
  397. package/dist/tool-system/builtin/plan.js +55 -0
  398. package/dist/tool-system/builtin/powershell.d.ts +11 -0
  399. package/dist/tool-system/builtin/powershell.js +64 -0
  400. package/dist/tool-system/builtin/read.d.ts +6 -0
  401. package/dist/tool-system/builtin/read.js +70 -0
  402. package/dist/tool-system/builtin/remote-trigger.d.ts +6 -0
  403. package/dist/tool-system/builtin/remote-trigger.js +54 -0
  404. package/dist/tool-system/builtin/repl.d.ts +11 -0
  405. package/dist/tool-system/builtin/repl.js +82 -0
  406. package/dist/tool-system/builtin/send-message.d.ts +6 -0
  407. package/dist/tool-system/builtin/send-message.js +47 -0
  408. package/dist/tool-system/builtin/skill-prompt.d.ts +20 -0
  409. package/dist/tool-system/builtin/skill-prompt.js +52 -0
  410. package/dist/tool-system/builtin/skill.d.ts +9 -0
  411. package/dist/tool-system/builtin/skill.js +55 -0
  412. package/dist/tool-system/builtin/sleep.d.ts +6 -0
  413. package/dist/tool-system/builtin/sleep.js +33 -0
  414. package/dist/tool-system/builtin/task.d.ts +48 -0
  415. package/dist/tool-system/builtin/task.js +139 -0
  416. package/dist/tool-system/builtin/tool-search.d.ts +11 -0
  417. package/dist/tool-system/builtin/tool-search.js +90 -0
  418. package/dist/tool-system/builtin/web-fetch.d.ts +10 -0
  419. package/dist/tool-system/builtin/web-fetch.js +328 -0
  420. package/dist/tool-system/builtin/web-search.d.ts +25 -0
  421. package/dist/tool-system/builtin/web-search.js +174 -0
  422. package/dist/tool-system/builtin/worktree.d.ts +10 -0
  423. package/dist/tool-system/builtin/worktree.js +95 -0
  424. package/dist/tool-system/builtin/write.d.ts +6 -0
  425. package/dist/tool-system/builtin/write.js +36 -0
  426. package/dist/tool-system/context.d.ts +165 -0
  427. package/dist/tool-system/context.js +18 -0
  428. package/dist/tool-system/executor.d.ts +49 -0
  429. package/dist/tool-system/executor.js +495 -0
  430. package/dist/tool-system/investigation-guard.d.ts +46 -0
  431. package/dist/tool-system/investigation-guard.js +155 -0
  432. package/dist/tool-system/mcp-manager.d.ts +67 -0
  433. package/dist/tool-system/mcp-manager.js +249 -0
  434. package/dist/tool-system/permission.d.ts +111 -0
  435. package/dist/tool-system/permission.js +774 -0
  436. package/dist/tool-system/registry.d.ts +32 -0
  437. package/dist/tool-system/registry.js +131 -0
  438. package/dist/tool-system/sandbox/bwrap.d.ts +13 -0
  439. package/dist/tool-system/sandbox/bwrap.js +63 -0
  440. package/dist/tool-system/sandbox/index.d.ts +78 -0
  441. package/dist/tool-system/sandbox/index.js +222 -0
  442. package/dist/tool-system/sandbox/off.d.ts +2 -0
  443. package/dist/tool-system/sandbox/off.js +8 -0
  444. package/dist/tool-system/sandbox/seatbelt.d.ts +18 -0
  445. package/dist/tool-system/sandbox/seatbelt.js +109 -0
  446. package/dist/tool-system/task-guard.d.ts +29 -0
  447. package/dist/tool-system/task-guard.js +70 -0
  448. package/dist/tool-system/validation.d.ts +5 -0
  449. package/dist/tool-system/validation.js +39 -0
  450. package/dist/types.d.ts +376 -0
  451. package/dist/types.js +4 -0
  452. package/dist/updater.d.ts +65 -0
  453. package/dist/updater.js +405 -0
  454. package/dist/utils/debug.d.ts +41 -0
  455. package/dist/utils/debug.js +110 -0
  456. package/dist/utils/earlyInput.d.ts +43 -0
  457. package/dist/utils/earlyInput.js +166 -0
  458. package/dist/utils/env.d.ts +24 -0
  459. package/dist/utils/env.js +104 -0
  460. package/dist/utils/envUtils.d.ts +51 -0
  461. package/dist/utils/envUtils.js +135 -0
  462. package/dist/utils/execFileNoThrow.d.ts +39 -0
  463. package/dist/utils/execFileNoThrow.js +74 -0
  464. package/dist/utils/format.d.ts +44 -0
  465. package/dist/utils/format.js +236 -0
  466. package/dist/utils/intl.d.ts +22 -0
  467. package/dist/utils/intl.js +83 -0
  468. package/dist/utils/lockfile.d.ts +15 -0
  469. package/dist/utils/lockfile.js +30 -0
  470. package/dist/utils/memoize.d.ts +19 -0
  471. package/dist/utils/memoize.js +14 -0
  472. package/dist/utils/semver.d.ts +6 -0
  473. package/dist/utils/semver.js +13 -0
  474. package/dist/utils/sliceAnsi.d.ts +12 -0
  475. package/dist/utils/sliceAnsi.js +62 -0
  476. package/dist/utils/systemTheme.d.ts +40 -0
  477. package/dist/utils/systemTheme.js +108 -0
  478. package/dist/utils/task-sanitizer.d.ts +6 -0
  479. package/dist/utils/task-sanitizer.js +24 -0
  480. package/dist/utils/theme.d.ts +93 -0
  481. package/dist/utils/theme.js +544 -0
  482. package/dist/utils/toolDisplay.d.ts +31 -0
  483. package/dist/utils/toolDisplay.js +188 -0
  484. package/package.json +72 -0
@@ -0,0 +1,4626 @@
1
+ {
2
+ "fetchedAt": "2026-05-22T02:21:12.494Z",
3
+ "source": "https://openrouter.ai/api/v1/models",
4
+ "count": 358,
5
+ "models": [
6
+ {
7
+ "id": "qwen/qwen3.7-max",
8
+ "name": "Qwen: Qwen3.7 Max",
9
+ "created": 1779376861,
10
+ "contextLength": 1000000,
11
+ "maxOutputTokens": 65536,
12
+ "inputPricePerMillion": 2.5,
13
+ "outputPricePerMillion": 7.5,
14
+ "modalities": [
15
+ "text"
16
+ ]
17
+ },
18
+ {
19
+ "id": "x-ai/grok-build-0.1",
20
+ "name": "xAI: Grok Build 0.1",
21
+ "created": 1779298123,
22
+ "contextLength": 256000,
23
+ "maxOutputTokens": 0,
24
+ "inputPricePerMillion": 1,
25
+ "outputPricePerMillion": 2,
26
+ "modalities": [
27
+ "text",
28
+ "image"
29
+ ]
30
+ },
31
+ {
32
+ "id": "google/gemini-3.5-flash",
33
+ "name": "Google: Gemini 3.5 Flash",
34
+ "created": 1779193800,
35
+ "contextLength": 1048576,
36
+ "maxOutputTokens": 65536,
37
+ "inputPricePerMillion": 1.5,
38
+ "outputPricePerMillion": 9,
39
+ "modalities": [
40
+ "text",
41
+ "image",
42
+ "video",
43
+ "file",
44
+ "audio"
45
+ ]
46
+ },
47
+ {
48
+ "id": "anthropic/claude-opus-4.7-fast",
49
+ "name": "Anthropic: Claude Opus 4.7 (Fast)",
50
+ "created": 1778613011,
51
+ "contextLength": 1000000,
52
+ "maxOutputTokens": 128000,
53
+ "inputPricePerMillion": 30,
54
+ "outputPricePerMillion": 150,
55
+ "modalities": [
56
+ "text",
57
+ "image",
58
+ "file"
59
+ ]
60
+ },
61
+ {
62
+ "id": "perceptron/perceptron-mk1",
63
+ "name": "Perceptron: Perceptron Mk1",
64
+ "created": 1778597029,
65
+ "contextLength": 32768,
66
+ "maxOutputTokens": 8192,
67
+ "inputPricePerMillion": 0.15,
68
+ "outputPricePerMillion": 1.5,
69
+ "modalities": [
70
+ "text",
71
+ "image",
72
+ "video"
73
+ ]
74
+ },
75
+ {
76
+ "id": "inclusionai/ring-2.6-1t",
77
+ "name": "inclusionAI: Ring-2.6-1T",
78
+ "created": 1778247440,
79
+ "contextLength": 262144,
80
+ "maxOutputTokens": 65536,
81
+ "inputPricePerMillion": 0.075,
82
+ "outputPricePerMillion": 0.625,
83
+ "modalities": [
84
+ "text"
85
+ ]
86
+ },
87
+ {
88
+ "id": "google/gemini-3.1-flash-lite",
89
+ "name": "Google: Gemini 3.1 Flash Lite",
90
+ "created": 1778168828,
91
+ "contextLength": 1048576,
92
+ "maxOutputTokens": 65536,
93
+ "inputPricePerMillion": 0.25,
94
+ "outputPricePerMillion": 1.5,
95
+ "modalities": [
96
+ "text",
97
+ "image",
98
+ "video",
99
+ "file",
100
+ "audio"
101
+ ]
102
+ },
103
+ {
104
+ "id": "baidu/cobuddy:free",
105
+ "name": "Baidu Qianfan: CoBuddy (free)",
106
+ "created": 1778035480,
107
+ "contextLength": 131072,
108
+ "maxOutputTokens": 65536,
109
+ "inputPricePerMillion": 0,
110
+ "outputPricePerMillion": 0,
111
+ "modalities": [
112
+ "text"
113
+ ]
114
+ },
115
+ {
116
+ "id": "openai/gpt-chat-latest",
117
+ "name": "OpenAI: GPT Chat Latest",
118
+ "created": 1778000212,
119
+ "contextLength": 400000,
120
+ "maxOutputTokens": 128000,
121
+ "inputPricePerMillion": 5,
122
+ "outputPricePerMillion": 30,
123
+ "modalities": [
124
+ "text",
125
+ "image",
126
+ "file"
127
+ ]
128
+ },
129
+ {
130
+ "id": "x-ai/grok-4.3",
131
+ "name": "xAI: Grok 4.3",
132
+ "created": 1777591821,
133
+ "contextLength": 1000000,
134
+ "maxOutputTokens": 0,
135
+ "inputPricePerMillion": 1.25,
136
+ "outputPricePerMillion": 2.5,
137
+ "modalities": [
138
+ "text",
139
+ "image"
140
+ ]
141
+ },
142
+ {
143
+ "id": "ibm-granite/granite-4.1-8b",
144
+ "name": "IBM: Granite 4.1 8B",
145
+ "created": 1777577071,
146
+ "contextLength": 131072,
147
+ "maxOutputTokens": 131072,
148
+ "inputPricePerMillion": 0.049999999999999996,
149
+ "outputPricePerMillion": 0.09999999999999999,
150
+ "modalities": [
151
+ "text"
152
+ ]
153
+ },
154
+ {
155
+ "id": "mistralai/mistral-medium-3-5",
156
+ "name": "Mistral: Mistral Medium 3.5",
157
+ "created": 1777570439,
158
+ "contextLength": 262144,
159
+ "maxOutputTokens": 0,
160
+ "inputPricePerMillion": 1.5,
161
+ "outputPricePerMillion": 7.5,
162
+ "modalities": [
163
+ "text",
164
+ "image",
165
+ "file"
166
+ ]
167
+ },
168
+ {
169
+ "id": "openrouter/owl-alpha",
170
+ "name": "Owl Alpha",
171
+ "created": 1777398589,
172
+ "contextLength": 1048756,
173
+ "maxOutputTokens": 262144,
174
+ "inputPricePerMillion": 0,
175
+ "outputPricePerMillion": 0,
176
+ "modalities": [
177
+ "text"
178
+ ]
179
+ },
180
+ {
181
+ "id": "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free",
182
+ "name": "NVIDIA: Nemotron 3 Nano Omni (free)",
183
+ "created": 1777393095,
184
+ "contextLength": 256000,
185
+ "maxOutputTokens": 65536,
186
+ "inputPricePerMillion": 0,
187
+ "outputPricePerMillion": 0,
188
+ "modalities": [
189
+ "text",
190
+ "audio",
191
+ "image",
192
+ "video"
193
+ ]
194
+ },
195
+ {
196
+ "id": "poolside/laguna-xs.2:free",
197
+ "name": "Poolside: Laguna XS.2 (free)",
198
+ "created": 1777389604,
199
+ "contextLength": 131072,
200
+ "maxOutputTokens": 8192,
201
+ "inputPricePerMillion": 0,
202
+ "outputPricePerMillion": 0,
203
+ "modalities": [
204
+ "text"
205
+ ]
206
+ },
207
+ {
208
+ "id": "poolside/laguna-m.1:free",
209
+ "name": "Poolside: Laguna M.1 (free)",
210
+ "created": 1777388504,
211
+ "contextLength": 131072,
212
+ "maxOutputTokens": 8192,
213
+ "inputPricePerMillion": 0,
214
+ "outputPricePerMillion": 0,
215
+ "modalities": [
216
+ "text"
217
+ ]
218
+ },
219
+ {
220
+ "id": "~anthropic/claude-haiku-latest",
221
+ "name": "Anthropic Claude Haiku Latest",
222
+ "created": 1777318492,
223
+ "contextLength": 200000,
224
+ "maxOutputTokens": 64000,
225
+ "inputPricePerMillion": 1,
226
+ "outputPricePerMillion": 5,
227
+ "modalities": [
228
+ "text",
229
+ "image",
230
+ "file"
231
+ ]
232
+ },
233
+ {
234
+ "id": "~openai/gpt-mini-latest",
235
+ "name": "OpenAI GPT Mini Latest",
236
+ "created": 1777318471,
237
+ "contextLength": 400000,
238
+ "maxOutputTokens": 128000,
239
+ "inputPricePerMillion": 0.75,
240
+ "outputPricePerMillion": 4.5,
241
+ "modalities": [
242
+ "file",
243
+ "image",
244
+ "text"
245
+ ]
246
+ },
247
+ {
248
+ "id": "~google/gemini-pro-latest",
249
+ "name": "Google Gemini Pro Latest",
250
+ "created": 1777318451,
251
+ "contextLength": 1048576,
252
+ "maxOutputTokens": 65536,
253
+ "inputPricePerMillion": 2,
254
+ "outputPricePerMillion": 12,
255
+ "modalities": [
256
+ "audio",
257
+ "file",
258
+ "image",
259
+ "text",
260
+ "video"
261
+ ]
262
+ },
263
+ {
264
+ "id": "~moonshotai/kimi-latest",
265
+ "name": "MoonshotAI Kimi Latest",
266
+ "created": 1777318428,
267
+ "contextLength": 262142,
268
+ "maxOutputTokens": 262142,
269
+ "inputPricePerMillion": 0.73,
270
+ "outputPricePerMillion": 3.49,
271
+ "modalities": [
272
+ "text",
273
+ "image"
274
+ ]
275
+ },
276
+ {
277
+ "id": "~google/gemini-flash-latest",
278
+ "name": "Google Gemini Flash Latest",
279
+ "created": 1777318398,
280
+ "contextLength": 1048576,
281
+ "maxOutputTokens": 65536,
282
+ "inputPricePerMillion": 1.5,
283
+ "outputPricePerMillion": 9,
284
+ "modalities": [
285
+ "text",
286
+ "image",
287
+ "video",
288
+ "file",
289
+ "audio"
290
+ ]
291
+ },
292
+ {
293
+ "id": "~anthropic/claude-sonnet-latest",
294
+ "name": "Anthropic Claude Sonnet Latest",
295
+ "created": 1777318368,
296
+ "contextLength": 1000000,
297
+ "maxOutputTokens": 128000,
298
+ "inputPricePerMillion": 3,
299
+ "outputPricePerMillion": 15,
300
+ "modalities": [
301
+ "text",
302
+ "image",
303
+ "file"
304
+ ]
305
+ },
306
+ {
307
+ "id": "~openai/gpt-latest",
308
+ "name": "OpenAI GPT Latest",
309
+ "created": 1777318334,
310
+ "contextLength": 1050000,
311
+ "maxOutputTokens": 128000,
312
+ "inputPricePerMillion": 5,
313
+ "outputPricePerMillion": 30,
314
+ "modalities": [
315
+ "file",
316
+ "image",
317
+ "text"
318
+ ]
319
+ },
320
+ {
321
+ "id": "qwen/qwen3.5-plus-20260420",
322
+ "name": "Qwen: Qwen3.5 Plus 2026-04-20",
323
+ "created": 1777261368,
324
+ "contextLength": 1000000,
325
+ "maxOutputTokens": 65536,
326
+ "inputPricePerMillion": 0.3,
327
+ "outputPricePerMillion": 1.7999999999999998,
328
+ "modalities": [
329
+ "text",
330
+ "image",
331
+ "video"
332
+ ]
333
+ },
334
+ {
335
+ "id": "qwen/qwen3.6-flash",
336
+ "name": "Qwen: Qwen3.6 Flash",
337
+ "created": 1777261362,
338
+ "contextLength": 1000000,
339
+ "maxOutputTokens": 65536,
340
+ "inputPricePerMillion": 0.1875,
341
+ "outputPricePerMillion": 1.125,
342
+ "modalities": [
343
+ "text",
344
+ "image",
345
+ "video"
346
+ ]
347
+ },
348
+ {
349
+ "id": "qwen/qwen3.6-35b-a3b",
350
+ "name": "Qwen: Qwen3.6 35B A3B",
351
+ "created": 1777260255,
352
+ "contextLength": 262144,
353
+ "maxOutputTokens": 262144,
354
+ "inputPricePerMillion": 0.15,
355
+ "outputPricePerMillion": 1,
356
+ "modalities": [
357
+ "text",
358
+ "image",
359
+ "video"
360
+ ]
361
+ },
362
+ {
363
+ "id": "qwen/qwen3.6-max-preview",
364
+ "name": "Qwen: Qwen3.6 Max Preview",
365
+ "created": 1777260242,
366
+ "contextLength": 262144,
367
+ "maxOutputTokens": 65536,
368
+ "inputPricePerMillion": 1.04,
369
+ "outputPricePerMillion": 6.24,
370
+ "modalities": [
371
+ "text"
372
+ ]
373
+ },
374
+ {
375
+ "id": "qwen/qwen3.6-27b",
376
+ "name": "Qwen: Qwen3.6 27B",
377
+ "created": 1777255064,
378
+ "contextLength": 262140,
379
+ "maxOutputTokens": 262140,
380
+ "inputPricePerMillion": 0.317,
381
+ "outputPricePerMillion": 3.1999999999999997,
382
+ "modalities": [
383
+ "text",
384
+ "image",
385
+ "video"
386
+ ]
387
+ },
388
+ {
389
+ "id": "openai/gpt-5.5-pro",
390
+ "name": "OpenAI: GPT-5.5 Pro",
391
+ "created": 1777051896,
392
+ "contextLength": 1050000,
393
+ "maxOutputTokens": 128000,
394
+ "inputPricePerMillion": 30,
395
+ "outputPricePerMillion": 180,
396
+ "modalities": [
397
+ "file",
398
+ "image",
399
+ "text"
400
+ ]
401
+ },
402
+ {
403
+ "id": "openai/gpt-5.5",
404
+ "name": "OpenAI: GPT-5.5",
405
+ "created": 1777051893,
406
+ "contextLength": 1050000,
407
+ "maxOutputTokens": 128000,
408
+ "inputPricePerMillion": 5,
409
+ "outputPricePerMillion": 30,
410
+ "modalities": [
411
+ "file",
412
+ "image",
413
+ "text"
414
+ ]
415
+ },
416
+ {
417
+ "id": "deepseek/deepseek-v4-pro",
418
+ "name": "DeepSeek: DeepSeek V4 Pro",
419
+ "created": 1777000679,
420
+ "contextLength": 1048576,
421
+ "maxOutputTokens": 384000,
422
+ "inputPricePerMillion": 0.435,
423
+ "outputPricePerMillion": 0.87,
424
+ "modalities": [
425
+ "text"
426
+ ]
427
+ },
428
+ {
429
+ "id": "deepseek/deepseek-v4-flash:free",
430
+ "name": "DeepSeek: DeepSeek V4 Flash (free)",
431
+ "created": 1777000666,
432
+ "contextLength": 1048576,
433
+ "maxOutputTokens": 384000,
434
+ "inputPricePerMillion": 0,
435
+ "outputPricePerMillion": 0,
436
+ "modalities": [
437
+ "text"
438
+ ]
439
+ },
440
+ {
441
+ "id": "deepseek/deepseek-v4-flash",
442
+ "name": "DeepSeek: DeepSeek V4 Flash",
443
+ "created": 1777000666,
444
+ "contextLength": 1048575,
445
+ "maxOutputTokens": 0,
446
+ "inputPricePerMillion": 0.112,
447
+ "outputPricePerMillion": 0.224,
448
+ "modalities": [
449
+ "text"
450
+ ]
451
+ },
452
+ {
453
+ "id": "inclusionai/ling-2.6-1t",
454
+ "name": "inclusionAI: Ling-2.6-1T",
455
+ "created": 1776948238,
456
+ "contextLength": 262144,
457
+ "maxOutputTokens": 32768,
458
+ "inputPricePerMillion": 0.075,
459
+ "outputPricePerMillion": 0.625,
460
+ "modalities": [
461
+ "text"
462
+ ]
463
+ },
464
+ {
465
+ "id": "tencent/hy3-preview",
466
+ "name": "Tencent: Hy3 preview",
467
+ "created": 1776878150,
468
+ "contextLength": 262144,
469
+ "maxOutputTokens": 262144,
470
+ "inputPricePerMillion": 0.06599999999999999,
471
+ "outputPricePerMillion": 0.26,
472
+ "modalities": [
473
+ "text"
474
+ ]
475
+ },
476
+ {
477
+ "id": "xiaomi/mimo-v2.5-pro",
478
+ "name": "Xiaomi: MiMo-V2.5-Pro",
479
+ "created": 1776874273,
480
+ "contextLength": 1048576,
481
+ "maxOutputTokens": 16384,
482
+ "inputPricePerMillion": 1,
483
+ "outputPricePerMillion": 3,
484
+ "modalities": [
485
+ "text"
486
+ ]
487
+ },
488
+ {
489
+ "id": "xiaomi/mimo-v2.5",
490
+ "name": "Xiaomi: MiMo-V2.5",
491
+ "created": 1776874269,
492
+ "contextLength": 1048576,
493
+ "maxOutputTokens": 131072,
494
+ "inputPricePerMillion": 0.39999999999999997,
495
+ "outputPricePerMillion": 2,
496
+ "modalities": [
497
+ "text",
498
+ "audio",
499
+ "image",
500
+ "video"
501
+ ]
502
+ },
503
+ {
504
+ "id": "openai/gpt-5.4-image-2",
505
+ "name": "OpenAI: GPT-5.4 Image 2",
506
+ "created": 1776797528,
507
+ "contextLength": 272000,
508
+ "maxOutputTokens": 128000,
509
+ "inputPricePerMillion": 8,
510
+ "outputPricePerMillion": 15,
511
+ "modalities": [
512
+ "image",
513
+ "text",
514
+ "file"
515
+ ]
516
+ },
517
+ {
518
+ "id": "inclusionai/ling-2.6-flash",
519
+ "name": "inclusionAI: Ling-2.6-flash",
520
+ "created": 1776795886,
521
+ "contextLength": 262144,
522
+ "maxOutputTokens": 32768,
523
+ "inputPricePerMillion": 0.01,
524
+ "outputPricePerMillion": 0.03,
525
+ "modalities": [
526
+ "text"
527
+ ]
528
+ },
529
+ {
530
+ "id": "~anthropic/claude-opus-latest",
531
+ "name": "Anthropic: Claude Opus Latest",
532
+ "created": 1776795361,
533
+ "contextLength": 1000000,
534
+ "maxOutputTokens": 128000,
535
+ "inputPricePerMillion": 5,
536
+ "outputPricePerMillion": 25,
537
+ "modalities": [
538
+ "text",
539
+ "image",
540
+ "file"
541
+ ]
542
+ },
543
+ {
544
+ "id": "openrouter/pareto-code",
545
+ "name": "Pareto Code Router",
546
+ "created": 1776747900,
547
+ "contextLength": 2000000,
548
+ "maxOutputTokens": 0,
549
+ "inputPricePerMillion": -1000000,
550
+ "outputPricePerMillion": -1000000,
551
+ "modalities": [
552
+ "text"
553
+ ]
554
+ },
555
+ {
556
+ "id": "baidu/qianfan-ocr-fast",
557
+ "name": "Baidu: Qianfan-OCR-Fast",
558
+ "created": 1776707472,
559
+ "contextLength": 65536,
560
+ "maxOutputTokens": 28672,
561
+ "inputPricePerMillion": 0.6799999999999999,
562
+ "outputPricePerMillion": 2.81,
563
+ "modalities": [
564
+ "image",
565
+ "text"
566
+ ]
567
+ },
568
+ {
569
+ "id": "moonshotai/kimi-k2.6",
570
+ "name": "MoonshotAI: Kimi K2.6",
571
+ "created": 1776699402,
572
+ "contextLength": 262142,
573
+ "maxOutputTokens": 262142,
574
+ "inputPricePerMillion": 0.73,
575
+ "outputPricePerMillion": 3.49,
576
+ "modalities": [
577
+ "text",
578
+ "image"
579
+ ]
580
+ },
581
+ {
582
+ "id": "anthropic/claude-opus-4.7",
583
+ "name": "Anthropic: Claude Opus 4.7",
584
+ "created": 1776351100,
585
+ "contextLength": 1000000,
586
+ "maxOutputTokens": 128000,
587
+ "inputPricePerMillion": 5,
588
+ "outputPricePerMillion": 25,
589
+ "modalities": [
590
+ "text",
591
+ "image",
592
+ "file"
593
+ ]
594
+ },
595
+ {
596
+ "id": "anthropic/claude-opus-4.6-fast",
597
+ "name": "Anthropic: Claude Opus 4.6 (Fast)",
598
+ "created": 1775592472,
599
+ "contextLength": 1000000,
600
+ "maxOutputTokens": 128000,
601
+ "inputPricePerMillion": 30,
602
+ "outputPricePerMillion": 150,
603
+ "modalities": [
604
+ "text",
605
+ "image",
606
+ "file"
607
+ ]
608
+ },
609
+ {
610
+ "id": "z-ai/glm-5.1",
611
+ "name": "Z.ai: GLM 5.1",
612
+ "created": 1775578025,
613
+ "contextLength": 202752,
614
+ "maxOutputTokens": 0,
615
+ "inputPricePerMillion": 0.98,
616
+ "outputPricePerMillion": 3.08,
617
+ "modalities": [
618
+ "text"
619
+ ]
620
+ },
621
+ {
622
+ "id": "google/gemma-4-26b-a4b-it:free",
623
+ "name": "Google: Gemma 4 26B A4B (free)",
624
+ "created": 1775227989,
625
+ "contextLength": 262144,
626
+ "maxOutputTokens": 32768,
627
+ "inputPricePerMillion": 0,
628
+ "outputPricePerMillion": 0,
629
+ "modalities": [
630
+ "image",
631
+ "text",
632
+ "video"
633
+ ]
634
+ },
635
+ {
636
+ "id": "google/gemma-4-26b-a4b-it",
637
+ "name": "Google: Gemma 4 26B A4B ",
638
+ "created": 1775227989,
639
+ "contextLength": 262144,
640
+ "maxOutputTokens": 0,
641
+ "inputPricePerMillion": 0.06,
642
+ "outputPricePerMillion": 0.33,
643
+ "modalities": [
644
+ "image",
645
+ "text",
646
+ "video"
647
+ ]
648
+ },
649
+ {
650
+ "id": "google/gemma-4-31b-it:free",
651
+ "name": "Google: Gemma 4 31B (free)",
652
+ "created": 1775148486,
653
+ "contextLength": 262144,
654
+ "maxOutputTokens": 32768,
655
+ "inputPricePerMillion": 0,
656
+ "outputPricePerMillion": 0,
657
+ "modalities": [
658
+ "image",
659
+ "text",
660
+ "video"
661
+ ]
662
+ },
663
+ {
664
+ "id": "google/gemma-4-31b-it",
665
+ "name": "Google: Gemma 4 31B",
666
+ "created": 1775148486,
667
+ "contextLength": 262144,
668
+ "maxOutputTokens": 16384,
669
+ "inputPricePerMillion": 0.12,
670
+ "outputPricePerMillion": 0.37,
671
+ "modalities": [
672
+ "image",
673
+ "text",
674
+ "video"
675
+ ]
676
+ },
677
+ {
678
+ "id": "qwen/qwen3.6-plus",
679
+ "name": "Qwen: Qwen3.6 Plus",
680
+ "created": 1775133557,
681
+ "contextLength": 1000000,
682
+ "maxOutputTokens": 65536,
683
+ "inputPricePerMillion": 0.325,
684
+ "outputPricePerMillion": 1.95,
685
+ "modalities": [
686
+ "text",
687
+ "image",
688
+ "video"
689
+ ]
690
+ },
691
+ {
692
+ "id": "z-ai/glm-5v-turbo",
693
+ "name": "Z.ai: GLM 5V Turbo",
694
+ "created": 1775061458,
695
+ "contextLength": 202752,
696
+ "maxOutputTokens": 131072,
697
+ "inputPricePerMillion": 1.2,
698
+ "outputPricePerMillion": 4,
699
+ "modalities": [
700
+ "image",
701
+ "text",
702
+ "video"
703
+ ]
704
+ },
705
+ {
706
+ "id": "arcee-ai/trinity-large-thinking:free",
707
+ "name": "Arcee AI: Trinity Large Thinking (free)",
708
+ "created": 1775058318,
709
+ "contextLength": 262144,
710
+ "maxOutputTokens": 80000,
711
+ "inputPricePerMillion": 0,
712
+ "outputPricePerMillion": 0,
713
+ "modalities": [
714
+ "text"
715
+ ]
716
+ },
717
+ {
718
+ "id": "arcee-ai/trinity-large-thinking",
719
+ "name": "Arcee AI: Trinity Large Thinking",
720
+ "created": 1775058318,
721
+ "contextLength": 262144,
722
+ "maxOutputTokens": 262144,
723
+ "inputPricePerMillion": 0.22,
724
+ "outputPricePerMillion": 0.85,
725
+ "modalities": [
726
+ "text"
727
+ ]
728
+ },
729
+ {
730
+ "id": "x-ai/grok-4.20-multi-agent",
731
+ "name": "xAI: Grok 4.20 Multi-Agent",
732
+ "created": 1774979158,
733
+ "contextLength": 2000000,
734
+ "maxOutputTokens": 0,
735
+ "inputPricePerMillion": 2,
736
+ "outputPricePerMillion": 6,
737
+ "modalities": [
738
+ "text",
739
+ "image",
740
+ "file"
741
+ ]
742
+ },
743
+ {
744
+ "id": "x-ai/grok-4.20",
745
+ "name": "xAI: Grok 4.20",
746
+ "created": 1774979019,
747
+ "contextLength": 2000000,
748
+ "maxOutputTokens": 0,
749
+ "inputPricePerMillion": 1.25,
750
+ "outputPricePerMillion": 2.5,
751
+ "modalities": [
752
+ "text",
753
+ "image",
754
+ "file"
755
+ ]
756
+ },
757
+ {
758
+ "id": "google/lyria-3-pro-preview",
759
+ "name": "Google: Lyria 3 Pro Preview",
760
+ "created": 1774907286,
761
+ "contextLength": 1048576,
762
+ "maxOutputTokens": 65536,
763
+ "inputPricePerMillion": 0,
764
+ "outputPricePerMillion": 0,
765
+ "modalities": [
766
+ "text",
767
+ "image"
768
+ ]
769
+ },
770
+ {
771
+ "id": "google/lyria-3-clip-preview",
772
+ "name": "Google: Lyria 3 Clip Preview",
773
+ "created": 1774907255,
774
+ "contextLength": 1048576,
775
+ "maxOutputTokens": 65536,
776
+ "inputPricePerMillion": 0,
777
+ "outputPricePerMillion": 0,
778
+ "modalities": [
779
+ "text",
780
+ "image"
781
+ ]
782
+ },
783
+ {
784
+ "id": "kwaipilot/kat-coder-pro-v2",
785
+ "name": "Kwaipilot: KAT-Coder-Pro V2",
786
+ "created": 1774649310,
787
+ "contextLength": 256000,
788
+ "maxOutputTokens": 80000,
789
+ "inputPricePerMillion": 0.3,
790
+ "outputPricePerMillion": 1.2,
791
+ "modalities": [
792
+ "text"
793
+ ]
794
+ },
795
+ {
796
+ "id": "rekaai/reka-edge",
797
+ "name": "Reka Edge",
798
+ "created": 1774026965,
799
+ "contextLength": 16384,
800
+ "maxOutputTokens": 16384,
801
+ "inputPricePerMillion": 0.09999999999999999,
802
+ "outputPricePerMillion": 0.09999999999999999,
803
+ "modalities": [
804
+ "image",
805
+ "text",
806
+ "video"
807
+ ]
808
+ },
809
+ {
810
+ "id": "xiaomi/mimo-v2-omni",
811
+ "name": "Xiaomi: MiMo-V2-Omni",
812
+ "created": 1773863703,
813
+ "contextLength": 262144,
814
+ "maxOutputTokens": 65536,
815
+ "inputPricePerMillion": 0.39999999999999997,
816
+ "outputPricePerMillion": 2,
817
+ "modalities": [
818
+ "text",
819
+ "audio",
820
+ "image",
821
+ "video"
822
+ ]
823
+ },
824
+ {
825
+ "id": "xiaomi/mimo-v2-pro",
826
+ "name": "Xiaomi: MiMo-V2-Pro",
827
+ "created": 1773863643,
828
+ "contextLength": 1048576,
829
+ "maxOutputTokens": 131072,
830
+ "inputPricePerMillion": 1,
831
+ "outputPricePerMillion": 3,
832
+ "modalities": [
833
+ "text"
834
+ ]
835
+ },
836
+ {
837
+ "id": "minimax/minimax-m2.7",
838
+ "name": "MiniMax: MiniMax M2.7",
839
+ "created": 1773836697,
840
+ "contextLength": 196608,
841
+ "maxOutputTokens": 131072,
842
+ "inputPricePerMillion": 0.27899999999999997,
843
+ "outputPricePerMillion": 1.2,
844
+ "modalities": [
845
+ "text"
846
+ ]
847
+ },
848
+ {
849
+ "id": "openai/gpt-5.4-nano",
850
+ "name": "OpenAI: GPT-5.4 Nano",
851
+ "created": 1773748187,
852
+ "contextLength": 400000,
853
+ "maxOutputTokens": 128000,
854
+ "inputPricePerMillion": 0.19999999999999998,
855
+ "outputPricePerMillion": 1.25,
856
+ "modalities": [
857
+ "file",
858
+ "image",
859
+ "text"
860
+ ]
861
+ },
862
+ {
863
+ "id": "openai/gpt-5.4-mini",
864
+ "name": "OpenAI: GPT-5.4 Mini",
865
+ "created": 1773748178,
866
+ "contextLength": 400000,
867
+ "maxOutputTokens": 128000,
868
+ "inputPricePerMillion": 0.75,
869
+ "outputPricePerMillion": 4.5,
870
+ "modalities": [
871
+ "file",
872
+ "image",
873
+ "text"
874
+ ]
875
+ },
876
+ {
877
+ "id": "mistralai/mistral-small-2603",
878
+ "name": "Mistral: Mistral Small 4",
879
+ "created": 1773695685,
880
+ "contextLength": 262144,
881
+ "maxOutputTokens": 0,
882
+ "inputPricePerMillion": 0.15,
883
+ "outputPricePerMillion": 0.6,
884
+ "modalities": [
885
+ "text",
886
+ "image"
887
+ ]
888
+ },
889
+ {
890
+ "id": "z-ai/glm-5-turbo",
891
+ "name": "Z.ai: GLM 5 Turbo",
892
+ "created": 1773583573,
893
+ "contextLength": 202752,
894
+ "maxOutputTokens": 131072,
895
+ "inputPricePerMillion": 1.2,
896
+ "outputPricePerMillion": 4,
897
+ "modalities": [
898
+ "text"
899
+ ]
900
+ },
901
+ {
902
+ "id": "nvidia/nemotron-3-super-120b-a12b:free",
903
+ "name": "NVIDIA: Nemotron 3 Super (free)",
904
+ "created": 1773245239,
905
+ "contextLength": 262144,
906
+ "maxOutputTokens": 262144,
907
+ "inputPricePerMillion": 0,
908
+ "outputPricePerMillion": 0,
909
+ "modalities": [
910
+ "text"
911
+ ]
912
+ },
913
+ {
914
+ "id": "nvidia/nemotron-3-super-120b-a12b",
915
+ "name": "NVIDIA: Nemotron 3 Super",
916
+ "created": 1773245239,
917
+ "contextLength": 262144,
918
+ "maxOutputTokens": 0,
919
+ "inputPricePerMillion": 0.09,
920
+ "outputPricePerMillion": 0.44999999999999996,
921
+ "modalities": [
922
+ "text"
923
+ ]
924
+ },
925
+ {
926
+ "id": "bytedance-seed/seed-2.0-lite",
927
+ "name": "ByteDance Seed: Seed-2.0-Lite",
928
+ "created": 1773157231,
929
+ "contextLength": 262144,
930
+ "maxOutputTokens": 131072,
931
+ "inputPricePerMillion": 0.25,
932
+ "outputPricePerMillion": 2,
933
+ "modalities": [
934
+ "text",
935
+ "image",
936
+ "video"
937
+ ]
938
+ },
939
+ {
940
+ "id": "qwen/qwen3.5-9b",
941
+ "name": "Qwen: Qwen3.5-9B",
942
+ "created": 1773152396,
943
+ "contextLength": 262144,
944
+ "maxOutputTokens": 81920,
945
+ "inputPricePerMillion": 0.04,
946
+ "outputPricePerMillion": 0.15,
947
+ "modalities": [
948
+ "text",
949
+ "image",
950
+ "video"
951
+ ]
952
+ },
953
+ {
954
+ "id": "openai/gpt-5.4-pro",
955
+ "name": "OpenAI: GPT-5.4 Pro",
956
+ "created": 1772734366,
957
+ "contextLength": 1050000,
958
+ "maxOutputTokens": 128000,
959
+ "inputPricePerMillion": 30,
960
+ "outputPricePerMillion": 180,
961
+ "modalities": [
962
+ "text",
963
+ "image",
964
+ "file"
965
+ ]
966
+ },
967
+ {
968
+ "id": "openai/gpt-5.4",
969
+ "name": "OpenAI: GPT-5.4",
970
+ "created": 1772734352,
971
+ "contextLength": 1050000,
972
+ "maxOutputTokens": 128000,
973
+ "inputPricePerMillion": 2.5,
974
+ "outputPricePerMillion": 15,
975
+ "modalities": [
976
+ "text",
977
+ "image",
978
+ "file"
979
+ ]
980
+ },
981
+ {
982
+ "id": "inception/mercury-2",
983
+ "name": "Inception: Mercury 2",
984
+ "created": 1772636275,
985
+ "contextLength": 128000,
986
+ "maxOutputTokens": 50000,
987
+ "inputPricePerMillion": 0.25,
988
+ "outputPricePerMillion": 0.75,
989
+ "modalities": [
990
+ "text"
991
+ ]
992
+ },
993
+ {
994
+ "id": "openai/gpt-5.3-chat",
995
+ "name": "OpenAI: GPT-5.3 Chat",
996
+ "created": 1772564061,
997
+ "contextLength": 128000,
998
+ "maxOutputTokens": 16384,
999
+ "inputPricePerMillion": 1.75,
1000
+ "outputPricePerMillion": 14,
1001
+ "modalities": [
1002
+ "text",
1003
+ "image",
1004
+ "file"
1005
+ ]
1006
+ },
1007
+ {
1008
+ "id": "google/gemini-3.1-flash-lite-preview",
1009
+ "name": "Google: Gemini 3.1 Flash Lite Preview",
1010
+ "created": 1772512673,
1011
+ "contextLength": 1048576,
1012
+ "maxOutputTokens": 65536,
1013
+ "inputPricePerMillion": 0.25,
1014
+ "outputPricePerMillion": 1.5,
1015
+ "modalities": [
1016
+ "text",
1017
+ "image",
1018
+ "video",
1019
+ "file",
1020
+ "audio"
1021
+ ]
1022
+ },
1023
+ {
1024
+ "id": "bytedance-seed/seed-2.0-mini",
1025
+ "name": "ByteDance Seed: Seed-2.0-Mini",
1026
+ "created": 1772131107,
1027
+ "contextLength": 262144,
1028
+ "maxOutputTokens": 131072,
1029
+ "inputPricePerMillion": 0.09999999999999999,
1030
+ "outputPricePerMillion": 0.39999999999999997,
1031
+ "modalities": [
1032
+ "text",
1033
+ "image",
1034
+ "video"
1035
+ ]
1036
+ },
1037
+ {
1038
+ "id": "google/gemini-3.1-flash-image-preview",
1039
+ "name": "Google: Nano Banana 2 (Gemini 3.1 Flash Image Preview)",
1040
+ "created": 1772119558,
1041
+ "contextLength": 65536,
1042
+ "maxOutputTokens": 65536,
1043
+ "inputPricePerMillion": 0.5,
1044
+ "outputPricePerMillion": 3,
1045
+ "modalities": [
1046
+ "image",
1047
+ "text"
1048
+ ]
1049
+ },
1050
+ {
1051
+ "id": "qwen/qwen3.5-35b-a3b",
1052
+ "name": "Qwen: Qwen3.5-35B-A3B",
1053
+ "created": 1772053822,
1054
+ "contextLength": 262144,
1055
+ "maxOutputTokens": 0,
1056
+ "inputPricePerMillion": 0.13899999999999998,
1057
+ "outputPricePerMillion": 1,
1058
+ "modalities": [
1059
+ "text",
1060
+ "image",
1061
+ "video"
1062
+ ]
1063
+ },
1064
+ {
1065
+ "id": "qwen/qwen3.5-27b",
1066
+ "name": "Qwen: Qwen3.5-27B",
1067
+ "created": 1772053810,
1068
+ "contextLength": 262144,
1069
+ "maxOutputTokens": 65536,
1070
+ "inputPricePerMillion": 0.195,
1071
+ "outputPricePerMillion": 1.56,
1072
+ "modalities": [
1073
+ "text",
1074
+ "image",
1075
+ "video"
1076
+ ]
1077
+ },
1078
+ {
1079
+ "id": "qwen/qwen3.5-122b-a10b",
1080
+ "name": "Qwen: Qwen3.5-122B-A10B",
1081
+ "created": 1772053789,
1082
+ "contextLength": 262144,
1083
+ "maxOutputTokens": 65536,
1084
+ "inputPricePerMillion": 0.26,
1085
+ "outputPricePerMillion": 2.08,
1086
+ "modalities": [
1087
+ "text",
1088
+ "image",
1089
+ "video"
1090
+ ]
1091
+ },
1092
+ {
1093
+ "id": "qwen/qwen3.5-flash-02-23",
1094
+ "name": "Qwen: Qwen3.5-Flash",
1095
+ "created": 1772053776,
1096
+ "contextLength": 1000000,
1097
+ "maxOutputTokens": 65536,
1098
+ "inputPricePerMillion": 0.065,
1099
+ "outputPricePerMillion": 0.26,
1100
+ "modalities": [
1101
+ "text",
1102
+ "image",
1103
+ "video"
1104
+ ]
1105
+ },
1106
+ {
1107
+ "id": "liquid/lfm-2-24b-a2b",
1108
+ "name": "LiquidAI: LFM2-24B-A2B",
1109
+ "created": 1772048711,
1110
+ "contextLength": 32768,
1111
+ "maxOutputTokens": 0,
1112
+ "inputPricePerMillion": 0.03,
1113
+ "outputPricePerMillion": 0.12,
1114
+ "modalities": [
1115
+ "text"
1116
+ ]
1117
+ },
1118
+ {
1119
+ "id": "google/gemini-3.1-pro-preview-customtools",
1120
+ "name": "Google: Gemini 3.1 Pro Preview Custom Tools",
1121
+ "created": 1772045923,
1122
+ "contextLength": 1048576,
1123
+ "maxOutputTokens": 65536,
1124
+ "inputPricePerMillion": 2,
1125
+ "outputPricePerMillion": 12,
1126
+ "modalities": [
1127
+ "text",
1128
+ "audio",
1129
+ "image",
1130
+ "video",
1131
+ "file"
1132
+ ]
1133
+ },
1134
+ {
1135
+ "id": "openai/gpt-5.3-codex",
1136
+ "name": "OpenAI: GPT-5.3-Codex",
1137
+ "created": 1771959164,
1138
+ "contextLength": 400000,
1139
+ "maxOutputTokens": 128000,
1140
+ "inputPricePerMillion": 1.75,
1141
+ "outputPricePerMillion": 14,
1142
+ "modalities": [
1143
+ "text",
1144
+ "image",
1145
+ "file"
1146
+ ]
1147
+ },
1148
+ {
1149
+ "id": "aion-labs/aion-2.0",
1150
+ "name": "AionLabs: Aion-2.0",
1151
+ "created": 1771881306,
1152
+ "contextLength": 131072,
1153
+ "maxOutputTokens": 32768,
1154
+ "inputPricePerMillion": 0.7999999999999999,
1155
+ "outputPricePerMillion": 1.5999999999999999,
1156
+ "modalities": [
1157
+ "text"
1158
+ ]
1159
+ },
1160
+ {
1161
+ "id": "google/gemini-3.1-pro-preview",
1162
+ "name": "Google: Gemini 3.1 Pro Preview",
1163
+ "created": 1771509627,
1164
+ "contextLength": 1048576,
1165
+ "maxOutputTokens": 65536,
1166
+ "inputPricePerMillion": 2,
1167
+ "outputPricePerMillion": 12,
1168
+ "modalities": [
1169
+ "audio",
1170
+ "file",
1171
+ "image",
1172
+ "text",
1173
+ "video"
1174
+ ]
1175
+ },
1176
+ {
1177
+ "id": "anthropic/claude-sonnet-4.6",
1178
+ "name": "Anthropic: Claude Sonnet 4.6",
1179
+ "created": 1771342990,
1180
+ "contextLength": 1000000,
1181
+ "maxOutputTokens": 128000,
1182
+ "inputPricePerMillion": 3,
1183
+ "outputPricePerMillion": 15,
1184
+ "modalities": [
1185
+ "text",
1186
+ "image",
1187
+ "file"
1188
+ ]
1189
+ },
1190
+ {
1191
+ "id": "qwen/qwen3.5-plus-02-15",
1192
+ "name": "Qwen: Qwen3.5 Plus 2026-02-15",
1193
+ "created": 1771229416,
1194
+ "contextLength": 1000000,
1195
+ "maxOutputTokens": 65536,
1196
+ "inputPricePerMillion": 0.26,
1197
+ "outputPricePerMillion": 1.56,
1198
+ "modalities": [
1199
+ "text",
1200
+ "image",
1201
+ "video"
1202
+ ]
1203
+ },
1204
+ {
1205
+ "id": "qwen/qwen3.5-397b-a17b",
1206
+ "name": "Qwen: Qwen3.5 397B A17B",
1207
+ "created": 1771223018,
1208
+ "contextLength": 262144,
1209
+ "maxOutputTokens": 65536,
1210
+ "inputPricePerMillion": 0.39,
1211
+ "outputPricePerMillion": 2.34,
1212
+ "modalities": [
1213
+ "text",
1214
+ "image",
1215
+ "video"
1216
+ ]
1217
+ },
1218
+ {
1219
+ "id": "minimax/minimax-m2.5:free",
1220
+ "name": "MiniMax: MiniMax M2.5 (free)",
1221
+ "created": 1770908502,
1222
+ "contextLength": 196608,
1223
+ "maxOutputTokens": 8192,
1224
+ "inputPricePerMillion": 0,
1225
+ "outputPricePerMillion": 0,
1226
+ "modalities": [
1227
+ "text"
1228
+ ]
1229
+ },
1230
+ {
1231
+ "id": "minimax/minimax-m2.5",
1232
+ "name": "MiniMax: MiniMax M2.5",
1233
+ "created": 1770908502,
1234
+ "contextLength": 196608,
1235
+ "maxOutputTokens": 196608,
1236
+ "inputPricePerMillion": 0.15,
1237
+ "outputPricePerMillion": 1.15,
1238
+ "modalities": [
1239
+ "text"
1240
+ ]
1241
+ },
1242
+ {
1243
+ "id": "z-ai/glm-5",
1244
+ "name": "Z.ai: GLM 5",
1245
+ "created": 1770829182,
1246
+ "contextLength": 202752,
1247
+ "maxOutputTokens": 0,
1248
+ "inputPricePerMillion": 0.6,
1249
+ "outputPricePerMillion": 1.92,
1250
+ "modalities": [
1251
+ "text"
1252
+ ]
1253
+ },
1254
+ {
1255
+ "id": "qwen/qwen3-max-thinking",
1256
+ "name": "Qwen: Qwen3 Max Thinking",
1257
+ "created": 1770671901,
1258
+ "contextLength": 262144,
1259
+ "maxOutputTokens": 32768,
1260
+ "inputPricePerMillion": 0.78,
1261
+ "outputPricePerMillion": 3.9,
1262
+ "modalities": [
1263
+ "text"
1264
+ ]
1265
+ },
1266
+ {
1267
+ "id": "anthropic/claude-opus-4.6",
1268
+ "name": "Anthropic: Claude Opus 4.6",
1269
+ "created": 1770219050,
1270
+ "contextLength": 1000000,
1271
+ "maxOutputTokens": 128000,
1272
+ "inputPricePerMillion": 5,
1273
+ "outputPricePerMillion": 25,
1274
+ "modalities": [
1275
+ "text",
1276
+ "image",
1277
+ "file"
1278
+ ]
1279
+ },
1280
+ {
1281
+ "id": "qwen/qwen3-coder-next",
1282
+ "name": "Qwen: Qwen3 Coder Next",
1283
+ "created": 1770164101,
1284
+ "contextLength": 262144,
1285
+ "maxOutputTokens": 262144,
1286
+ "inputPricePerMillion": 0.11,
1287
+ "outputPricePerMillion": 0.7999999999999999,
1288
+ "modalities": [
1289
+ "text"
1290
+ ]
1291
+ },
1292
+ {
1293
+ "id": "openrouter/free",
1294
+ "name": "Free Models Router",
1295
+ "created": 1769917427,
1296
+ "contextLength": 200000,
1297
+ "maxOutputTokens": 0,
1298
+ "inputPricePerMillion": 0,
1299
+ "outputPricePerMillion": 0,
1300
+ "modalities": [
1301
+ "text",
1302
+ "image"
1303
+ ]
1304
+ },
1305
+ {
1306
+ "id": "stepfun/step-3.5-flash",
1307
+ "name": "StepFun: Step 3.5 Flash",
1308
+ "created": 1769728337,
1309
+ "contextLength": 262144,
1310
+ "maxOutputTokens": 16384,
1311
+ "inputPricePerMillion": 0.09,
1312
+ "outputPricePerMillion": 0.3,
1313
+ "modalities": [
1314
+ "text"
1315
+ ]
1316
+ },
1317
+ {
1318
+ "id": "moonshotai/kimi-k2.5",
1319
+ "name": "MoonshotAI: Kimi K2.5",
1320
+ "created": 1769487076,
1321
+ "contextLength": 262144,
1322
+ "maxOutputTokens": 262144,
1323
+ "inputPricePerMillion": 0.39999999999999997,
1324
+ "outputPricePerMillion": 1.9,
1325
+ "modalities": [
1326
+ "text",
1327
+ "image"
1328
+ ]
1329
+ },
1330
+ {
1331
+ "id": "upstage/solar-pro-3",
1332
+ "name": "Upstage: Solar Pro 3",
1333
+ "created": 1769481200,
1334
+ "contextLength": 128000,
1335
+ "maxOutputTokens": 0,
1336
+ "inputPricePerMillion": 0.15,
1337
+ "outputPricePerMillion": 0.6,
1338
+ "modalities": [
1339
+ "text"
1340
+ ]
1341
+ },
1342
+ {
1343
+ "id": "minimax/minimax-m2-her",
1344
+ "name": "MiniMax: MiniMax M2-her",
1345
+ "created": 1769177239,
1346
+ "contextLength": 65536,
1347
+ "maxOutputTokens": 2048,
1348
+ "inputPricePerMillion": 0.3,
1349
+ "outputPricePerMillion": 1.2,
1350
+ "modalities": [
1351
+ "text"
1352
+ ]
1353
+ },
1354
+ {
1355
+ "id": "writer/palmyra-x5",
1356
+ "name": "Writer: Palmyra X5",
1357
+ "created": 1769003823,
1358
+ "contextLength": 1040000,
1359
+ "maxOutputTokens": 8192,
1360
+ "inputPricePerMillion": 0.6,
1361
+ "outputPricePerMillion": 6,
1362
+ "modalities": [
1363
+ "text"
1364
+ ]
1365
+ },
1366
+ {
1367
+ "id": "liquid/lfm-2.5-1.2b-thinking:free",
1368
+ "name": "LiquidAI: LFM2.5-1.2B-Thinking (free)",
1369
+ "created": 1768927527,
1370
+ "contextLength": 32768,
1371
+ "maxOutputTokens": 0,
1372
+ "inputPricePerMillion": 0,
1373
+ "outputPricePerMillion": 0,
1374
+ "modalities": [
1375
+ "text"
1376
+ ]
1377
+ },
1378
+ {
1379
+ "id": "liquid/lfm-2.5-1.2b-instruct:free",
1380
+ "name": "LiquidAI: LFM2.5-1.2B-Instruct (free)",
1381
+ "created": 1768927521,
1382
+ "contextLength": 32768,
1383
+ "maxOutputTokens": 0,
1384
+ "inputPricePerMillion": 0,
1385
+ "outputPricePerMillion": 0,
1386
+ "modalities": [
1387
+ "text"
1388
+ ]
1389
+ },
1390
+ {
1391
+ "id": "openai/gpt-audio",
1392
+ "name": "OpenAI: GPT Audio",
1393
+ "created": 1768862569,
1394
+ "contextLength": 128000,
1395
+ "maxOutputTokens": 16384,
1396
+ "inputPricePerMillion": 2.5,
1397
+ "outputPricePerMillion": 10,
1398
+ "modalities": [
1399
+ "text",
1400
+ "audio"
1401
+ ]
1402
+ },
1403
+ {
1404
+ "id": "openai/gpt-audio-mini",
1405
+ "name": "OpenAI: GPT Audio Mini",
1406
+ "created": 1768859419,
1407
+ "contextLength": 128000,
1408
+ "maxOutputTokens": 16384,
1409
+ "inputPricePerMillion": 0.6,
1410
+ "outputPricePerMillion": 2.4,
1411
+ "modalities": [
1412
+ "text",
1413
+ "audio"
1414
+ ]
1415
+ },
1416
+ {
1417
+ "id": "z-ai/glm-4.7-flash",
1418
+ "name": "Z.ai: GLM 4.7 Flash",
1419
+ "created": 1768833913,
1420
+ "contextLength": 202752,
1421
+ "maxOutputTokens": 16384,
1422
+ "inputPricePerMillion": 0.06,
1423
+ "outputPricePerMillion": 0.39999999999999997,
1424
+ "modalities": [
1425
+ "text"
1426
+ ]
1427
+ },
1428
+ {
1429
+ "id": "openai/gpt-5.2-codex",
1430
+ "name": "OpenAI: GPT-5.2-Codex",
1431
+ "created": 1768409315,
1432
+ "contextLength": 400000,
1433
+ "maxOutputTokens": 128000,
1434
+ "inputPricePerMillion": 1.75,
1435
+ "outputPricePerMillion": 14,
1436
+ "modalities": [
1437
+ "text",
1438
+ "image"
1439
+ ]
1440
+ },
1441
+ {
1442
+ "id": "bytedance-seed/seed-1.6-flash",
1443
+ "name": "ByteDance Seed: Seed 1.6 Flash",
1444
+ "created": 1766505011,
1445
+ "contextLength": 262144,
1446
+ "maxOutputTokens": 32768,
1447
+ "inputPricePerMillion": 0.075,
1448
+ "outputPricePerMillion": 0.3,
1449
+ "modalities": [
1450
+ "image",
1451
+ "text",
1452
+ "video"
1453
+ ]
1454
+ },
1455
+ {
1456
+ "id": "bytedance-seed/seed-1.6",
1457
+ "name": "ByteDance Seed: Seed 1.6",
1458
+ "created": 1766504997,
1459
+ "contextLength": 262144,
1460
+ "maxOutputTokens": 32768,
1461
+ "inputPricePerMillion": 0.25,
1462
+ "outputPricePerMillion": 2,
1463
+ "modalities": [
1464
+ "image",
1465
+ "text",
1466
+ "video"
1467
+ ]
1468
+ },
1469
+ {
1470
+ "id": "minimax/minimax-m2.1",
1471
+ "name": "MiniMax: MiniMax M2.1",
1472
+ "created": 1766454997,
1473
+ "contextLength": 196608,
1474
+ "maxOutputTokens": 196608,
1475
+ "inputPricePerMillion": 0.29,
1476
+ "outputPricePerMillion": 0.95,
1477
+ "modalities": [
1478
+ "text"
1479
+ ]
1480
+ },
1481
+ {
1482
+ "id": "z-ai/glm-4.7",
1483
+ "name": "Z.ai: GLM 4.7",
1484
+ "created": 1766378014,
1485
+ "contextLength": 202752,
1486
+ "maxOutputTokens": 131072,
1487
+ "inputPricePerMillion": 0.39999999999999997,
1488
+ "outputPricePerMillion": 1.75,
1489
+ "modalities": [
1490
+ "text"
1491
+ ]
1492
+ },
1493
+ {
1494
+ "id": "google/gemini-3-flash-preview",
1495
+ "name": "Google: Gemini 3 Flash Preview",
1496
+ "created": 1765987078,
1497
+ "contextLength": 1048576,
1498
+ "maxOutputTokens": 65536,
1499
+ "inputPricePerMillion": 0.5,
1500
+ "outputPricePerMillion": 3,
1501
+ "modalities": [
1502
+ "text",
1503
+ "image",
1504
+ "file",
1505
+ "audio",
1506
+ "video"
1507
+ ]
1508
+ },
1509
+ {
1510
+ "id": "xiaomi/mimo-v2-flash",
1511
+ "name": "Xiaomi: MiMo-V2-Flash",
1512
+ "created": 1765731308,
1513
+ "contextLength": 262144,
1514
+ "maxOutputTokens": 65536,
1515
+ "inputPricePerMillion": 0.09999999999999999,
1516
+ "outputPricePerMillion": 0.3,
1517
+ "modalities": [
1518
+ "text"
1519
+ ]
1520
+ },
1521
+ {
1522
+ "id": "nvidia/nemotron-3-nano-30b-a3b:free",
1523
+ "name": "NVIDIA: Nemotron 3 Nano 30B A3B (free)",
1524
+ "created": 1765731275,
1525
+ "contextLength": 256000,
1526
+ "maxOutputTokens": 0,
1527
+ "inputPricePerMillion": 0,
1528
+ "outputPricePerMillion": 0,
1529
+ "modalities": [
1530
+ "text"
1531
+ ]
1532
+ },
1533
+ {
1534
+ "id": "nvidia/nemotron-3-nano-30b-a3b",
1535
+ "name": "NVIDIA: Nemotron 3 Nano 30B A3B",
1536
+ "created": 1765731275,
1537
+ "contextLength": 262144,
1538
+ "maxOutputTokens": 228000,
1539
+ "inputPricePerMillion": 0.049999999999999996,
1540
+ "outputPricePerMillion": 0.19999999999999998,
1541
+ "modalities": [
1542
+ "text"
1543
+ ]
1544
+ },
1545
+ {
1546
+ "id": "openai/gpt-5.2-chat",
1547
+ "name": "OpenAI: GPT-5.2 Chat",
1548
+ "created": 1765389783,
1549
+ "contextLength": 128000,
1550
+ "maxOutputTokens": 32000,
1551
+ "inputPricePerMillion": 1.75,
1552
+ "outputPricePerMillion": 14,
1553
+ "modalities": [
1554
+ "file",
1555
+ "image",
1556
+ "text"
1557
+ ]
1558
+ },
1559
+ {
1560
+ "id": "openai/gpt-5.2-pro",
1561
+ "name": "OpenAI: GPT-5.2 Pro",
1562
+ "created": 1765389780,
1563
+ "contextLength": 400000,
1564
+ "maxOutputTokens": 128000,
1565
+ "inputPricePerMillion": 21,
1566
+ "outputPricePerMillion": 168,
1567
+ "modalities": [
1568
+ "image",
1569
+ "text",
1570
+ "file"
1571
+ ]
1572
+ },
1573
+ {
1574
+ "id": "openai/gpt-5.2",
1575
+ "name": "OpenAI: GPT-5.2",
1576
+ "created": 1765389775,
1577
+ "contextLength": 400000,
1578
+ "maxOutputTokens": 128000,
1579
+ "inputPricePerMillion": 1.75,
1580
+ "outputPricePerMillion": 14,
1581
+ "modalities": [
1582
+ "file",
1583
+ "image",
1584
+ "text"
1585
+ ]
1586
+ },
1587
+ {
1588
+ "id": "mistralai/devstral-2512",
1589
+ "name": "Mistral: Devstral 2 2512",
1590
+ "created": 1765285419,
1591
+ "contextLength": 262144,
1592
+ "maxOutputTokens": 0,
1593
+ "inputPricePerMillion": 0.39999999999999997,
1594
+ "outputPricePerMillion": 2,
1595
+ "modalities": [
1596
+ "text",
1597
+ "file"
1598
+ ]
1599
+ },
1600
+ {
1601
+ "id": "relace/relace-search",
1602
+ "name": "Relace: Relace Search",
1603
+ "created": 1765213560,
1604
+ "contextLength": 256000,
1605
+ "maxOutputTokens": 128000,
1606
+ "inputPricePerMillion": 1,
1607
+ "outputPricePerMillion": 3,
1608
+ "modalities": [
1609
+ "text"
1610
+ ]
1611
+ },
1612
+ {
1613
+ "id": "z-ai/glm-4.6v",
1614
+ "name": "Z.ai: GLM 4.6V",
1615
+ "created": 1765207462,
1616
+ "contextLength": 131072,
1617
+ "maxOutputTokens": 24000,
1618
+ "inputPricePerMillion": 0.3,
1619
+ "outputPricePerMillion": 0.8999999999999999,
1620
+ "modalities": [
1621
+ "image",
1622
+ "text",
1623
+ "video"
1624
+ ]
1625
+ },
1626
+ {
1627
+ "id": "nex-agi/deepseek-v3.1-nex-n1",
1628
+ "name": "Nex AGI: DeepSeek V3.1 Nex N1",
1629
+ "created": 1765204393,
1630
+ "contextLength": 131072,
1631
+ "maxOutputTokens": 163840,
1632
+ "inputPricePerMillion": 0.135,
1633
+ "outputPricePerMillion": 0.5,
1634
+ "modalities": [
1635
+ "text"
1636
+ ]
1637
+ },
1638
+ {
1639
+ "id": "essentialai/rnj-1-instruct",
1640
+ "name": "EssentialAI: Rnj 1 Instruct",
1641
+ "created": 1765094847,
1642
+ "contextLength": 32768,
1643
+ "maxOutputTokens": 0,
1644
+ "inputPricePerMillion": 0.15,
1645
+ "outputPricePerMillion": 0.15,
1646
+ "modalities": [
1647
+ "text"
1648
+ ]
1649
+ },
1650
+ {
1651
+ "id": "openrouter/bodybuilder",
1652
+ "name": "Body Builder (beta)",
1653
+ "created": 1764903653,
1654
+ "contextLength": 128000,
1655
+ "maxOutputTokens": 0,
1656
+ "inputPricePerMillion": -1000000,
1657
+ "outputPricePerMillion": -1000000,
1658
+ "modalities": [
1659
+ "text"
1660
+ ]
1661
+ },
1662
+ {
1663
+ "id": "openai/gpt-5.1-codex-max",
1664
+ "name": "OpenAI: GPT-5.1-Codex-Max",
1665
+ "created": 1764878934,
1666
+ "contextLength": 400000,
1667
+ "maxOutputTokens": 128000,
1668
+ "inputPricePerMillion": 1.25,
1669
+ "outputPricePerMillion": 10,
1670
+ "modalities": [
1671
+ "text",
1672
+ "image"
1673
+ ]
1674
+ },
1675
+ {
1676
+ "id": "amazon/nova-2-lite-v1",
1677
+ "name": "Amazon: Nova 2 Lite",
1678
+ "created": 1764696672,
1679
+ "contextLength": 1000000,
1680
+ "maxOutputTokens": 65535,
1681
+ "inputPricePerMillion": 0.3,
1682
+ "outputPricePerMillion": 2.5,
1683
+ "modalities": [
1684
+ "text",
1685
+ "image",
1686
+ "video",
1687
+ "file"
1688
+ ]
1689
+ },
1690
+ {
1691
+ "id": "mistralai/ministral-14b-2512",
1692
+ "name": "Mistral: Ministral 3 14B 2512",
1693
+ "created": 1764681735,
1694
+ "contextLength": 262144,
1695
+ "maxOutputTokens": 0,
1696
+ "inputPricePerMillion": 0.19999999999999998,
1697
+ "outputPricePerMillion": 0.19999999999999998,
1698
+ "modalities": [
1699
+ "text",
1700
+ "image"
1701
+ ]
1702
+ },
1703
+ {
1704
+ "id": "mistralai/ministral-8b-2512",
1705
+ "name": "Mistral: Ministral 3 8B 2512",
1706
+ "created": 1764681654,
1707
+ "contextLength": 262144,
1708
+ "maxOutputTokens": 0,
1709
+ "inputPricePerMillion": 0.15,
1710
+ "outputPricePerMillion": 0.15,
1711
+ "modalities": [
1712
+ "text",
1713
+ "image"
1714
+ ]
1715
+ },
1716
+ {
1717
+ "id": "mistralai/ministral-3b-2512",
1718
+ "name": "Mistral: Ministral 3 3B 2512",
1719
+ "created": 1764681560,
1720
+ "contextLength": 131072,
1721
+ "maxOutputTokens": 0,
1722
+ "inputPricePerMillion": 0.09999999999999999,
1723
+ "outputPricePerMillion": 0.09999999999999999,
1724
+ "modalities": [
1725
+ "text",
1726
+ "image"
1727
+ ]
1728
+ },
1729
+ {
1730
+ "id": "mistralai/mistral-large-2512",
1731
+ "name": "Mistral: Mistral Large 3 2512",
1732
+ "created": 1764624472,
1733
+ "contextLength": 262144,
1734
+ "maxOutputTokens": 0,
1735
+ "inputPricePerMillion": 0.5,
1736
+ "outputPricePerMillion": 1.5,
1737
+ "modalities": [
1738
+ "text",
1739
+ "image",
1740
+ "file"
1741
+ ]
1742
+ },
1743
+ {
1744
+ "id": "arcee-ai/trinity-mini",
1745
+ "name": "Arcee AI: Trinity Mini",
1746
+ "created": 1764601720,
1747
+ "contextLength": 131072,
1748
+ "maxOutputTokens": 131072,
1749
+ "inputPricePerMillion": 0.045,
1750
+ "outputPricePerMillion": 0.15,
1751
+ "modalities": [
1752
+ "text"
1753
+ ]
1754
+ },
1755
+ {
1756
+ "id": "deepseek/deepseek-v3.2-speciale",
1757
+ "name": "DeepSeek: DeepSeek V3.2 Speciale",
1758
+ "created": 1764594837,
1759
+ "contextLength": 163840,
1760
+ "maxOutputTokens": 163840,
1761
+ "inputPricePerMillion": 0.28700000000000003,
1762
+ "outputPricePerMillion": 0.431,
1763
+ "modalities": [
1764
+ "text"
1765
+ ]
1766
+ },
1767
+ {
1768
+ "id": "deepseek/deepseek-v3.2",
1769
+ "name": "DeepSeek: DeepSeek V3.2",
1770
+ "created": 1764594642,
1771
+ "contextLength": 131072,
1772
+ "maxOutputTokens": 65536,
1773
+ "inputPricePerMillion": 0.252,
1774
+ "outputPricePerMillion": 0.378,
1775
+ "modalities": [
1776
+ "text"
1777
+ ]
1778
+ },
1779
+ {
1780
+ "id": "prime-intellect/intellect-3",
1781
+ "name": "Prime Intellect: INTELLECT-3",
1782
+ "created": 1764212534,
1783
+ "contextLength": 131072,
1784
+ "maxOutputTokens": 131072,
1785
+ "inputPricePerMillion": 0.19999999999999998,
1786
+ "outputPricePerMillion": 1.1,
1787
+ "modalities": [
1788
+ "text"
1789
+ ]
1790
+ },
1791
+ {
1792
+ "id": "anthropic/claude-opus-4.5",
1793
+ "name": "Anthropic: Claude Opus 4.5",
1794
+ "created": 1764010580,
1795
+ "contextLength": 200000,
1796
+ "maxOutputTokens": 64000,
1797
+ "inputPricePerMillion": 5,
1798
+ "outputPricePerMillion": 25,
1799
+ "modalities": [
1800
+ "file",
1801
+ "image",
1802
+ "text"
1803
+ ]
1804
+ },
1805
+ {
1806
+ "id": "allenai/olmo-3-32b-think",
1807
+ "name": "AllenAI: Olmo 3 32B Think",
1808
+ "created": 1763758276,
1809
+ "contextLength": 65536,
1810
+ "maxOutputTokens": 65536,
1811
+ "inputPricePerMillion": 0.15,
1812
+ "outputPricePerMillion": 0.5,
1813
+ "modalities": [
1814
+ "text"
1815
+ ]
1816
+ },
1817
+ {
1818
+ "id": "google/gemini-3-pro-image-preview",
1819
+ "name": "Google: Nano Banana Pro (Gemini 3 Pro Image Preview)",
1820
+ "created": 1763653797,
1821
+ "contextLength": 65536,
1822
+ "maxOutputTokens": 32768,
1823
+ "inputPricePerMillion": 2,
1824
+ "outputPricePerMillion": 12,
1825
+ "modalities": [
1826
+ "image",
1827
+ "text"
1828
+ ]
1829
+ },
1830
+ {
1831
+ "id": "deepcogito/cogito-v2.1-671b",
1832
+ "name": "Deep Cogito: Cogito v2.1 671B",
1833
+ "created": 1763071233,
1834
+ "contextLength": 128000,
1835
+ "maxOutputTokens": 0,
1836
+ "inputPricePerMillion": 1.25,
1837
+ "outputPricePerMillion": 1.25,
1838
+ "modalities": [
1839
+ "text"
1840
+ ]
1841
+ },
1842
+ {
1843
+ "id": "openai/gpt-5.1",
1844
+ "name": "OpenAI: GPT-5.1",
1845
+ "created": 1763060305,
1846
+ "contextLength": 400000,
1847
+ "maxOutputTokens": 128000,
1848
+ "inputPricePerMillion": 1.25,
1849
+ "outputPricePerMillion": 10,
1850
+ "modalities": [
1851
+ "image",
1852
+ "text",
1853
+ "file"
1854
+ ]
1855
+ },
1856
+ {
1857
+ "id": "openai/gpt-5.1-chat",
1858
+ "name": "OpenAI: GPT-5.1 Chat",
1859
+ "created": 1763060302,
1860
+ "contextLength": 128000,
1861
+ "maxOutputTokens": 16384,
1862
+ "inputPricePerMillion": 1.25,
1863
+ "outputPricePerMillion": 10,
1864
+ "modalities": [
1865
+ "file",
1866
+ "image",
1867
+ "text"
1868
+ ]
1869
+ },
1870
+ {
1871
+ "id": "openai/gpt-5.1-codex",
1872
+ "name": "OpenAI: GPT-5.1-Codex",
1873
+ "created": 1763060298,
1874
+ "contextLength": 400000,
1875
+ "maxOutputTokens": 128000,
1876
+ "inputPricePerMillion": 1.25,
1877
+ "outputPricePerMillion": 10,
1878
+ "modalities": [
1879
+ "text",
1880
+ "image"
1881
+ ]
1882
+ },
1883
+ {
1884
+ "id": "openai/gpt-5.1-codex-mini",
1885
+ "name": "OpenAI: GPT-5.1-Codex-Mini",
1886
+ "created": 1763057820,
1887
+ "contextLength": 400000,
1888
+ "maxOutputTokens": 128000,
1889
+ "inputPricePerMillion": 0.25,
1890
+ "outputPricePerMillion": 2,
1891
+ "modalities": [
1892
+ "image",
1893
+ "text"
1894
+ ]
1895
+ },
1896
+ {
1897
+ "id": "moonshotai/kimi-k2-thinking",
1898
+ "name": "MoonshotAI: Kimi K2 Thinking",
1899
+ "created": 1762440622,
1900
+ "contextLength": 262144,
1901
+ "maxOutputTokens": 262144,
1902
+ "inputPricePerMillion": 0.6,
1903
+ "outputPricePerMillion": 2.5,
1904
+ "modalities": [
1905
+ "text"
1906
+ ]
1907
+ },
1908
+ {
1909
+ "id": "amazon/nova-premier-v1",
1910
+ "name": "Amazon: Nova Premier 1.0",
1911
+ "created": 1761950332,
1912
+ "contextLength": 1000000,
1913
+ "maxOutputTokens": 32000,
1914
+ "inputPricePerMillion": 2.5,
1915
+ "outputPricePerMillion": 12.5,
1916
+ "modalities": [
1917
+ "text",
1918
+ "image"
1919
+ ]
1920
+ },
1921
+ {
1922
+ "id": "perplexity/sonar-pro-search",
1923
+ "name": "Perplexity: Sonar Pro Search",
1924
+ "created": 1761854366,
1925
+ "contextLength": 200000,
1926
+ "maxOutputTokens": 8000,
1927
+ "inputPricePerMillion": 3,
1928
+ "outputPricePerMillion": 15,
1929
+ "modalities": [
1930
+ "text",
1931
+ "image"
1932
+ ]
1933
+ },
1934
+ {
1935
+ "id": "mistralai/voxtral-small-24b-2507",
1936
+ "name": "Mistral: Voxtral Small 24B 2507",
1937
+ "created": 1761835144,
1938
+ "contextLength": 32000,
1939
+ "maxOutputTokens": 0,
1940
+ "inputPricePerMillion": 0.09999999999999999,
1941
+ "outputPricePerMillion": 0.3,
1942
+ "modalities": [
1943
+ "text",
1944
+ "audio",
1945
+ "file"
1946
+ ]
1947
+ },
1948
+ {
1949
+ "id": "openai/gpt-oss-safeguard-20b",
1950
+ "name": "OpenAI: gpt-oss-safeguard-20b",
1951
+ "created": 1761752836,
1952
+ "contextLength": 131072,
1953
+ "maxOutputTokens": 65536,
1954
+ "inputPricePerMillion": 0.075,
1955
+ "outputPricePerMillion": 0.3,
1956
+ "modalities": [
1957
+ "text"
1958
+ ]
1959
+ },
1960
+ {
1961
+ "id": "nvidia/nemotron-nano-12b-v2-vl:free",
1962
+ "name": "NVIDIA: Nemotron Nano 12B 2 VL (free)",
1963
+ "created": 1761675565,
1964
+ "contextLength": 128000,
1965
+ "maxOutputTokens": 128000,
1966
+ "inputPricePerMillion": 0,
1967
+ "outputPricePerMillion": 0,
1968
+ "modalities": [
1969
+ "image",
1970
+ "text",
1971
+ "video"
1972
+ ]
1973
+ },
1974
+ {
1975
+ "id": "minimax/minimax-m2",
1976
+ "name": "MiniMax: MiniMax M2",
1977
+ "created": 1761252093,
1978
+ "contextLength": 196608,
1979
+ "maxOutputTokens": 196608,
1980
+ "inputPricePerMillion": 0.255,
1981
+ "outputPricePerMillion": 1,
1982
+ "modalities": [
1983
+ "text"
1984
+ ]
1985
+ },
1986
+ {
1987
+ "id": "qwen/qwen3-vl-32b-instruct",
1988
+ "name": "Qwen: Qwen3 VL 32B Instruct",
1989
+ "created": 1761231332,
1990
+ "contextLength": 131072,
1991
+ "maxOutputTokens": 32768,
1992
+ "inputPricePerMillion": 0.10400000000000001,
1993
+ "outputPricePerMillion": 0.41600000000000004,
1994
+ "modalities": [
1995
+ "text",
1996
+ "image"
1997
+ ]
1998
+ },
1999
+ {
2000
+ "id": "ibm-granite/granite-4.0-h-micro",
2001
+ "name": "IBM: Granite 4.0 Micro",
2002
+ "created": 1760927695,
2003
+ "contextLength": 131000,
2004
+ "maxOutputTokens": 131000,
2005
+ "inputPricePerMillion": 0.017,
2006
+ "outputPricePerMillion": 0.112,
2007
+ "modalities": [
2008
+ "text"
2009
+ ]
2010
+ },
2011
+ {
2012
+ "id": "microsoft/phi-4-mini-instruct",
2013
+ "name": "Microsoft: Phi 4 Mini Instruct",
2014
+ "created": 1760726049,
2015
+ "contextLength": 128000,
2016
+ "maxOutputTokens": 128000,
2017
+ "inputPricePerMillion": 0.08,
2018
+ "outputPricePerMillion": 0.35,
2019
+ "modalities": [
2020
+ "text"
2021
+ ]
2022
+ },
2023
+ {
2024
+ "id": "openai/gpt-5-image-mini",
2025
+ "name": "OpenAI: GPT-5 Image Mini",
2026
+ "created": 1760624583,
2027
+ "contextLength": 400000,
2028
+ "maxOutputTokens": 128000,
2029
+ "inputPricePerMillion": 2.5,
2030
+ "outputPricePerMillion": 2,
2031
+ "modalities": [
2032
+ "file",
2033
+ "image",
2034
+ "text"
2035
+ ]
2036
+ },
2037
+ {
2038
+ "id": "anthropic/claude-haiku-4.5",
2039
+ "name": "Anthropic: Claude Haiku 4.5",
2040
+ "created": 1760547638,
2041
+ "contextLength": 200000,
2042
+ "maxOutputTokens": 64000,
2043
+ "inputPricePerMillion": 1,
2044
+ "outputPricePerMillion": 5,
2045
+ "modalities": [
2046
+ "text",
2047
+ "image",
2048
+ "file"
2049
+ ]
2050
+ },
2051
+ {
2052
+ "id": "qwen/qwen3-vl-8b-thinking",
2053
+ "name": "Qwen: Qwen3 VL 8B Thinking",
2054
+ "created": 1760463746,
2055
+ "contextLength": 131072,
2056
+ "maxOutputTokens": 32768,
2057
+ "inputPricePerMillion": 0.117,
2058
+ "outputPricePerMillion": 1.365,
2059
+ "modalities": [
2060
+ "image",
2061
+ "text"
2062
+ ]
2063
+ },
2064
+ {
2065
+ "id": "qwen/qwen3-vl-8b-instruct",
2066
+ "name": "Qwen: Qwen3 VL 8B Instruct",
2067
+ "created": 1760463308,
2068
+ "contextLength": 131072,
2069
+ "maxOutputTokens": 32768,
2070
+ "inputPricePerMillion": 0.08,
2071
+ "outputPricePerMillion": 0.5,
2072
+ "modalities": [
2073
+ "image",
2074
+ "text"
2075
+ ]
2076
+ },
2077
+ {
2078
+ "id": "openai/gpt-5-image",
2079
+ "name": "OpenAI: GPT-5 Image",
2080
+ "created": 1760447986,
2081
+ "contextLength": 400000,
2082
+ "maxOutputTokens": 128000,
2083
+ "inputPricePerMillion": 10,
2084
+ "outputPricePerMillion": 10,
2085
+ "modalities": [
2086
+ "image",
2087
+ "text",
2088
+ "file"
2089
+ ]
2090
+ },
2091
+ {
2092
+ "id": "openai/o3-deep-research",
2093
+ "name": "OpenAI: o3 Deep Research",
2094
+ "created": 1760129661,
2095
+ "contextLength": 200000,
2096
+ "maxOutputTokens": 100000,
2097
+ "inputPricePerMillion": 10,
2098
+ "outputPricePerMillion": 40,
2099
+ "modalities": [
2100
+ "image",
2101
+ "text",
2102
+ "file"
2103
+ ]
2104
+ },
2105
+ {
2106
+ "id": "openai/o4-mini-deep-research",
2107
+ "name": "OpenAI: o4 Mini Deep Research",
2108
+ "created": 1760129642,
2109
+ "contextLength": 200000,
2110
+ "maxOutputTokens": 100000,
2111
+ "inputPricePerMillion": 2,
2112
+ "outputPricePerMillion": 8,
2113
+ "modalities": [
2114
+ "file",
2115
+ "image",
2116
+ "text"
2117
+ ]
2118
+ },
2119
+ {
2120
+ "id": "nvidia/llama-3.3-nemotron-super-49b-v1.5",
2121
+ "name": "NVIDIA: Llama 3.3 Nemotron Super 49B V1.5",
2122
+ "created": 1760101395,
2123
+ "contextLength": 131072,
2124
+ "maxOutputTokens": 16384,
2125
+ "inputPricePerMillion": 0.09999999999999999,
2126
+ "outputPricePerMillion": 0.39999999999999997,
2127
+ "modalities": [
2128
+ "text"
2129
+ ]
2130
+ },
2131
+ {
2132
+ "id": "baidu/ernie-4.5-21b-a3b-thinking",
2133
+ "name": "Baidu: ERNIE 4.5 21B A3B Thinking",
2134
+ "created": 1760048887,
2135
+ "contextLength": 131072,
2136
+ "maxOutputTokens": 65536,
2137
+ "inputPricePerMillion": 0.07,
2138
+ "outputPricePerMillion": 0.28,
2139
+ "modalities": [
2140
+ "text"
2141
+ ]
2142
+ },
2143
+ {
2144
+ "id": "google/gemini-2.5-flash-image",
2145
+ "name": "Google: Nano Banana (Gemini 2.5 Flash Image)",
2146
+ "created": 1759870431,
2147
+ "contextLength": 32768,
2148
+ "maxOutputTokens": 32768,
2149
+ "inputPricePerMillion": 0.3,
2150
+ "outputPricePerMillion": 2.5,
2151
+ "modalities": [
2152
+ "image",
2153
+ "text"
2154
+ ]
2155
+ },
2156
+ {
2157
+ "id": "qwen/qwen3-vl-30b-a3b-thinking",
2158
+ "name": "Qwen: Qwen3 VL 30B A3B Thinking",
2159
+ "created": 1759794479,
2160
+ "contextLength": 131072,
2161
+ "maxOutputTokens": 32768,
2162
+ "inputPricePerMillion": 0.13,
2163
+ "outputPricePerMillion": 1.56,
2164
+ "modalities": [
2165
+ "text",
2166
+ "image"
2167
+ ]
2168
+ },
2169
+ {
2170
+ "id": "qwen/qwen3-vl-30b-a3b-instruct",
2171
+ "name": "Qwen: Qwen3 VL 30B A3B Instruct",
2172
+ "created": 1759794476,
2173
+ "contextLength": 131072,
2174
+ "maxOutputTokens": 32768,
2175
+ "inputPricePerMillion": 0.13,
2176
+ "outputPricePerMillion": 0.52,
2177
+ "modalities": [
2178
+ "text",
2179
+ "image"
2180
+ ]
2181
+ },
2182
+ {
2183
+ "id": "openai/gpt-5-pro",
2184
+ "name": "OpenAI: GPT-5 Pro",
2185
+ "created": 1759776663,
2186
+ "contextLength": 400000,
2187
+ "maxOutputTokens": 128000,
2188
+ "inputPricePerMillion": 15,
2189
+ "outputPricePerMillion": 120,
2190
+ "modalities": [
2191
+ "image",
2192
+ "text",
2193
+ "file"
2194
+ ]
2195
+ },
2196
+ {
2197
+ "id": "z-ai/glm-4.6",
2198
+ "name": "Z.ai: GLM 4.6",
2199
+ "created": 1759235576,
2200
+ "contextLength": 202752,
2201
+ "maxOutputTokens": 131072,
2202
+ "inputPricePerMillion": 0.43,
2203
+ "outputPricePerMillion": 1.74,
2204
+ "modalities": [
2205
+ "text"
2206
+ ]
2207
+ },
2208
+ {
2209
+ "id": "anthropic/claude-sonnet-4.5",
2210
+ "name": "Anthropic: Claude Sonnet 4.5",
2211
+ "created": 1759161676,
2212
+ "contextLength": 1000000,
2213
+ "maxOutputTokens": 64000,
2214
+ "inputPricePerMillion": 3,
2215
+ "outputPricePerMillion": 15,
2216
+ "modalities": [
2217
+ "text",
2218
+ "image",
2219
+ "file"
2220
+ ]
2221
+ },
2222
+ {
2223
+ "id": "deepseek/deepseek-v3.2-exp",
2224
+ "name": "DeepSeek: DeepSeek V3.2 Exp",
2225
+ "created": 1759150481,
2226
+ "contextLength": 163840,
2227
+ "maxOutputTokens": 65536,
2228
+ "inputPricePerMillion": 0.27,
2229
+ "outputPricePerMillion": 0.41,
2230
+ "modalities": [
2231
+ "text"
2232
+ ]
2233
+ },
2234
+ {
2235
+ "id": "thedrummer/cydonia-24b-v4.1",
2236
+ "name": "TheDrummer: Cydonia 24B V4.1",
2237
+ "created": 1758931878,
2238
+ "contextLength": 131072,
2239
+ "maxOutputTokens": 131072,
2240
+ "inputPricePerMillion": 0.3,
2241
+ "outputPricePerMillion": 0.5,
2242
+ "modalities": [
2243
+ "text"
2244
+ ]
2245
+ },
2246
+ {
2247
+ "id": "relace/relace-apply-3",
2248
+ "name": "Relace: Relace Apply 3",
2249
+ "created": 1758891572,
2250
+ "contextLength": 256000,
2251
+ "maxOutputTokens": 128000,
2252
+ "inputPricePerMillion": 0.85,
2253
+ "outputPricePerMillion": 1.25,
2254
+ "modalities": [
2255
+ "text"
2256
+ ]
2257
+ },
2258
+ {
2259
+ "id": "google/gemini-2.5-flash-lite-preview-09-2025",
2260
+ "name": "Google: Gemini 2.5 Flash Lite Preview 09-2025",
2261
+ "created": 1758819686,
2262
+ "contextLength": 1048576,
2263
+ "maxOutputTokens": 65535,
2264
+ "inputPricePerMillion": 0.09999999999999999,
2265
+ "outputPricePerMillion": 0.39999999999999997,
2266
+ "modalities": [
2267
+ "text",
2268
+ "image",
2269
+ "file",
2270
+ "audio",
2271
+ "video"
2272
+ ]
2273
+ },
2274
+ {
2275
+ "id": "qwen/qwen3-vl-235b-a22b-thinking",
2276
+ "name": "Qwen: Qwen3 VL 235B A22B Thinking",
2277
+ "created": 1758668690,
2278
+ "contextLength": 131072,
2279
+ "maxOutputTokens": 32768,
2280
+ "inputPricePerMillion": 0.26,
2281
+ "outputPricePerMillion": 2.6,
2282
+ "modalities": [
2283
+ "text",
2284
+ "image"
2285
+ ]
2286
+ },
2287
+ {
2288
+ "id": "qwen/qwen3-vl-235b-a22b-instruct",
2289
+ "name": "Qwen: Qwen3 VL 235B A22B Instruct",
2290
+ "created": 1758668687,
2291
+ "contextLength": 262144,
2292
+ "maxOutputTokens": 16384,
2293
+ "inputPricePerMillion": 0.19999999999999998,
2294
+ "outputPricePerMillion": 0.88,
2295
+ "modalities": [
2296
+ "text",
2297
+ "image"
2298
+ ]
2299
+ },
2300
+ {
2301
+ "id": "qwen/qwen3-max",
2302
+ "name": "Qwen: Qwen3 Max",
2303
+ "created": 1758662808,
2304
+ "contextLength": 262144,
2305
+ "maxOutputTokens": 32768,
2306
+ "inputPricePerMillion": 0.78,
2307
+ "outputPricePerMillion": 3.9,
2308
+ "modalities": [
2309
+ "text"
2310
+ ]
2311
+ },
2312
+ {
2313
+ "id": "qwen/qwen3-coder-plus",
2314
+ "name": "Qwen: Qwen3 Coder Plus",
2315
+ "created": 1758662707,
2316
+ "contextLength": 1000000,
2317
+ "maxOutputTokens": 65536,
2318
+ "inputPricePerMillion": 0.65,
2319
+ "outputPricePerMillion": 3.25,
2320
+ "modalities": [
2321
+ "text"
2322
+ ]
2323
+ },
2324
+ {
2325
+ "id": "openai/gpt-5-codex",
2326
+ "name": "OpenAI: GPT-5 Codex",
2327
+ "created": 1758643403,
2328
+ "contextLength": 400000,
2329
+ "maxOutputTokens": 128000,
2330
+ "inputPricePerMillion": 1.25,
2331
+ "outputPricePerMillion": 10,
2332
+ "modalities": [
2333
+ "text",
2334
+ "image"
2335
+ ]
2336
+ },
2337
+ {
2338
+ "id": "deepseek/deepseek-v3.1-terminus",
2339
+ "name": "DeepSeek: DeepSeek V3.1 Terminus",
2340
+ "created": 1758548275,
2341
+ "contextLength": 163840,
2342
+ "maxOutputTokens": 32768,
2343
+ "inputPricePerMillion": 0.27,
2344
+ "outputPricePerMillion": 0.95,
2345
+ "modalities": [
2346
+ "text"
2347
+ ]
2348
+ },
2349
+ {
2350
+ "id": "alibaba/tongyi-deepresearch-30b-a3b",
2351
+ "name": "Tongyi DeepResearch 30B A3B",
2352
+ "created": 1758210804,
2353
+ "contextLength": 131072,
2354
+ "maxOutputTokens": 131072,
2355
+ "inputPricePerMillion": 0.09,
2356
+ "outputPricePerMillion": 0.44999999999999996,
2357
+ "modalities": [
2358
+ "text"
2359
+ ]
2360
+ },
2361
+ {
2362
+ "id": "qwen/qwen3-coder-flash",
2363
+ "name": "Qwen: Qwen3 Coder Flash",
2364
+ "created": 1758115536,
2365
+ "contextLength": 1000000,
2366
+ "maxOutputTokens": 65536,
2367
+ "inputPricePerMillion": 0.195,
2368
+ "outputPricePerMillion": 0.975,
2369
+ "modalities": [
2370
+ "text"
2371
+ ]
2372
+ },
2373
+ {
2374
+ "id": "qwen/qwen3-next-80b-a3b-thinking",
2375
+ "name": "Qwen: Qwen3 Next 80B A3B Thinking",
2376
+ "created": 1757612284,
2377
+ "contextLength": 131072,
2378
+ "maxOutputTokens": 32768,
2379
+ "inputPricePerMillion": 0.0975,
2380
+ "outputPricePerMillion": 0.78,
2381
+ "modalities": [
2382
+ "text"
2383
+ ]
2384
+ },
2385
+ {
2386
+ "id": "qwen/qwen3-next-80b-a3b-instruct:free",
2387
+ "name": "Qwen: Qwen3 Next 80B A3B Instruct (free)",
2388
+ "created": 1757612213,
2389
+ "contextLength": 262144,
2390
+ "maxOutputTokens": 0,
2391
+ "inputPricePerMillion": 0,
2392
+ "outputPricePerMillion": 0,
2393
+ "modalities": [
2394
+ "text"
2395
+ ]
2396
+ },
2397
+ {
2398
+ "id": "qwen/qwen3-next-80b-a3b-instruct",
2399
+ "name": "Qwen: Qwen3 Next 80B A3B Instruct",
2400
+ "created": 1757612213,
2401
+ "contextLength": 262144,
2402
+ "maxOutputTokens": 16384,
2403
+ "inputPricePerMillion": 0.09,
2404
+ "outputPricePerMillion": 1.1,
2405
+ "modalities": [
2406
+ "text"
2407
+ ]
2408
+ },
2409
+ {
2410
+ "id": "qwen/qwen-plus-2025-07-28:thinking",
2411
+ "name": "Qwen: Qwen Plus 0728 (thinking)",
2412
+ "created": 1757347599,
2413
+ "contextLength": 1000000,
2414
+ "maxOutputTokens": 32768,
2415
+ "inputPricePerMillion": 0.26,
2416
+ "outputPricePerMillion": 0.78,
2417
+ "modalities": [
2418
+ "text"
2419
+ ]
2420
+ },
2421
+ {
2422
+ "id": "qwen/qwen-plus-2025-07-28",
2423
+ "name": "Qwen: Qwen Plus 0728",
2424
+ "created": 1757347599,
2425
+ "contextLength": 1000000,
2426
+ "maxOutputTokens": 32768,
2427
+ "inputPricePerMillion": 0.26,
2428
+ "outputPricePerMillion": 0.78,
2429
+ "modalities": [
2430
+ "text"
2431
+ ]
2432
+ },
2433
+ {
2434
+ "id": "nvidia/nemotron-nano-9b-v2:free",
2435
+ "name": "NVIDIA: Nemotron Nano 9B V2 (free)",
2436
+ "created": 1757106807,
2437
+ "contextLength": 128000,
2438
+ "maxOutputTokens": 0,
2439
+ "inputPricePerMillion": 0,
2440
+ "outputPricePerMillion": 0,
2441
+ "modalities": [
2442
+ "text"
2443
+ ]
2444
+ },
2445
+ {
2446
+ "id": "nvidia/nemotron-nano-9b-v2",
2447
+ "name": "NVIDIA: Nemotron Nano 9B V2",
2448
+ "created": 1757106807,
2449
+ "contextLength": 131072,
2450
+ "maxOutputTokens": 16384,
2451
+ "inputPricePerMillion": 0.04,
2452
+ "outputPricePerMillion": 0.16,
2453
+ "modalities": [
2454
+ "text"
2455
+ ]
2456
+ },
2457
+ {
2458
+ "id": "moonshotai/kimi-k2-0905",
2459
+ "name": "MoonshotAI: Kimi K2 0905",
2460
+ "created": 1757021147,
2461
+ "contextLength": 262144,
2462
+ "maxOutputTokens": 262144,
2463
+ "inputPricePerMillion": 0.6,
2464
+ "outputPricePerMillion": 2.5,
2465
+ "modalities": [
2466
+ "text"
2467
+ ]
2468
+ },
2469
+ {
2470
+ "id": "qwen/qwen3-30b-a3b-thinking-2507",
2471
+ "name": "Qwen: Qwen3 30B A3B Thinking 2507",
2472
+ "created": 1756399192,
2473
+ "contextLength": 131072,
2474
+ "maxOutputTokens": 131072,
2475
+ "inputPricePerMillion": 0.08,
2476
+ "outputPricePerMillion": 0.39999999999999997,
2477
+ "modalities": [
2478
+ "text"
2479
+ ]
2480
+ },
2481
+ {
2482
+ "id": "nousresearch/hermes-4-70b",
2483
+ "name": "Nous: Hermes 4 70B",
2484
+ "created": 1756236182,
2485
+ "contextLength": 131072,
2486
+ "maxOutputTokens": 0,
2487
+ "inputPricePerMillion": 0.13,
2488
+ "outputPricePerMillion": 0.39999999999999997,
2489
+ "modalities": [
2490
+ "text"
2491
+ ]
2492
+ },
2493
+ {
2494
+ "id": "nousresearch/hermes-4-405b",
2495
+ "name": "Nous: Hermes 4 405B",
2496
+ "created": 1756235463,
2497
+ "contextLength": 131072,
2498
+ "maxOutputTokens": 0,
2499
+ "inputPricePerMillion": 1,
2500
+ "outputPricePerMillion": 3,
2501
+ "modalities": [
2502
+ "text"
2503
+ ]
2504
+ },
2505
+ {
2506
+ "id": "deepseek/deepseek-chat-v3.1",
2507
+ "name": "DeepSeek: DeepSeek V3.1",
2508
+ "created": 1755779628,
2509
+ "contextLength": 163840,
2510
+ "maxOutputTokens": 32768,
2511
+ "inputPricePerMillion": 0.21,
2512
+ "outputPricePerMillion": 0.7899999999999999,
2513
+ "modalities": [
2514
+ "text"
2515
+ ]
2516
+ },
2517
+ {
2518
+ "id": "openai/gpt-4o-audio-preview",
2519
+ "name": "OpenAI: GPT-4o Audio",
2520
+ "created": 1755233061,
2521
+ "contextLength": 128000,
2522
+ "maxOutputTokens": 16384,
2523
+ "inputPricePerMillion": 2.5,
2524
+ "outputPricePerMillion": 10,
2525
+ "modalities": [
2526
+ "audio",
2527
+ "text"
2528
+ ]
2529
+ },
2530
+ {
2531
+ "id": "mistralai/mistral-medium-3.1",
2532
+ "name": "Mistral: Mistral Medium 3.1",
2533
+ "created": 1755095639,
2534
+ "contextLength": 131072,
2535
+ "maxOutputTokens": 0,
2536
+ "inputPricePerMillion": 0.39999999999999997,
2537
+ "outputPricePerMillion": 2,
2538
+ "modalities": [
2539
+ "text",
2540
+ "image",
2541
+ "file"
2542
+ ]
2543
+ },
2544
+ {
2545
+ "id": "baidu/ernie-4.5-21b-a3b",
2546
+ "name": "Baidu: ERNIE 4.5 21B A3B",
2547
+ "created": 1755034167,
2548
+ "contextLength": 120000,
2549
+ "maxOutputTokens": 8000,
2550
+ "inputPricePerMillion": 0.07,
2551
+ "outputPricePerMillion": 0.28,
2552
+ "modalities": [
2553
+ "text"
2554
+ ]
2555
+ },
2556
+ {
2557
+ "id": "baidu/ernie-4.5-vl-28b-a3b",
2558
+ "name": "Baidu: ERNIE 4.5 VL 28B A3B",
2559
+ "created": 1755032836,
2560
+ "contextLength": 30000,
2561
+ "maxOutputTokens": 8000,
2562
+ "inputPricePerMillion": 0.14,
2563
+ "outputPricePerMillion": 0.56,
2564
+ "modalities": [
2565
+ "text",
2566
+ "image"
2567
+ ]
2568
+ },
2569
+ {
2570
+ "id": "z-ai/glm-4.5v",
2571
+ "name": "Z.ai: GLM 4.5V",
2572
+ "created": 1754922288,
2573
+ "contextLength": 65536,
2574
+ "maxOutputTokens": 16384,
2575
+ "inputPricePerMillion": 0.6,
2576
+ "outputPricePerMillion": 1.7999999999999998,
2577
+ "modalities": [
2578
+ "text",
2579
+ "image"
2580
+ ]
2581
+ },
2582
+ {
2583
+ "id": "ai21/jamba-large-1.7",
2584
+ "name": "AI21: Jamba Large 1.7",
2585
+ "created": 1754669020,
2586
+ "contextLength": 256000,
2587
+ "maxOutputTokens": 4096,
2588
+ "inputPricePerMillion": 2,
2589
+ "outputPricePerMillion": 8,
2590
+ "modalities": [
2591
+ "text"
2592
+ ]
2593
+ },
2594
+ {
2595
+ "id": "openai/gpt-5-chat",
2596
+ "name": "OpenAI: GPT-5 Chat",
2597
+ "created": 1754587837,
2598
+ "contextLength": 128000,
2599
+ "maxOutputTokens": 16384,
2600
+ "inputPricePerMillion": 1.25,
2601
+ "outputPricePerMillion": 10,
2602
+ "modalities": [
2603
+ "file",
2604
+ "image",
2605
+ "text"
2606
+ ]
2607
+ },
2608
+ {
2609
+ "id": "openai/gpt-5",
2610
+ "name": "OpenAI: GPT-5",
2611
+ "created": 1754587413,
2612
+ "contextLength": 400000,
2613
+ "maxOutputTokens": 128000,
2614
+ "inputPricePerMillion": 1.25,
2615
+ "outputPricePerMillion": 10,
2616
+ "modalities": [
2617
+ "text",
2618
+ "image",
2619
+ "file"
2620
+ ]
2621
+ },
2622
+ {
2623
+ "id": "openai/gpt-5-mini",
2624
+ "name": "OpenAI: GPT-5 Mini",
2625
+ "created": 1754587407,
2626
+ "contextLength": 400000,
2627
+ "maxOutputTokens": 128000,
2628
+ "inputPricePerMillion": 0.25,
2629
+ "outputPricePerMillion": 2,
2630
+ "modalities": [
2631
+ "text",
2632
+ "image",
2633
+ "file"
2634
+ ]
2635
+ },
2636
+ {
2637
+ "id": "openai/gpt-5-nano",
2638
+ "name": "OpenAI: GPT-5 Nano",
2639
+ "created": 1754587402,
2640
+ "contextLength": 400000,
2641
+ "maxOutputTokens": 0,
2642
+ "inputPricePerMillion": 0.049999999999999996,
2643
+ "outputPricePerMillion": 0.39999999999999997,
2644
+ "modalities": [
2645
+ "text",
2646
+ "image",
2647
+ "file"
2648
+ ]
2649
+ },
2650
+ {
2651
+ "id": "openai/gpt-oss-120b:free",
2652
+ "name": "OpenAI: gpt-oss-120b (free)",
2653
+ "created": 1754414231,
2654
+ "contextLength": 131072,
2655
+ "maxOutputTokens": 131072,
2656
+ "inputPricePerMillion": 0,
2657
+ "outputPricePerMillion": 0,
2658
+ "modalities": [
2659
+ "text"
2660
+ ]
2661
+ },
2662
+ {
2663
+ "id": "openai/gpt-oss-120b",
2664
+ "name": "OpenAI: gpt-oss-120b",
2665
+ "created": 1754414231,
2666
+ "contextLength": 131072,
2667
+ "maxOutputTokens": 0,
2668
+ "inputPricePerMillion": 0.039,
2669
+ "outputPricePerMillion": 0.18,
2670
+ "modalities": [
2671
+ "text"
2672
+ ]
2673
+ },
2674
+ {
2675
+ "id": "openai/gpt-oss-20b:free",
2676
+ "name": "OpenAI: gpt-oss-20b (free)",
2677
+ "created": 1754414229,
2678
+ "contextLength": 131072,
2679
+ "maxOutputTokens": 8192,
2680
+ "inputPricePerMillion": 0,
2681
+ "outputPricePerMillion": 0,
2682
+ "modalities": [
2683
+ "text"
2684
+ ]
2685
+ },
2686
+ {
2687
+ "id": "openai/gpt-oss-20b",
2688
+ "name": "OpenAI: gpt-oss-20b",
2689
+ "created": 1754414229,
2690
+ "contextLength": 131072,
2691
+ "maxOutputTokens": 131072,
2692
+ "inputPricePerMillion": 0.03,
2693
+ "outputPricePerMillion": 0.14,
2694
+ "modalities": [
2695
+ "text"
2696
+ ]
2697
+ },
2698
+ {
2699
+ "id": "anthropic/claude-opus-4.1",
2700
+ "name": "Anthropic: Claude Opus 4.1",
2701
+ "created": 1754411591,
2702
+ "contextLength": 200000,
2703
+ "maxOutputTokens": 32000,
2704
+ "inputPricePerMillion": 15,
2705
+ "outputPricePerMillion": 75,
2706
+ "modalities": [
2707
+ "image",
2708
+ "text",
2709
+ "file"
2710
+ ]
2711
+ },
2712
+ {
2713
+ "id": "mistralai/codestral-2508",
2714
+ "name": "Mistral: Codestral 2508",
2715
+ "created": 1754079630,
2716
+ "contextLength": 256000,
2717
+ "maxOutputTokens": 0,
2718
+ "inputPricePerMillion": 0.3,
2719
+ "outputPricePerMillion": 0.8999999999999999,
2720
+ "modalities": [
2721
+ "text",
2722
+ "file"
2723
+ ]
2724
+ },
2725
+ {
2726
+ "id": "qwen/qwen3-coder-30b-a3b-instruct",
2727
+ "name": "Qwen: Qwen3 Coder 30B A3B Instruct",
2728
+ "created": 1753972379,
2729
+ "contextLength": 160000,
2730
+ "maxOutputTokens": 32768,
2731
+ "inputPricePerMillion": 0.07,
2732
+ "outputPricePerMillion": 0.27,
2733
+ "modalities": [
2734
+ "text"
2735
+ ]
2736
+ },
2737
+ {
2738
+ "id": "qwen/qwen3-30b-a3b-instruct-2507",
2739
+ "name": "Qwen: Qwen3 30B A3B Instruct 2507",
2740
+ "created": 1753806965,
2741
+ "contextLength": 262144,
2742
+ "maxOutputTokens": 262144,
2743
+ "inputPricePerMillion": 0.09,
2744
+ "outputPricePerMillion": 0.3,
2745
+ "modalities": [
2746
+ "text"
2747
+ ]
2748
+ },
2749
+ {
2750
+ "id": "z-ai/glm-4.5",
2751
+ "name": "Z.ai: GLM 4.5",
2752
+ "created": 1753471347,
2753
+ "contextLength": 131072,
2754
+ "maxOutputTokens": 98304,
2755
+ "inputPricePerMillion": 0.6,
2756
+ "outputPricePerMillion": 2.2,
2757
+ "modalities": [
2758
+ "text"
2759
+ ]
2760
+ },
2761
+ {
2762
+ "id": "z-ai/glm-4.5-air:free",
2763
+ "name": "Z.ai: GLM 4.5 Air (free)",
2764
+ "created": 1753471258,
2765
+ "contextLength": 131072,
2766
+ "maxOutputTokens": 96000,
2767
+ "inputPricePerMillion": 0,
2768
+ "outputPricePerMillion": 0,
2769
+ "modalities": [
2770
+ "text"
2771
+ ]
2772
+ },
2773
+ {
2774
+ "id": "z-ai/glm-4.5-air",
2775
+ "name": "Z.ai: GLM 4.5 Air",
2776
+ "created": 1753471258,
2777
+ "contextLength": 131072,
2778
+ "maxOutputTokens": 98304,
2779
+ "inputPricePerMillion": 0.13,
2780
+ "outputPricePerMillion": 0.85,
2781
+ "modalities": [
2782
+ "text"
2783
+ ]
2784
+ },
2785
+ {
2786
+ "id": "qwen/qwen3-235b-a22b-thinking-2507",
2787
+ "name": "Qwen: Qwen3 235B A22B Thinking 2507",
2788
+ "created": 1753449557,
2789
+ "contextLength": 131072,
2790
+ "maxOutputTokens": 0,
2791
+ "inputPricePerMillion": 0.14950000000000002,
2792
+ "outputPricePerMillion": 1.495,
2793
+ "modalities": [
2794
+ "text"
2795
+ ]
2796
+ },
2797
+ {
2798
+ "id": "z-ai/glm-4-32b",
2799
+ "name": "Z.ai: GLM 4 32B ",
2800
+ "created": 1753376617,
2801
+ "contextLength": 128000,
2802
+ "maxOutputTokens": 0,
2803
+ "inputPricePerMillion": 0.09999999999999999,
2804
+ "outputPricePerMillion": 0.09999999999999999,
2805
+ "modalities": [
2806
+ "text"
2807
+ ]
2808
+ },
2809
+ {
2810
+ "id": "qwen/qwen3-coder:free",
2811
+ "name": "Qwen: Qwen3 Coder 480B A35B (free)",
2812
+ "created": 1753230546,
2813
+ "contextLength": 262000,
2814
+ "maxOutputTokens": 262000,
2815
+ "inputPricePerMillion": 0,
2816
+ "outputPricePerMillion": 0,
2817
+ "modalities": [
2818
+ "text"
2819
+ ]
2820
+ },
2821
+ {
2822
+ "id": "qwen/qwen3-coder",
2823
+ "name": "Qwen: Qwen3 Coder 480B A35B",
2824
+ "created": 1753230546,
2825
+ "contextLength": 262144,
2826
+ "maxOutputTokens": 65536,
2827
+ "inputPricePerMillion": 0.22,
2828
+ "outputPricePerMillion": 1.7999999999999998,
2829
+ "modalities": [
2830
+ "text"
2831
+ ]
2832
+ },
2833
+ {
2834
+ "id": "bytedance/ui-tars-1.5-7b",
2835
+ "name": "ByteDance: UI-TARS 7B ",
2836
+ "created": 1753205056,
2837
+ "contextLength": 128000,
2838
+ "maxOutputTokens": 2048,
2839
+ "inputPricePerMillion": 0.09999999999999999,
2840
+ "outputPricePerMillion": 0.19999999999999998,
2841
+ "modalities": [
2842
+ "image",
2843
+ "text"
2844
+ ]
2845
+ },
2846
+ {
2847
+ "id": "google/gemini-2.5-flash-lite",
2848
+ "name": "Google: Gemini 2.5 Flash Lite",
2849
+ "created": 1753200276,
2850
+ "contextLength": 1048576,
2851
+ "maxOutputTokens": 65535,
2852
+ "inputPricePerMillion": 0.09999999999999999,
2853
+ "outputPricePerMillion": 0.39999999999999997,
2854
+ "modalities": [
2855
+ "text",
2856
+ "image",
2857
+ "file",
2858
+ "audio",
2859
+ "video"
2860
+ ]
2861
+ },
2862
+ {
2863
+ "id": "qwen/qwen3-235b-a22b-2507",
2864
+ "name": "Qwen: Qwen3 235B A22B Instruct 2507",
2865
+ "created": 1753119555,
2866
+ "contextLength": 262144,
2867
+ "maxOutputTokens": 16384,
2868
+ "inputPricePerMillion": 0.071,
2869
+ "outputPricePerMillion": 0.09999999999999999,
2870
+ "modalities": [
2871
+ "text"
2872
+ ]
2873
+ },
2874
+ {
2875
+ "id": "switchpoint/router",
2876
+ "name": "Switchpoint Router",
2877
+ "created": 1752272899,
2878
+ "contextLength": 131072,
2879
+ "maxOutputTokens": 0,
2880
+ "inputPricePerMillion": 0.85,
2881
+ "outputPricePerMillion": 3.4,
2882
+ "modalities": [
2883
+ "text"
2884
+ ]
2885
+ },
2886
+ {
2887
+ "id": "moonshotai/kimi-k2",
2888
+ "name": "MoonshotAI: Kimi K2 0711",
2889
+ "created": 1752263252,
2890
+ "contextLength": 131072,
2891
+ "maxOutputTokens": 32768,
2892
+ "inputPricePerMillion": 0.5700000000000001,
2893
+ "outputPricePerMillion": 2.3,
2894
+ "modalities": [
2895
+ "text"
2896
+ ]
2897
+ },
2898
+ {
2899
+ "id": "mistralai/devstral-medium",
2900
+ "name": "Mistral: Devstral Medium",
2901
+ "created": 1752161321,
2902
+ "contextLength": 131072,
2903
+ "maxOutputTokens": 0,
2904
+ "inputPricePerMillion": 0.39999999999999997,
2905
+ "outputPricePerMillion": 2,
2906
+ "modalities": [
2907
+ "text",
2908
+ "file"
2909
+ ]
2910
+ },
2911
+ {
2912
+ "id": "mistralai/devstral-small",
2913
+ "name": "Mistral: Devstral Small 1.1",
2914
+ "created": 1752160751,
2915
+ "contextLength": 131072,
2916
+ "maxOutputTokens": 0,
2917
+ "inputPricePerMillion": 0.09999999999999999,
2918
+ "outputPricePerMillion": 0.3,
2919
+ "modalities": [
2920
+ "text",
2921
+ "file"
2922
+ ]
2923
+ },
2924
+ {
2925
+ "id": "cognitivecomputations/dolphin-mistral-24b-venice-edition:free",
2926
+ "name": "Venice: Uncensored (free)",
2927
+ "created": 1752094966,
2928
+ "contextLength": 32768,
2929
+ "maxOutputTokens": 0,
2930
+ "inputPricePerMillion": 0,
2931
+ "outputPricePerMillion": 0,
2932
+ "modalities": [
2933
+ "text"
2934
+ ]
2935
+ },
2936
+ {
2937
+ "id": "tencent/hunyuan-a13b-instruct",
2938
+ "name": "Tencent: Hunyuan A13B Instruct",
2939
+ "created": 1751987664,
2940
+ "contextLength": 131072,
2941
+ "maxOutputTokens": 131072,
2942
+ "inputPricePerMillion": 0.14,
2943
+ "outputPricePerMillion": 0.5700000000000001,
2944
+ "modalities": [
2945
+ "text"
2946
+ ]
2947
+ },
2948
+ {
2949
+ "id": "morph/morph-v3-large",
2950
+ "name": "Morph: Morph V3 Large",
2951
+ "created": 1751910858,
2952
+ "contextLength": 262144,
2953
+ "maxOutputTokens": 131072,
2954
+ "inputPricePerMillion": 0.8999999999999999,
2955
+ "outputPricePerMillion": 1.9,
2956
+ "modalities": [
2957
+ "text"
2958
+ ]
2959
+ },
2960
+ {
2961
+ "id": "morph/morph-v3-fast",
2962
+ "name": "Morph: Morph V3 Fast",
2963
+ "created": 1751910002,
2964
+ "contextLength": 81920,
2965
+ "maxOutputTokens": 38000,
2966
+ "inputPricePerMillion": 0.7999999999999999,
2967
+ "outputPricePerMillion": 1.2,
2968
+ "modalities": [
2969
+ "text"
2970
+ ]
2971
+ },
2972
+ {
2973
+ "id": "baidu/ernie-4.5-vl-424b-a47b",
2974
+ "name": "Baidu: ERNIE 4.5 VL 424B A47B ",
2975
+ "created": 1751300903,
2976
+ "contextLength": 123000,
2977
+ "maxOutputTokens": 16000,
2978
+ "inputPricePerMillion": 0.42,
2979
+ "outputPricePerMillion": 1.25,
2980
+ "modalities": [
2981
+ "image",
2982
+ "text"
2983
+ ]
2984
+ },
2985
+ {
2986
+ "id": "baidu/ernie-4.5-300b-a47b",
2987
+ "name": "Baidu: ERNIE 4.5 300B A47B ",
2988
+ "created": 1751300139,
2989
+ "contextLength": 123000,
2990
+ "maxOutputTokens": 12000,
2991
+ "inputPricePerMillion": 0.28,
2992
+ "outputPricePerMillion": 1.1,
2993
+ "modalities": [
2994
+ "text"
2995
+ ]
2996
+ },
2997
+ {
2998
+ "id": "mistralai/mistral-small-3.2-24b-instruct",
2999
+ "name": "Mistral: Mistral Small 3.2 24B",
3000
+ "created": 1750443016,
3001
+ "contextLength": 128000,
3002
+ "maxOutputTokens": 16384,
3003
+ "inputPricePerMillion": 0.075,
3004
+ "outputPricePerMillion": 0.19999999999999998,
3005
+ "modalities": [
3006
+ "image",
3007
+ "text"
3008
+ ]
3009
+ },
3010
+ {
3011
+ "id": "minimax/minimax-m1",
3012
+ "name": "MiniMax: MiniMax M1",
3013
+ "created": 1750200414,
3014
+ "contextLength": 1000000,
3015
+ "maxOutputTokens": 40000,
3016
+ "inputPricePerMillion": 0.39999999999999997,
3017
+ "outputPricePerMillion": 2.2,
3018
+ "modalities": [
3019
+ "text"
3020
+ ]
3021
+ },
3022
+ {
3023
+ "id": "google/gemini-2.5-flash",
3024
+ "name": "Google: Gemini 2.5 Flash",
3025
+ "created": 1750172488,
3026
+ "contextLength": 1048576,
3027
+ "maxOutputTokens": 65535,
3028
+ "inputPricePerMillion": 0.3,
3029
+ "outputPricePerMillion": 2.5,
3030
+ "modalities": [
3031
+ "file",
3032
+ "image",
3033
+ "text",
3034
+ "audio",
3035
+ "video"
3036
+ ]
3037
+ },
3038
+ {
3039
+ "id": "google/gemini-2.5-pro",
3040
+ "name": "Google: Gemini 2.5 Pro",
3041
+ "created": 1750169544,
3042
+ "contextLength": 1048576,
3043
+ "maxOutputTokens": 65536,
3044
+ "inputPricePerMillion": 1.25,
3045
+ "outputPricePerMillion": 10,
3046
+ "modalities": [
3047
+ "text",
3048
+ "image",
3049
+ "file",
3050
+ "audio",
3051
+ "video"
3052
+ ]
3053
+ },
3054
+ {
3055
+ "id": "openai/o3-pro",
3056
+ "name": "OpenAI: o3 Pro",
3057
+ "created": 1749598352,
3058
+ "contextLength": 200000,
3059
+ "maxOutputTokens": 100000,
3060
+ "inputPricePerMillion": 20,
3061
+ "outputPricePerMillion": 80,
3062
+ "modalities": [
3063
+ "text",
3064
+ "file",
3065
+ "image"
3066
+ ]
3067
+ },
3068
+ {
3069
+ "id": "google/gemini-2.5-pro-preview",
3070
+ "name": "Google: Gemini 2.5 Pro Preview 06-05",
3071
+ "created": 1749137257,
3072
+ "contextLength": 1048576,
3073
+ "maxOutputTokens": 65536,
3074
+ "inputPricePerMillion": 1.25,
3075
+ "outputPricePerMillion": 10,
3076
+ "modalities": [
3077
+ "file",
3078
+ "image",
3079
+ "text",
3080
+ "audio"
3081
+ ]
3082
+ },
3083
+ {
3084
+ "id": "deepseek/deepseek-r1-0528",
3085
+ "name": "DeepSeek: R1 0528",
3086
+ "created": 1748455170,
3087
+ "contextLength": 163840,
3088
+ "maxOutputTokens": 32768,
3089
+ "inputPricePerMillion": 0.5,
3090
+ "outputPricePerMillion": 2.1500000000000004,
3091
+ "modalities": [
3092
+ "text"
3093
+ ]
3094
+ },
3095
+ {
3096
+ "id": "anthropic/claude-opus-4",
3097
+ "name": "Anthropic: Claude Opus 4",
3098
+ "created": 1747931245,
3099
+ "contextLength": 200000,
3100
+ "maxOutputTokens": 32000,
3101
+ "inputPricePerMillion": 15,
3102
+ "outputPricePerMillion": 75,
3103
+ "modalities": [
3104
+ "image",
3105
+ "text",
3106
+ "file"
3107
+ ]
3108
+ },
3109
+ {
3110
+ "id": "anthropic/claude-sonnet-4",
3111
+ "name": "Anthropic: Claude Sonnet 4",
3112
+ "created": 1747930371,
3113
+ "contextLength": 1000000,
3114
+ "maxOutputTokens": 64000,
3115
+ "inputPricePerMillion": 3,
3116
+ "outputPricePerMillion": 15,
3117
+ "modalities": [
3118
+ "image",
3119
+ "text",
3120
+ "file"
3121
+ ]
3122
+ },
3123
+ {
3124
+ "id": "google/gemma-3n-e4b-it",
3125
+ "name": "Google: Gemma 3n 4B",
3126
+ "created": 1747776824,
3127
+ "contextLength": 32768,
3128
+ "maxOutputTokens": 0,
3129
+ "inputPricePerMillion": 0.06,
3130
+ "outputPricePerMillion": 0.12,
3131
+ "modalities": [
3132
+ "text"
3133
+ ]
3134
+ },
3135
+ {
3136
+ "id": "mistralai/mistral-medium-3",
3137
+ "name": "Mistral: Mistral Medium 3",
3138
+ "created": 1746627341,
3139
+ "contextLength": 131072,
3140
+ "maxOutputTokens": 0,
3141
+ "inputPricePerMillion": 0.39999999999999997,
3142
+ "outputPricePerMillion": 2,
3143
+ "modalities": [
3144
+ "text",
3145
+ "image",
3146
+ "file"
3147
+ ]
3148
+ },
3149
+ {
3150
+ "id": "google/gemini-2.5-pro-preview-05-06",
3151
+ "name": "Google: Gemini 2.5 Pro Preview 05-06",
3152
+ "created": 1746578513,
3153
+ "contextLength": 1048576,
3154
+ "maxOutputTokens": 65535,
3155
+ "inputPricePerMillion": 1.25,
3156
+ "outputPricePerMillion": 10,
3157
+ "modalities": [
3158
+ "text",
3159
+ "image",
3160
+ "file",
3161
+ "audio",
3162
+ "video"
3163
+ ]
3164
+ },
3165
+ {
3166
+ "id": "arcee-ai/spotlight",
3167
+ "name": "Arcee AI: Spotlight",
3168
+ "created": 1746481552,
3169
+ "contextLength": 131072,
3170
+ "maxOutputTokens": 65537,
3171
+ "inputPricePerMillion": 0.18,
3172
+ "outputPricePerMillion": 0.18,
3173
+ "modalities": [
3174
+ "image",
3175
+ "text"
3176
+ ]
3177
+ },
3178
+ {
3179
+ "id": "arcee-ai/maestro-reasoning",
3180
+ "name": "Arcee AI: Maestro Reasoning",
3181
+ "created": 1746481269,
3182
+ "contextLength": 131072,
3183
+ "maxOutputTokens": 32000,
3184
+ "inputPricePerMillion": 0.8999999999999999,
3185
+ "outputPricePerMillion": 3.3000000000000003,
3186
+ "modalities": [
3187
+ "text"
3188
+ ]
3189
+ },
3190
+ {
3191
+ "id": "arcee-ai/virtuoso-large",
3192
+ "name": "Arcee AI: Virtuoso Large",
3193
+ "created": 1746478885,
3194
+ "contextLength": 131072,
3195
+ "maxOutputTokens": 64000,
3196
+ "inputPricePerMillion": 0.75,
3197
+ "outputPricePerMillion": 1.2,
3198
+ "modalities": [
3199
+ "text"
3200
+ ]
3201
+ },
3202
+ {
3203
+ "id": "arcee-ai/coder-large",
3204
+ "name": "Arcee AI: Coder Large",
3205
+ "created": 1746478663,
3206
+ "contextLength": 32768,
3207
+ "maxOutputTokens": 0,
3208
+ "inputPricePerMillion": 0.5,
3209
+ "outputPricePerMillion": 0.7999999999999999,
3210
+ "modalities": [
3211
+ "text"
3212
+ ]
3213
+ },
3214
+ {
3215
+ "id": "meta-llama/llama-guard-4-12b",
3216
+ "name": "Meta: Llama Guard 4 12B",
3217
+ "created": 1745975193,
3218
+ "contextLength": 163840,
3219
+ "maxOutputTokens": 16384,
3220
+ "inputPricePerMillion": 0.18,
3221
+ "outputPricePerMillion": 0.18,
3222
+ "modalities": [
3223
+ "image",
3224
+ "text"
3225
+ ]
3226
+ },
3227
+ {
3228
+ "id": "qwen/qwen3-30b-a3b",
3229
+ "name": "Qwen: Qwen3 30B A3B",
3230
+ "created": 1745878604,
3231
+ "contextLength": 40960,
3232
+ "maxOutputTokens": 20000,
3233
+ "inputPricePerMillion": 0.09,
3234
+ "outputPricePerMillion": 0.44999999999999996,
3235
+ "modalities": [
3236
+ "text"
3237
+ ]
3238
+ },
3239
+ {
3240
+ "id": "qwen/qwen3-8b",
3241
+ "name": "Qwen: Qwen3 8B",
3242
+ "created": 1745876632,
3243
+ "contextLength": 40960,
3244
+ "maxOutputTokens": 8192,
3245
+ "inputPricePerMillion": 0.049999999999999996,
3246
+ "outputPricePerMillion": 0.39999999999999997,
3247
+ "modalities": [
3248
+ "text"
3249
+ ]
3250
+ },
3251
+ {
3252
+ "id": "qwen/qwen3-14b",
3253
+ "name": "Qwen: Qwen3 14B",
3254
+ "created": 1745876478,
3255
+ "contextLength": 40960,
3256
+ "maxOutputTokens": 40960,
3257
+ "inputPricePerMillion": 0.09999999999999999,
3258
+ "outputPricePerMillion": 0.24,
3259
+ "modalities": [
3260
+ "text"
3261
+ ]
3262
+ },
3263
+ {
3264
+ "id": "qwen/qwen3-32b",
3265
+ "name": "Qwen: Qwen3 32B",
3266
+ "created": 1745875945,
3267
+ "contextLength": 40960,
3268
+ "maxOutputTokens": 16384,
3269
+ "inputPricePerMillion": 0.08,
3270
+ "outputPricePerMillion": 0.28,
3271
+ "modalities": [
3272
+ "text"
3273
+ ]
3274
+ },
3275
+ {
3276
+ "id": "qwen/qwen3-235b-a22b",
3277
+ "name": "Qwen: Qwen3 235B A22B",
3278
+ "created": 1745875757,
3279
+ "contextLength": 131072,
3280
+ "maxOutputTokens": 8192,
3281
+ "inputPricePerMillion": 0.45499999999999996,
3282
+ "outputPricePerMillion": 1.8199999999999998,
3283
+ "modalities": [
3284
+ "text"
3285
+ ]
3286
+ },
3287
+ {
3288
+ "id": "openai/o4-mini-high",
3289
+ "name": "OpenAI: o4 Mini High",
3290
+ "created": 1744824212,
3291
+ "contextLength": 200000,
3292
+ "maxOutputTokens": 100000,
3293
+ "inputPricePerMillion": 1.1,
3294
+ "outputPricePerMillion": 4.4,
3295
+ "modalities": [
3296
+ "image",
3297
+ "text",
3298
+ "file"
3299
+ ]
3300
+ },
3301
+ {
3302
+ "id": "openai/o3",
3303
+ "name": "OpenAI: o3",
3304
+ "created": 1744823457,
3305
+ "contextLength": 200000,
3306
+ "maxOutputTokens": 100000,
3307
+ "inputPricePerMillion": 2,
3308
+ "outputPricePerMillion": 8,
3309
+ "modalities": [
3310
+ "image",
3311
+ "text",
3312
+ "file"
3313
+ ]
3314
+ },
3315
+ {
3316
+ "id": "openai/o4-mini",
3317
+ "name": "OpenAI: o4 Mini",
3318
+ "created": 1744820942,
3319
+ "contextLength": 200000,
3320
+ "maxOutputTokens": 100000,
3321
+ "inputPricePerMillion": 1.1,
3322
+ "outputPricePerMillion": 4.4,
3323
+ "modalities": [
3324
+ "image",
3325
+ "text",
3326
+ "file"
3327
+ ]
3328
+ },
3329
+ {
3330
+ "id": "openai/gpt-4.1",
3331
+ "name": "OpenAI: GPT-4.1",
3332
+ "created": 1744651385,
3333
+ "contextLength": 1047576,
3334
+ "maxOutputTokens": 0,
3335
+ "inputPricePerMillion": 2,
3336
+ "outputPricePerMillion": 8,
3337
+ "modalities": [
3338
+ "image",
3339
+ "text",
3340
+ "file"
3341
+ ]
3342
+ },
3343
+ {
3344
+ "id": "openai/gpt-4.1-mini",
3345
+ "name": "OpenAI: GPT-4.1 Mini",
3346
+ "created": 1744651381,
3347
+ "contextLength": 1047576,
3348
+ "maxOutputTokens": 32768,
3349
+ "inputPricePerMillion": 0.39999999999999997,
3350
+ "outputPricePerMillion": 1.5999999999999999,
3351
+ "modalities": [
3352
+ "image",
3353
+ "text",
3354
+ "file"
3355
+ ]
3356
+ },
3357
+ {
3358
+ "id": "openai/gpt-4.1-nano",
3359
+ "name": "OpenAI: GPT-4.1 Nano",
3360
+ "created": 1744651369,
3361
+ "contextLength": 1047576,
3362
+ "maxOutputTokens": 32768,
3363
+ "inputPricePerMillion": 0.09999999999999999,
3364
+ "outputPricePerMillion": 0.39999999999999997,
3365
+ "modalities": [
3366
+ "image",
3367
+ "text",
3368
+ "file"
3369
+ ]
3370
+ },
3371
+ {
3372
+ "id": "alfredpros/codellama-7b-instruct-solidity",
3373
+ "name": "AlfredPros: CodeLLaMa 7B Instruct Solidity",
3374
+ "created": 1744641874,
3375
+ "contextLength": 4096,
3376
+ "maxOutputTokens": 4096,
3377
+ "inputPricePerMillion": 0.7999999999999999,
3378
+ "outputPricePerMillion": 1.2,
3379
+ "modalities": [
3380
+ "text"
3381
+ ]
3382
+ },
3383
+ {
3384
+ "id": "meta-llama/llama-4-maverick",
3385
+ "name": "Meta: Llama 4 Maverick",
3386
+ "created": 1743881822,
3387
+ "contextLength": 1048576,
3388
+ "maxOutputTokens": 16384,
3389
+ "inputPricePerMillion": 0.15,
3390
+ "outputPricePerMillion": 0.6,
3391
+ "modalities": [
3392
+ "text",
3393
+ "image"
3394
+ ]
3395
+ },
3396
+ {
3397
+ "id": "meta-llama/llama-4-scout",
3398
+ "name": "Meta: Llama 4 Scout",
3399
+ "created": 1743881519,
3400
+ "contextLength": 327680,
3401
+ "maxOutputTokens": 16384,
3402
+ "inputPricePerMillion": 0.08,
3403
+ "outputPricePerMillion": 0.3,
3404
+ "modalities": [
3405
+ "text",
3406
+ "image"
3407
+ ]
3408
+ },
3409
+ {
3410
+ "id": "deepseek/deepseek-chat-v3-0324",
3411
+ "name": "DeepSeek: DeepSeek V3 0324",
3412
+ "created": 1742824755,
3413
+ "contextLength": 163840,
3414
+ "maxOutputTokens": 16384,
3415
+ "inputPricePerMillion": 0.19999999999999998,
3416
+ "outputPricePerMillion": 0.77,
3417
+ "modalities": [
3418
+ "text"
3419
+ ]
3420
+ },
3421
+ {
3422
+ "id": "openai/o1-pro",
3423
+ "name": "OpenAI: o1-pro",
3424
+ "created": 1742423211,
3425
+ "contextLength": 200000,
3426
+ "maxOutputTokens": 100000,
3427
+ "inputPricePerMillion": 150,
3428
+ "outputPricePerMillion": 600,
3429
+ "modalities": [
3430
+ "text",
3431
+ "image",
3432
+ "file"
3433
+ ]
3434
+ },
3435
+ {
3436
+ "id": "mistralai/mistral-small-3.1-24b-instruct",
3437
+ "name": "Mistral: Mistral Small 3.1 24B",
3438
+ "created": 1742238937,
3439
+ "contextLength": 128000,
3440
+ "maxOutputTokens": 128000,
3441
+ "inputPricePerMillion": 0.351,
3442
+ "outputPricePerMillion": 0.5549999999999999,
3443
+ "modalities": [
3444
+ "text",
3445
+ "image"
3446
+ ]
3447
+ },
3448
+ {
3449
+ "id": "google/gemma-3-4b-it",
3450
+ "name": "Google: Gemma 3 4B",
3451
+ "created": 1741905510,
3452
+ "contextLength": 131072,
3453
+ "maxOutputTokens": 16384,
3454
+ "inputPricePerMillion": 0.04,
3455
+ "outputPricePerMillion": 0.08,
3456
+ "modalities": [
3457
+ "text",
3458
+ "image"
3459
+ ]
3460
+ },
3461
+ {
3462
+ "id": "google/gemma-3-12b-it",
3463
+ "name": "Google: Gemma 3 12B",
3464
+ "created": 1741902625,
3465
+ "contextLength": 131072,
3466
+ "maxOutputTokens": 16384,
3467
+ "inputPricePerMillion": 0.04,
3468
+ "outputPricePerMillion": 0.13,
3469
+ "modalities": [
3470
+ "text",
3471
+ "image"
3472
+ ]
3473
+ },
3474
+ {
3475
+ "id": "cohere/command-a",
3476
+ "name": "Cohere: Command A",
3477
+ "created": 1741894342,
3478
+ "contextLength": 256000,
3479
+ "maxOutputTokens": 8192,
3480
+ "inputPricePerMillion": 2.5,
3481
+ "outputPricePerMillion": 10,
3482
+ "modalities": [
3483
+ "text"
3484
+ ]
3485
+ },
3486
+ {
3487
+ "id": "openai/gpt-4o-mini-search-preview",
3488
+ "name": "OpenAI: GPT-4o-mini Search Preview",
3489
+ "created": 1741818122,
3490
+ "contextLength": 128000,
3491
+ "maxOutputTokens": 16384,
3492
+ "inputPricePerMillion": 0.15,
3493
+ "outputPricePerMillion": 0.6,
3494
+ "modalities": [
3495
+ "text"
3496
+ ]
3497
+ },
3498
+ {
3499
+ "id": "openai/gpt-4o-search-preview",
3500
+ "name": "OpenAI: GPT-4o Search Preview",
3501
+ "created": 1741817949,
3502
+ "contextLength": 128000,
3503
+ "maxOutputTokens": 16384,
3504
+ "inputPricePerMillion": 2.5,
3505
+ "outputPricePerMillion": 10,
3506
+ "modalities": [
3507
+ "text"
3508
+ ]
3509
+ },
3510
+ {
3511
+ "id": "rekaai/reka-flash-3",
3512
+ "name": "Reka Flash 3",
3513
+ "created": 1741812813,
3514
+ "contextLength": 65536,
3515
+ "maxOutputTokens": 65536,
3516
+ "inputPricePerMillion": 0.09999999999999999,
3517
+ "outputPricePerMillion": 0.19999999999999998,
3518
+ "modalities": [
3519
+ "text"
3520
+ ]
3521
+ },
3522
+ {
3523
+ "id": "google/gemma-3-27b-it",
3524
+ "name": "Google: Gemma 3 27B",
3525
+ "created": 1741756359,
3526
+ "contextLength": 131072,
3527
+ "maxOutputTokens": 16384,
3528
+ "inputPricePerMillion": 0.08,
3529
+ "outputPricePerMillion": 0.16,
3530
+ "modalities": [
3531
+ "text",
3532
+ "image"
3533
+ ]
3534
+ },
3535
+ {
3536
+ "id": "thedrummer/skyfall-36b-v2",
3537
+ "name": "TheDrummer: Skyfall 36B V2",
3538
+ "created": 1741636566,
3539
+ "contextLength": 32768,
3540
+ "maxOutputTokens": 32768,
3541
+ "inputPricePerMillion": 0.55,
3542
+ "outputPricePerMillion": 0.7999999999999999,
3543
+ "modalities": [
3544
+ "text"
3545
+ ]
3546
+ },
3547
+ {
3548
+ "id": "perplexity/sonar-reasoning-pro",
3549
+ "name": "Perplexity: Sonar Reasoning Pro",
3550
+ "created": 1741313308,
3551
+ "contextLength": 128000,
3552
+ "maxOutputTokens": 0,
3553
+ "inputPricePerMillion": 2,
3554
+ "outputPricePerMillion": 8,
3555
+ "modalities": [
3556
+ "text",
3557
+ "image"
3558
+ ]
3559
+ },
3560
+ {
3561
+ "id": "perplexity/sonar-pro",
3562
+ "name": "Perplexity: Sonar Pro",
3563
+ "created": 1741312423,
3564
+ "contextLength": 200000,
3565
+ "maxOutputTokens": 8000,
3566
+ "inputPricePerMillion": 3,
3567
+ "outputPricePerMillion": 15,
3568
+ "modalities": [
3569
+ "text",
3570
+ "image"
3571
+ ]
3572
+ },
3573
+ {
3574
+ "id": "perplexity/sonar-deep-research",
3575
+ "name": "Perplexity: Sonar Deep Research",
3576
+ "created": 1741311246,
3577
+ "contextLength": 128000,
3578
+ "maxOutputTokens": 0,
3579
+ "inputPricePerMillion": 2,
3580
+ "outputPricePerMillion": 8,
3581
+ "modalities": [
3582
+ "text"
3583
+ ]
3584
+ },
3585
+ {
3586
+ "id": "google/gemini-2.0-flash-lite-001",
3587
+ "name": "Google: Gemini 2.0 Flash Lite",
3588
+ "created": 1740506212,
3589
+ "contextLength": 1048576,
3590
+ "maxOutputTokens": 8192,
3591
+ "inputPricePerMillion": 0.075,
3592
+ "outputPricePerMillion": 0.3,
3593
+ "modalities": [
3594
+ "text",
3595
+ "image",
3596
+ "file",
3597
+ "audio",
3598
+ "video"
3599
+ ]
3600
+ },
3601
+ {
3602
+ "id": "mistralai/mistral-saba",
3603
+ "name": "Mistral: Saba",
3604
+ "created": 1739803239,
3605
+ "contextLength": 32768,
3606
+ "maxOutputTokens": 0,
3607
+ "inputPricePerMillion": 0.19999999999999998,
3608
+ "outputPricePerMillion": 0.6,
3609
+ "modalities": [
3610
+ "text",
3611
+ "file"
3612
+ ]
3613
+ },
3614
+ {
3615
+ "id": "meta-llama/llama-guard-3-8b",
3616
+ "name": "Llama Guard 3 8B",
3617
+ "created": 1739401318,
3618
+ "contextLength": 131072,
3619
+ "maxOutputTokens": 131072,
3620
+ "inputPricePerMillion": 0.48400000000000004,
3621
+ "outputPricePerMillion": 0.03,
3622
+ "modalities": [
3623
+ "text"
3624
+ ]
3625
+ },
3626
+ {
3627
+ "id": "openai/o3-mini-high",
3628
+ "name": "OpenAI: o3 Mini High",
3629
+ "created": 1739372611,
3630
+ "contextLength": 200000,
3631
+ "maxOutputTokens": 100000,
3632
+ "inputPricePerMillion": 1.1,
3633
+ "outputPricePerMillion": 4.4,
3634
+ "modalities": [
3635
+ "text",
3636
+ "file"
3637
+ ]
3638
+ },
3639
+ {
3640
+ "id": "google/gemini-2.0-flash-001",
3641
+ "name": "Google: Gemini 2.0 Flash",
3642
+ "created": 1738769413,
3643
+ "contextLength": 1000000,
3644
+ "maxOutputTokens": 8192,
3645
+ "inputPricePerMillion": 0.09999999999999999,
3646
+ "outputPricePerMillion": 0.39999999999999997,
3647
+ "modalities": [
3648
+ "text",
3649
+ "image",
3650
+ "file",
3651
+ "audio",
3652
+ "video"
3653
+ ]
3654
+ },
3655
+ {
3656
+ "id": "aion-labs/aion-1.0",
3657
+ "name": "AionLabs: Aion-1.0",
3658
+ "created": 1738697557,
3659
+ "contextLength": 131072,
3660
+ "maxOutputTokens": 32768,
3661
+ "inputPricePerMillion": 4,
3662
+ "outputPricePerMillion": 8,
3663
+ "modalities": [
3664
+ "text"
3665
+ ]
3666
+ },
3667
+ {
3668
+ "id": "aion-labs/aion-1.0-mini",
3669
+ "name": "AionLabs: Aion-1.0-Mini",
3670
+ "created": 1738697107,
3671
+ "contextLength": 131072,
3672
+ "maxOutputTokens": 32768,
3673
+ "inputPricePerMillion": 0.7,
3674
+ "outputPricePerMillion": 1.4,
3675
+ "modalities": [
3676
+ "text"
3677
+ ]
3678
+ },
3679
+ {
3680
+ "id": "aion-labs/aion-rp-llama-3.1-8b",
3681
+ "name": "AionLabs: Aion-RP 1.0 (8B)",
3682
+ "created": 1738696718,
3683
+ "contextLength": 32768,
3684
+ "maxOutputTokens": 32768,
3685
+ "inputPricePerMillion": 0.7999999999999999,
3686
+ "outputPricePerMillion": 1.5999999999999999,
3687
+ "modalities": [
3688
+ "text"
3689
+ ]
3690
+ },
3691
+ {
3692
+ "id": "qwen/qwen2.5-vl-72b-instruct",
3693
+ "name": "Qwen: Qwen2.5 VL 72B Instruct",
3694
+ "created": 1738410311,
3695
+ "contextLength": 32000,
3696
+ "maxOutputTokens": 0,
3697
+ "inputPricePerMillion": 0.25,
3698
+ "outputPricePerMillion": 0.75,
3699
+ "modalities": [
3700
+ "text",
3701
+ "image"
3702
+ ]
3703
+ },
3704
+ {
3705
+ "id": "qwen/qwen-plus",
3706
+ "name": "Qwen: Qwen-Plus",
3707
+ "created": 1738409840,
3708
+ "contextLength": 1000000,
3709
+ "maxOutputTokens": 32768,
3710
+ "inputPricePerMillion": 0.26,
3711
+ "outputPricePerMillion": 0.78,
3712
+ "modalities": [
3713
+ "text"
3714
+ ]
3715
+ },
3716
+ {
3717
+ "id": "openai/o3-mini",
3718
+ "name": "OpenAI: o3 Mini",
3719
+ "created": 1738351721,
3720
+ "contextLength": 200000,
3721
+ "maxOutputTokens": 100000,
3722
+ "inputPricePerMillion": 1.1,
3723
+ "outputPricePerMillion": 4.4,
3724
+ "modalities": [
3725
+ "text",
3726
+ "file"
3727
+ ]
3728
+ },
3729
+ {
3730
+ "id": "mistralai/mistral-small-24b-instruct-2501",
3731
+ "name": "Mistral: Mistral Small 3",
3732
+ "created": 1738255409,
3733
+ "contextLength": 32768,
3734
+ "maxOutputTokens": 16384,
3735
+ "inputPricePerMillion": 0.049999999999999996,
3736
+ "outputPricePerMillion": 0.08,
3737
+ "modalities": [
3738
+ "text"
3739
+ ]
3740
+ },
3741
+ {
3742
+ "id": "deepseek/deepseek-r1-distill-qwen-32b",
3743
+ "name": "DeepSeek: R1 Distill Qwen 32B",
3744
+ "created": 1738194830,
3745
+ "contextLength": 32768,
3746
+ "maxOutputTokens": 32768,
3747
+ "inputPricePerMillion": 0.29,
3748
+ "outputPricePerMillion": 0.29,
3749
+ "modalities": [
3750
+ "text"
3751
+ ]
3752
+ },
3753
+ {
3754
+ "id": "perplexity/sonar",
3755
+ "name": "Perplexity: Sonar",
3756
+ "created": 1738013808,
3757
+ "contextLength": 127072,
3758
+ "maxOutputTokens": 0,
3759
+ "inputPricePerMillion": 1,
3760
+ "outputPricePerMillion": 1,
3761
+ "modalities": [
3762
+ "text",
3763
+ "image"
3764
+ ]
3765
+ },
3766
+ {
3767
+ "id": "deepseek/deepseek-r1-distill-llama-70b",
3768
+ "name": "DeepSeek: R1 Distill Llama 70B",
3769
+ "created": 1737663169,
3770
+ "contextLength": 131072,
3771
+ "maxOutputTokens": 16384,
3772
+ "inputPricePerMillion": 0.7,
3773
+ "outputPricePerMillion": 0.7999999999999999,
3774
+ "modalities": [
3775
+ "text"
3776
+ ]
3777
+ },
3778
+ {
3779
+ "id": "deepseek/deepseek-r1",
3780
+ "name": "DeepSeek: R1",
3781
+ "created": 1737381095,
3782
+ "contextLength": 64000,
3783
+ "maxOutputTokens": 16000,
3784
+ "inputPricePerMillion": 0.7,
3785
+ "outputPricePerMillion": 2.5,
3786
+ "modalities": [
3787
+ "text"
3788
+ ]
3789
+ },
3790
+ {
3791
+ "id": "minimax/minimax-01",
3792
+ "name": "MiniMax: MiniMax-01",
3793
+ "created": 1736915462,
3794
+ "contextLength": 1000192,
3795
+ "maxOutputTokens": 1000192,
3796
+ "inputPricePerMillion": 0.19999999999999998,
3797
+ "outputPricePerMillion": 1.1,
3798
+ "modalities": [
3799
+ "text",
3800
+ "image"
3801
+ ]
3802
+ },
3803
+ {
3804
+ "id": "microsoft/phi-4",
3805
+ "name": "Microsoft: Phi 4",
3806
+ "created": 1736489872,
3807
+ "contextLength": 16384,
3808
+ "maxOutputTokens": 16384,
3809
+ "inputPricePerMillion": 0.065,
3810
+ "outputPricePerMillion": 0.14,
3811
+ "modalities": [
3812
+ "text"
3813
+ ]
3814
+ },
3815
+ {
3816
+ "id": "sao10k/l3.1-70b-hanami-x1",
3817
+ "name": "Sao10K: Llama 3.1 70B Hanami x1",
3818
+ "created": 1736302854,
3819
+ "contextLength": 16000,
3820
+ "maxOutputTokens": 0,
3821
+ "inputPricePerMillion": 3,
3822
+ "outputPricePerMillion": 3,
3823
+ "modalities": [
3824
+ "text"
3825
+ ]
3826
+ },
3827
+ {
3828
+ "id": "deepseek/deepseek-chat",
3829
+ "name": "DeepSeek: DeepSeek V3",
3830
+ "created": 1735241320,
3831
+ "contextLength": 163840,
3832
+ "maxOutputTokens": 16384,
3833
+ "inputPricePerMillion": 0.32,
3834
+ "outputPricePerMillion": 0.8899999999999999,
3835
+ "modalities": [
3836
+ "text"
3837
+ ]
3838
+ },
3839
+ {
3840
+ "id": "sao10k/l3.3-euryale-70b",
3841
+ "name": "Sao10K: Llama 3.3 Euryale 70B",
3842
+ "created": 1734535928,
3843
+ "contextLength": 131072,
3844
+ "maxOutputTokens": 16384,
3845
+ "inputPricePerMillion": 0.65,
3846
+ "outputPricePerMillion": 0.75,
3847
+ "modalities": [
3848
+ "text"
3849
+ ]
3850
+ },
3851
+ {
3852
+ "id": "openai/o1",
3853
+ "name": "OpenAI: o1",
3854
+ "created": 1734459999,
3855
+ "contextLength": 200000,
3856
+ "maxOutputTokens": 100000,
3857
+ "inputPricePerMillion": 15,
3858
+ "outputPricePerMillion": 60,
3859
+ "modalities": [
3860
+ "text",
3861
+ "image",
3862
+ "file"
3863
+ ]
3864
+ },
3865
+ {
3866
+ "id": "cohere/command-r7b-12-2024",
3867
+ "name": "Cohere: Command R7B (12-2024)",
3868
+ "created": 1734158152,
3869
+ "contextLength": 128000,
3870
+ "maxOutputTokens": 4000,
3871
+ "inputPricePerMillion": 0.0375,
3872
+ "outputPricePerMillion": 0.15,
3873
+ "modalities": [
3874
+ "text"
3875
+ ]
3876
+ },
3877
+ {
3878
+ "id": "meta-llama/llama-3.3-70b-instruct:free",
3879
+ "name": "Meta: Llama 3.3 70B Instruct (free)",
3880
+ "created": 1733506137,
3881
+ "contextLength": 65536,
3882
+ "maxOutputTokens": 0,
3883
+ "inputPricePerMillion": 0,
3884
+ "outputPricePerMillion": 0,
3885
+ "modalities": [
3886
+ "text"
3887
+ ]
3888
+ },
3889
+ {
3890
+ "id": "meta-llama/llama-3.3-70b-instruct",
3891
+ "name": "Meta: Llama 3.3 70B Instruct",
3892
+ "created": 1733506137,
3893
+ "contextLength": 131072,
3894
+ "maxOutputTokens": 16384,
3895
+ "inputPricePerMillion": 0.09999999999999999,
3896
+ "outputPricePerMillion": 0.32,
3897
+ "modalities": [
3898
+ "text"
3899
+ ]
3900
+ },
3901
+ {
3902
+ "id": "amazon/nova-lite-v1",
3903
+ "name": "Amazon: Nova Lite 1.0",
3904
+ "created": 1733437363,
3905
+ "contextLength": 300000,
3906
+ "maxOutputTokens": 5120,
3907
+ "inputPricePerMillion": 0.06,
3908
+ "outputPricePerMillion": 0.24,
3909
+ "modalities": [
3910
+ "text",
3911
+ "image"
3912
+ ]
3913
+ },
3914
+ {
3915
+ "id": "amazon/nova-micro-v1",
3916
+ "name": "Amazon: Nova Micro 1.0",
3917
+ "created": 1733437237,
3918
+ "contextLength": 128000,
3919
+ "maxOutputTokens": 5120,
3920
+ "inputPricePerMillion": 0.035,
3921
+ "outputPricePerMillion": 0.14,
3922
+ "modalities": [
3923
+ "text"
3924
+ ]
3925
+ },
3926
+ {
3927
+ "id": "amazon/nova-pro-v1",
3928
+ "name": "Amazon: Nova Pro 1.0",
3929
+ "created": 1733436303,
3930
+ "contextLength": 300000,
3931
+ "maxOutputTokens": 5120,
3932
+ "inputPricePerMillion": 0.7999999999999999,
3933
+ "outputPricePerMillion": 3.1999999999999997,
3934
+ "modalities": [
3935
+ "text",
3936
+ "image"
3937
+ ]
3938
+ },
3939
+ {
3940
+ "id": "openai/gpt-4o-2024-11-20",
3941
+ "name": "OpenAI: GPT-4o (2024-11-20)",
3942
+ "created": 1732127594,
3943
+ "contextLength": 128000,
3944
+ "maxOutputTokens": 16384,
3945
+ "inputPricePerMillion": 2.5,
3946
+ "outputPricePerMillion": 10,
3947
+ "modalities": [
3948
+ "text",
3949
+ "image",
3950
+ "file"
3951
+ ]
3952
+ },
3953
+ {
3954
+ "id": "mistralai/mistral-large-2411",
3955
+ "name": "Mistral Large 2411",
3956
+ "created": 1731978685,
3957
+ "contextLength": 131072,
3958
+ "maxOutputTokens": 0,
3959
+ "inputPricePerMillion": 2,
3960
+ "outputPricePerMillion": 6,
3961
+ "modalities": [
3962
+ "text",
3963
+ "file"
3964
+ ]
3965
+ },
3966
+ {
3967
+ "id": "mistralai/mistral-large-2407",
3968
+ "name": "Mistral Large 2407",
3969
+ "created": 1731978415,
3970
+ "contextLength": 131072,
3971
+ "maxOutputTokens": 0,
3972
+ "inputPricePerMillion": 2,
3973
+ "outputPricePerMillion": 6,
3974
+ "modalities": [
3975
+ "text",
3976
+ "file"
3977
+ ]
3978
+ },
3979
+ {
3980
+ "id": "mistralai/pixtral-large-2411",
3981
+ "name": "Mistral: Pixtral Large 2411",
3982
+ "created": 1731977388,
3983
+ "contextLength": 131072,
3984
+ "maxOutputTokens": 0,
3985
+ "inputPricePerMillion": 2,
3986
+ "outputPricePerMillion": 6,
3987
+ "modalities": [
3988
+ "text",
3989
+ "image",
3990
+ "file"
3991
+ ]
3992
+ },
3993
+ {
3994
+ "id": "qwen/qwen-2.5-coder-32b-instruct",
3995
+ "name": "Qwen2.5 Coder 32B Instruct",
3996
+ "created": 1731368400,
3997
+ "contextLength": 32768,
3998
+ "maxOutputTokens": 32768,
3999
+ "inputPricePerMillion": 0.66,
4000
+ "outputPricePerMillion": 1,
4001
+ "modalities": [
4002
+ "text"
4003
+ ]
4004
+ },
4005
+ {
4006
+ "id": "thedrummer/unslopnemo-12b",
4007
+ "name": "TheDrummer: UnslopNemo 12B",
4008
+ "created": 1731103448,
4009
+ "contextLength": 32768,
4010
+ "maxOutputTokens": 32768,
4011
+ "inputPricePerMillion": 0.39999999999999997,
4012
+ "outputPricePerMillion": 0.39999999999999997,
4013
+ "modalities": [
4014
+ "text"
4015
+ ]
4016
+ },
4017
+ {
4018
+ "id": "anthropic/claude-3.5-haiku",
4019
+ "name": "Anthropic: Claude 3.5 Haiku",
4020
+ "created": 1730678400,
4021
+ "contextLength": 200000,
4022
+ "maxOutputTokens": 8192,
4023
+ "inputPricePerMillion": 0.7999999999999999,
4024
+ "outputPricePerMillion": 4,
4025
+ "modalities": [
4026
+ "text",
4027
+ "image"
4028
+ ]
4029
+ },
4030
+ {
4031
+ "id": "anthracite-org/magnum-v4-72b",
4032
+ "name": "Magnum v4 72B",
4033
+ "created": 1729555200,
4034
+ "contextLength": 16384,
4035
+ "maxOutputTokens": 2048,
4036
+ "inputPricePerMillion": 3,
4037
+ "outputPricePerMillion": 5,
4038
+ "modalities": [
4039
+ "text"
4040
+ ]
4041
+ },
4042
+ {
4043
+ "id": "qwen/qwen-2.5-7b-instruct",
4044
+ "name": "Qwen: Qwen2.5 7B Instruct",
4045
+ "created": 1729036800,
4046
+ "contextLength": 32768,
4047
+ "maxOutputTokens": 32768,
4048
+ "inputPricePerMillion": 0.04,
4049
+ "outputPricePerMillion": 0.09999999999999999,
4050
+ "modalities": [
4051
+ "text"
4052
+ ]
4053
+ },
4054
+ {
4055
+ "id": "inflection/inflection-3-productivity",
4056
+ "name": "Inflection: Inflection 3 Productivity",
4057
+ "created": 1728604800,
4058
+ "contextLength": 8000,
4059
+ "maxOutputTokens": 1024,
4060
+ "inputPricePerMillion": 2.5,
4061
+ "outputPricePerMillion": 10,
4062
+ "modalities": [
4063
+ "text"
4064
+ ]
4065
+ },
4066
+ {
4067
+ "id": "inflection/inflection-3-pi",
4068
+ "name": "Inflection: Inflection 3 Pi",
4069
+ "created": 1728604800,
4070
+ "contextLength": 8000,
4071
+ "maxOutputTokens": 1024,
4072
+ "inputPricePerMillion": 2.5,
4073
+ "outputPricePerMillion": 10,
4074
+ "modalities": [
4075
+ "text"
4076
+ ]
4077
+ },
4078
+ {
4079
+ "id": "thedrummer/rocinante-12b",
4080
+ "name": "TheDrummer: Rocinante 12B",
4081
+ "created": 1727654400,
4082
+ "contextLength": 32768,
4083
+ "maxOutputTokens": 32768,
4084
+ "inputPricePerMillion": 0.16999999999999998,
4085
+ "outputPricePerMillion": 0.43,
4086
+ "modalities": [
4087
+ "text"
4088
+ ]
4089
+ },
4090
+ {
4091
+ "id": "meta-llama/llama-3.2-11b-vision-instruct",
4092
+ "name": "Meta: Llama 3.2 11B Vision Instruct",
4093
+ "created": 1727222400,
4094
+ "contextLength": 131072,
4095
+ "maxOutputTokens": 16384,
4096
+ "inputPricePerMillion": 0.245,
4097
+ "outputPricePerMillion": 0.245,
4098
+ "modalities": [
4099
+ "text",
4100
+ "image"
4101
+ ]
4102
+ },
4103
+ {
4104
+ "id": "meta-llama/llama-3.2-1b-instruct",
4105
+ "name": "Meta: Llama 3.2 1B Instruct",
4106
+ "created": 1727222400,
4107
+ "contextLength": 60000,
4108
+ "maxOutputTokens": 60000,
4109
+ "inputPricePerMillion": 0.027,
4110
+ "outputPricePerMillion": 0.201,
4111
+ "modalities": [
4112
+ "text"
4113
+ ]
4114
+ },
4115
+ {
4116
+ "id": "meta-llama/llama-3.2-3b-instruct:free",
4117
+ "name": "Meta: Llama 3.2 3B Instruct (free)",
4118
+ "created": 1727222400,
4119
+ "contextLength": 131072,
4120
+ "maxOutputTokens": 0,
4121
+ "inputPricePerMillion": 0,
4122
+ "outputPricePerMillion": 0,
4123
+ "modalities": [
4124
+ "text"
4125
+ ]
4126
+ },
4127
+ {
4128
+ "id": "meta-llama/llama-3.2-3b-instruct",
4129
+ "name": "Meta: Llama 3.2 3B Instruct",
4130
+ "created": 1727222400,
4131
+ "contextLength": 80000,
4132
+ "maxOutputTokens": 80000,
4133
+ "inputPricePerMillion": 0.0509,
4134
+ "outputPricePerMillion": 0.335,
4135
+ "modalities": [
4136
+ "text"
4137
+ ]
4138
+ },
4139
+ {
4140
+ "id": "qwen/qwen-2.5-72b-instruct",
4141
+ "name": "Qwen2.5 72B Instruct",
4142
+ "created": 1726704000,
4143
+ "contextLength": 32768,
4144
+ "maxOutputTokens": 16384,
4145
+ "inputPricePerMillion": 0.36,
4146
+ "outputPricePerMillion": 0.39999999999999997,
4147
+ "modalities": [
4148
+ "text"
4149
+ ]
4150
+ },
4151
+ {
4152
+ "id": "cohere/command-r-08-2024",
4153
+ "name": "Cohere: Command R (08-2024)",
4154
+ "created": 1724976000,
4155
+ "contextLength": 128000,
4156
+ "maxOutputTokens": 4000,
4157
+ "inputPricePerMillion": 0.15,
4158
+ "outputPricePerMillion": 0.6,
4159
+ "modalities": [
4160
+ "text"
4161
+ ]
4162
+ },
4163
+ {
4164
+ "id": "cohere/command-r-plus-08-2024",
4165
+ "name": "Cohere: Command R+ (08-2024)",
4166
+ "created": 1724976000,
4167
+ "contextLength": 128000,
4168
+ "maxOutputTokens": 4000,
4169
+ "inputPricePerMillion": 2.5,
4170
+ "outputPricePerMillion": 10,
4171
+ "modalities": [
4172
+ "text"
4173
+ ]
4174
+ },
4175
+ {
4176
+ "id": "sao10k/l3.1-euryale-70b",
4177
+ "name": "Sao10K: Llama 3.1 Euryale 70B v2.2",
4178
+ "created": 1724803200,
4179
+ "contextLength": 131072,
4180
+ "maxOutputTokens": 16384,
4181
+ "inputPricePerMillion": 0.85,
4182
+ "outputPricePerMillion": 0.85,
4183
+ "modalities": [
4184
+ "text"
4185
+ ]
4186
+ },
4187
+ {
4188
+ "id": "nousresearch/hermes-3-llama-3.1-70b",
4189
+ "name": "Nous: Hermes 3 70B Instruct",
4190
+ "created": 1723939200,
4191
+ "contextLength": 131072,
4192
+ "maxOutputTokens": 16384,
4193
+ "inputPricePerMillion": 0.3,
4194
+ "outputPricePerMillion": 0.3,
4195
+ "modalities": [
4196
+ "text"
4197
+ ]
4198
+ },
4199
+ {
4200
+ "id": "nousresearch/hermes-3-llama-3.1-405b:free",
4201
+ "name": "Nous: Hermes 3 405B Instruct (free)",
4202
+ "created": 1723766400,
4203
+ "contextLength": 131072,
4204
+ "maxOutputTokens": 0,
4205
+ "inputPricePerMillion": 0,
4206
+ "outputPricePerMillion": 0,
4207
+ "modalities": [
4208
+ "text"
4209
+ ]
4210
+ },
4211
+ {
4212
+ "id": "nousresearch/hermes-3-llama-3.1-405b",
4213
+ "name": "Nous: Hermes 3 405B Instruct",
4214
+ "created": 1723766400,
4215
+ "contextLength": 131072,
4216
+ "maxOutputTokens": 16384,
4217
+ "inputPricePerMillion": 1,
4218
+ "outputPricePerMillion": 1,
4219
+ "modalities": [
4220
+ "text"
4221
+ ]
4222
+ },
4223
+ {
4224
+ "id": "sao10k/l3-lunaris-8b",
4225
+ "name": "Sao10K: Llama 3 8B Lunaris",
4226
+ "created": 1723507200,
4227
+ "contextLength": 8192,
4228
+ "maxOutputTokens": 16384,
4229
+ "inputPricePerMillion": 0.04,
4230
+ "outputPricePerMillion": 0.049999999999999996,
4231
+ "modalities": [
4232
+ "text"
4233
+ ]
4234
+ },
4235
+ {
4236
+ "id": "openai/gpt-4o-2024-08-06",
4237
+ "name": "OpenAI: GPT-4o (2024-08-06)",
4238
+ "created": 1722902400,
4239
+ "contextLength": 128000,
4240
+ "maxOutputTokens": 16384,
4241
+ "inputPricePerMillion": 2.5,
4242
+ "outputPricePerMillion": 10,
4243
+ "modalities": [
4244
+ "text",
4245
+ "image",
4246
+ "file"
4247
+ ]
4248
+ },
4249
+ {
4250
+ "id": "meta-llama/llama-3.1-70b-instruct",
4251
+ "name": "Meta: Llama 3.1 70B Instruct",
4252
+ "created": 1721692800,
4253
+ "contextLength": 131072,
4254
+ "maxOutputTokens": 16384,
4255
+ "inputPricePerMillion": 0.39999999999999997,
4256
+ "outputPricePerMillion": 0.39999999999999997,
4257
+ "modalities": [
4258
+ "text"
4259
+ ]
4260
+ },
4261
+ {
4262
+ "id": "meta-llama/llama-3.1-8b-instruct",
4263
+ "name": "Meta: Llama 3.1 8B Instruct",
4264
+ "created": 1721692800,
4265
+ "contextLength": 16384,
4266
+ "maxOutputTokens": 16384,
4267
+ "inputPricePerMillion": 0.02,
4268
+ "outputPricePerMillion": 0.049999999999999996,
4269
+ "modalities": [
4270
+ "text"
4271
+ ]
4272
+ },
4273
+ {
4274
+ "id": "mistralai/mistral-nemo",
4275
+ "name": "Mistral: Mistral Nemo",
4276
+ "created": 1721347200,
4277
+ "contextLength": 131072,
4278
+ "maxOutputTokens": 0,
4279
+ "inputPricePerMillion": 0.02,
4280
+ "outputPricePerMillion": 0.03,
4281
+ "modalities": [
4282
+ "text"
4283
+ ]
4284
+ },
4285
+ {
4286
+ "id": "openai/gpt-4o-mini-2024-07-18",
4287
+ "name": "OpenAI: GPT-4o-mini (2024-07-18)",
4288
+ "created": 1721260800,
4289
+ "contextLength": 128000,
4290
+ "maxOutputTokens": 16384,
4291
+ "inputPricePerMillion": 0.15,
4292
+ "outputPricePerMillion": 0.6,
4293
+ "modalities": [
4294
+ "text",
4295
+ "image",
4296
+ "file"
4297
+ ]
4298
+ },
4299
+ {
4300
+ "id": "openai/gpt-4o-mini",
4301
+ "name": "OpenAI: GPT-4o-mini",
4302
+ "created": 1721260800,
4303
+ "contextLength": 128000,
4304
+ "maxOutputTokens": 16384,
4305
+ "inputPricePerMillion": 0.15,
4306
+ "outputPricePerMillion": 0.6,
4307
+ "modalities": [
4308
+ "text",
4309
+ "image",
4310
+ "file"
4311
+ ]
4312
+ },
4313
+ {
4314
+ "id": "google/gemma-2-27b-it",
4315
+ "name": "Google: Gemma 2 27B",
4316
+ "created": 1720828800,
4317
+ "contextLength": 8192,
4318
+ "maxOutputTokens": 2048,
4319
+ "inputPricePerMillion": 0.65,
4320
+ "outputPricePerMillion": 0.65,
4321
+ "modalities": [
4322
+ "text"
4323
+ ]
4324
+ },
4325
+ {
4326
+ "id": "sao10k/l3-euryale-70b",
4327
+ "name": "Sao10k: Llama 3 Euryale 70B v2.1",
4328
+ "created": 1718668800,
4329
+ "contextLength": 8192,
4330
+ "maxOutputTokens": 8192,
4331
+ "inputPricePerMillion": 1.48,
4332
+ "outputPricePerMillion": 1.48,
4333
+ "modalities": [
4334
+ "text"
4335
+ ]
4336
+ },
4337
+ {
4338
+ "id": "nousresearch/hermes-2-pro-llama-3-8b",
4339
+ "name": "NousResearch: Hermes 2 Pro - Llama-3 8B",
4340
+ "created": 1716768000,
4341
+ "contextLength": 8192,
4342
+ "maxOutputTokens": 8192,
4343
+ "inputPricePerMillion": 0.14,
4344
+ "outputPricePerMillion": 0.14,
4345
+ "modalities": [
4346
+ "text"
4347
+ ]
4348
+ },
4349
+ {
4350
+ "id": "openai/gpt-4o",
4351
+ "name": "OpenAI: GPT-4o",
4352
+ "created": 1715558400,
4353
+ "contextLength": 128000,
4354
+ "maxOutputTokens": 16384,
4355
+ "inputPricePerMillion": 2.5,
4356
+ "outputPricePerMillion": 10,
4357
+ "modalities": [
4358
+ "text",
4359
+ "image",
4360
+ "file"
4361
+ ]
4362
+ },
4363
+ {
4364
+ "id": "openai/gpt-4o-2024-05-13",
4365
+ "name": "OpenAI: GPT-4o (2024-05-13)",
4366
+ "created": 1715558400,
4367
+ "contextLength": 128000,
4368
+ "maxOutputTokens": 4096,
4369
+ "inputPricePerMillion": 5,
4370
+ "outputPricePerMillion": 15,
4371
+ "modalities": [
4372
+ "text",
4373
+ "image",
4374
+ "file"
4375
+ ]
4376
+ },
4377
+ {
4378
+ "id": "meta-llama/llama-3-70b-instruct",
4379
+ "name": "Meta: Llama 3 70B Instruct",
4380
+ "created": 1713398400,
4381
+ "contextLength": 8192,
4382
+ "maxOutputTokens": 8000,
4383
+ "inputPricePerMillion": 0.51,
4384
+ "outputPricePerMillion": 0.74,
4385
+ "modalities": [
4386
+ "text"
4387
+ ]
4388
+ },
4389
+ {
4390
+ "id": "meta-llama/llama-3-8b-instruct",
4391
+ "name": "Meta: Llama 3 8B Instruct",
4392
+ "created": 1713398400,
4393
+ "contextLength": 8192,
4394
+ "maxOutputTokens": 8192,
4395
+ "inputPricePerMillion": 0.04,
4396
+ "outputPricePerMillion": 0.04,
4397
+ "modalities": [
4398
+ "text"
4399
+ ]
4400
+ },
4401
+ {
4402
+ "id": "mistralai/mixtral-8x22b-instruct",
4403
+ "name": "Mistral: Mixtral 8x22B Instruct",
4404
+ "created": 1713312000,
4405
+ "contextLength": 65536,
4406
+ "maxOutputTokens": 0,
4407
+ "inputPricePerMillion": 2,
4408
+ "outputPricePerMillion": 6,
4409
+ "modalities": [
4410
+ "text",
4411
+ "file"
4412
+ ]
4413
+ },
4414
+ {
4415
+ "id": "microsoft/wizardlm-2-8x22b",
4416
+ "name": "WizardLM-2 8x22B",
4417
+ "created": 1713225600,
4418
+ "contextLength": 65535,
4419
+ "maxOutputTokens": 8000,
4420
+ "inputPricePerMillion": 0.62,
4421
+ "outputPricePerMillion": 0.62,
4422
+ "modalities": [
4423
+ "text"
4424
+ ]
4425
+ },
4426
+ {
4427
+ "id": "openai/gpt-4-turbo",
4428
+ "name": "OpenAI: GPT-4 Turbo",
4429
+ "created": 1712620800,
4430
+ "contextLength": 128000,
4431
+ "maxOutputTokens": 4096,
4432
+ "inputPricePerMillion": 10,
4433
+ "outputPricePerMillion": 30,
4434
+ "modalities": [
4435
+ "text",
4436
+ "image"
4437
+ ]
4438
+ },
4439
+ {
4440
+ "id": "anthropic/claude-3-haiku",
4441
+ "name": "Anthropic: Claude 3 Haiku",
4442
+ "created": 1710288000,
4443
+ "contextLength": 200000,
4444
+ "maxOutputTokens": 4096,
4445
+ "inputPricePerMillion": 0.25,
4446
+ "outputPricePerMillion": 1.25,
4447
+ "modalities": [
4448
+ "text",
4449
+ "image"
4450
+ ]
4451
+ },
4452
+ {
4453
+ "id": "mistralai/mistral-large",
4454
+ "name": "Mistral Large",
4455
+ "created": 1708905600,
4456
+ "contextLength": 128000,
4457
+ "maxOutputTokens": 0,
4458
+ "inputPricePerMillion": 2,
4459
+ "outputPricePerMillion": 6,
4460
+ "modalities": [
4461
+ "text",
4462
+ "file"
4463
+ ]
4464
+ },
4465
+ {
4466
+ "id": "openai/gpt-3.5-turbo-0613",
4467
+ "name": "OpenAI: GPT-3.5 Turbo (older v0613)",
4468
+ "created": 1706140800,
4469
+ "contextLength": 4095,
4470
+ "maxOutputTokens": 4096,
4471
+ "inputPricePerMillion": 1,
4472
+ "outputPricePerMillion": 2,
4473
+ "modalities": [
4474
+ "text"
4475
+ ]
4476
+ },
4477
+ {
4478
+ "id": "openai/gpt-4-turbo-preview",
4479
+ "name": "OpenAI: GPT-4 Turbo Preview",
4480
+ "created": 1706140800,
4481
+ "contextLength": 128000,
4482
+ "maxOutputTokens": 4096,
4483
+ "inputPricePerMillion": 10,
4484
+ "outputPricePerMillion": 30,
4485
+ "modalities": [
4486
+ "text"
4487
+ ]
4488
+ },
4489
+ {
4490
+ "id": "openrouter/auto",
4491
+ "name": "Auto Router",
4492
+ "created": 1699401600,
4493
+ "contextLength": 2000000,
4494
+ "maxOutputTokens": 0,
4495
+ "inputPricePerMillion": -1000000,
4496
+ "outputPricePerMillion": -1000000,
4497
+ "modalities": [
4498
+ "text",
4499
+ "image",
4500
+ "audio",
4501
+ "file",
4502
+ "video"
4503
+ ]
4504
+ },
4505
+ {
4506
+ "id": "openai/gpt-4-1106-preview",
4507
+ "name": "OpenAI: GPT-4 Turbo (older v1106)",
4508
+ "created": 1699228800,
4509
+ "contextLength": 128000,
4510
+ "maxOutputTokens": 4096,
4511
+ "inputPricePerMillion": 10,
4512
+ "outputPricePerMillion": 30,
4513
+ "modalities": [
4514
+ "text"
4515
+ ]
4516
+ },
4517
+ {
4518
+ "id": "mistralai/mistral-7b-instruct-v0.1",
4519
+ "name": "Mistral: Mistral 7B Instruct v0.1",
4520
+ "created": 1695859200,
4521
+ "contextLength": 2824,
4522
+ "maxOutputTokens": 2824,
4523
+ "inputPricePerMillion": 0.11,
4524
+ "outputPricePerMillion": 0.19,
4525
+ "modalities": [
4526
+ "text"
4527
+ ]
4528
+ },
4529
+ {
4530
+ "id": "openai/gpt-3.5-turbo-instruct",
4531
+ "name": "OpenAI: GPT-3.5 Turbo Instruct",
4532
+ "created": 1695859200,
4533
+ "contextLength": 4095,
4534
+ "maxOutputTokens": 4096,
4535
+ "inputPricePerMillion": 1.5,
4536
+ "outputPricePerMillion": 2,
4537
+ "modalities": [
4538
+ "text"
4539
+ ]
4540
+ },
4541
+ {
4542
+ "id": "openai/gpt-3.5-turbo-16k",
4543
+ "name": "OpenAI: GPT-3.5 Turbo 16k",
4544
+ "created": 1693180800,
4545
+ "contextLength": 16385,
4546
+ "maxOutputTokens": 4096,
4547
+ "inputPricePerMillion": 3,
4548
+ "outputPricePerMillion": 4,
4549
+ "modalities": [
4550
+ "text"
4551
+ ]
4552
+ },
4553
+ {
4554
+ "id": "mancer/weaver",
4555
+ "name": "Mancer: Weaver (alpha)",
4556
+ "created": 1690934400,
4557
+ "contextLength": 8000,
4558
+ "maxOutputTokens": 2000,
4559
+ "inputPricePerMillion": 0.75,
4560
+ "outputPricePerMillion": 1,
4561
+ "modalities": [
4562
+ "text"
4563
+ ]
4564
+ },
4565
+ {
4566
+ "id": "undi95/remm-slerp-l2-13b",
4567
+ "name": "ReMM SLERP 13B",
4568
+ "created": 1689984000,
4569
+ "contextLength": 6144,
4570
+ "maxOutputTokens": 4096,
4571
+ "inputPricePerMillion": 0.44999999999999996,
4572
+ "outputPricePerMillion": 0.65,
4573
+ "modalities": [
4574
+ "text"
4575
+ ]
4576
+ },
4577
+ {
4578
+ "id": "gryphe/mythomax-l2-13b",
4579
+ "name": "MythoMax 13B",
4580
+ "created": 1688256000,
4581
+ "contextLength": 4096,
4582
+ "maxOutputTokens": 4096,
4583
+ "inputPricePerMillion": 0.06,
4584
+ "outputPricePerMillion": 0.06,
4585
+ "modalities": [
4586
+ "text"
4587
+ ]
4588
+ },
4589
+ {
4590
+ "id": "openai/gpt-4-0314",
4591
+ "name": "OpenAI: GPT-4 (older v0314)",
4592
+ "created": 1685232000,
4593
+ "contextLength": 8191,
4594
+ "maxOutputTokens": 4096,
4595
+ "inputPricePerMillion": 30,
4596
+ "outputPricePerMillion": 60,
4597
+ "modalities": [
4598
+ "text"
4599
+ ]
4600
+ },
4601
+ {
4602
+ "id": "openai/gpt-3.5-turbo",
4603
+ "name": "OpenAI: GPT-3.5 Turbo",
4604
+ "created": 1685232000,
4605
+ "contextLength": 16385,
4606
+ "maxOutputTokens": 4096,
4607
+ "inputPricePerMillion": 0.5,
4608
+ "outputPricePerMillion": 1.5,
4609
+ "modalities": [
4610
+ "text"
4611
+ ]
4612
+ },
4613
+ {
4614
+ "id": "openai/gpt-4",
4615
+ "name": "OpenAI: GPT-4",
4616
+ "created": 1685232000,
4617
+ "contextLength": 8191,
4618
+ "maxOutputTokens": 4096,
4619
+ "inputPricePerMillion": 30,
4620
+ "outputPricePerMillion": 60,
4621
+ "modalities": [
4622
+ "text"
4623
+ ]
4624
+ }
4625
+ ]
4626
+ }