@psnext/slingcli 2.5.20260617-1 → 2.5.20260621-1

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 (170) hide show
  1. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.browser.js +276 -1
  2. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +276 -1
  3. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.native.js +276 -1
  4. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partitions.js +276 -1
  5. package/node_modules/@aws-sdk/core/package.json +1 -1
  6. package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
  7. package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/package.json +2 -2
  8. package/node_modules/@aws-sdk/credential-provider-http/package.json +2 -2
  9. package/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
  10. package/node_modules/@aws-sdk/credential-provider-login/package.json +3 -3
  11. package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
  12. package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
  13. package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/package.json +3 -3
  14. package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
  15. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
  16. package/node_modules/@aws-sdk/middleware-websocket/package.json +2 -2
  17. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +1 -1
  18. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +1 -1
  19. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +1 -1
  20. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +1 -1
  21. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +1 -1
  22. package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/package.json +2 -2
  23. package/node_modules/@aws-sdk/nested-clients/package.json +2 -2
  24. package/node_modules/@earendil-works/pi-agent-core/package.json +2 -2
  25. package/node_modules/@earendil-works/pi-ai/dist/env-api-keys.js +21 -57
  26. package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.js +30 -0
  27. package/node_modules/@earendil-works/pi-ai/dist/models.generated.js +252 -261
  28. package/node_modules/@earendil-works/pi-ai/dist/models.js +4 -1
  29. package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.js +52 -34
  30. package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.js +11 -9
  31. package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.js +7 -4
  32. package/node_modules/@earendil-works/pi-ai/dist/providers/cloudflare.js +4 -3
  33. package/node_modules/@earendil-works/pi-ai/dist/providers/google-vertex.js +15 -5
  34. package/node_modules/@earendil-works/pi-ai/dist/providers/google.js +2 -1
  35. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.js +18 -17
  36. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.js +21 -8
  37. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses-shared.js +2 -1
  38. package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.js +8 -7
  39. package/node_modules/@earendil-works/pi-ai/dist/providers/simple-options.js +1 -0
  40. package/node_modules/@earendil-works/pi-ai/dist/stream.js +1 -1
  41. package/node_modules/@earendil-works/pi-ai/dist/utils/node-http-proxy.js +17 -22
  42. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/anthropic.js +2 -1
  43. package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.js +3 -2
  44. package/node_modules/@earendil-works/pi-ai/dist/utils/provider-env.js +44 -0
  45. package/node_modules/@earendil-works/pi-ai/package.json +1 -1
  46. package/node_modules/@earendil-works/pi-coding-agent/dist/bun/restore-sandbox-env.js +4 -0
  47. package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.js +1 -1
  48. package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.js +10 -7
  49. package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.js +8 -1
  50. package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.js +2 -2
  51. package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.js +10 -10
  52. package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/vendor/marked.min.js +75 -3
  53. package/node_modules/@earendil-works/pi-coding-agent/dist/core/http-dispatcher.js +17 -1
  54. package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.js +8 -4
  55. package/node_modules/@earendil-works/pi-coding-agent/dist/core/project-trust.js +1 -1
  56. package/node_modules/@earendil-works/pi-coding-agent/dist/core/provider-attribution.js +10 -0
  57. package/node_modules/@earendil-works/pi-coding-agent/dist/core/resolve-config-value.js +19 -19
  58. package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.js +2 -0
  59. package/node_modules/@earendil-works/pi-coding-agent/dist/core/system-prompt.js +6 -6
  60. package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.js +4 -0
  61. package/node_modules/@earendil-works/pi-coding-agent/dist/main.js +17 -5
  62. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.js +4 -0
  63. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.js +0 -1
  64. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/session-selector.js +0 -5
  65. package/node_modules/@earendil-works/pi-coding-agent/dist/package-manager-cli.js +6 -6
  66. package/node_modules/@earendil-works/pi-coding-agent/dist/utils/child-process.js +23 -5
  67. package/node_modules/@earendil-works/pi-coding-agent/npm-shrinkwrap.json +17 -17
  68. package/node_modules/@earendil-works/pi-coding-agent/package.json +4 -4
  69. package/node_modules/@earendil-works/pi-tui/dist/components/editor.js +5 -1
  70. package/node_modules/@earendil-works/pi-tui/package.json +2 -2
  71. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +10 -2
  72. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +10 -2
  73. package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +6 -0
  74. package/node_modules/@smithy/core/package.json +1 -1
  75. package/node_modules/@smithy/credential-provider-imds/package.json +2 -2
  76. package/node_modules/@smithy/fetch-http-handler/package.json +2 -2
  77. package/node_modules/@smithy/signature-v4/package.json +2 -2
  78. package/node_modules/@types/node/README.md +1 -1
  79. package/node_modules/@types/node/assert/strict.d.ts +10 -1
  80. package/node_modules/@types/node/assert.d.ts +144 -17
  81. package/node_modules/@types/node/async_hooks.d.ts +9 -9
  82. package/node_modules/@types/node/buffer.d.ts +0 -5
  83. package/node_modules/@types/node/child_process.d.ts +17 -21
  84. package/node_modules/@types/node/cluster.d.ts +13 -13
  85. package/node_modules/@types/node/console.d.ts +1 -1
  86. package/node_modules/@types/node/crypto.d.ts +454 -571
  87. package/node_modules/@types/node/diagnostics_channel.d.ts +20 -9
  88. package/node_modules/@types/node/dns.d.ts +14 -14
  89. package/node_modules/@types/node/events.d.ts +3 -3
  90. package/node_modules/@types/node/fs/promises.d.ts +4 -4
  91. package/node_modules/@types/node/fs.d.ts +3 -12
  92. package/node_modules/@types/node/globals.d.ts +4 -4
  93. package/node_modules/@types/node/http.d.ts +5 -5
  94. package/node_modules/@types/node/http2.d.ts +1 -1
  95. package/node_modules/@types/node/index.d.ts +0 -3
  96. package/node_modules/@types/node/inspector.d.ts +1 -1
  97. package/node_modules/@types/node/module.d.ts +16 -45
  98. package/node_modules/@types/node/net.d.ts +1 -1
  99. package/node_modules/@types/node/os.d.ts +2 -2
  100. package/node_modules/@types/node/package.json +4 -4
  101. package/node_modules/@types/node/perf_hooks.d.ts +1 -9
  102. package/node_modules/@types/node/process.d.ts +11 -11
  103. package/node_modules/@types/node/readline.d.ts +12 -11
  104. package/node_modules/@types/node/repl.d.ts +10 -10
  105. package/node_modules/@types/node/sqlite.d.ts +1 -1
  106. package/node_modules/@types/node/stream/promises.d.ts +2 -2
  107. package/node_modules/@types/node/stream/web.d.ts +1 -1
  108. package/node_modules/@types/node/stream.d.ts +5 -5
  109. package/node_modules/@types/node/test/reporters.d.ts +1 -1
  110. package/node_modules/@types/node/test.d.ts +8 -8
  111. package/node_modules/@types/node/tls.d.ts +1 -1
  112. package/node_modules/@types/node/ts5.6/index.d.ts +1 -4
  113. package/node_modules/@types/node/ts5.7/index.d.ts +0 -3
  114. package/node_modules/@types/node/url.d.ts +3 -3
  115. package/node_modules/@types/node/util/types.d.ts +1 -1
  116. package/node_modules/@types/node/util.d.ts +3 -20
  117. package/node_modules/@types/node/v8.d.ts +1 -1
  118. package/node_modules/@types/node/vm.d.ts +9 -9
  119. package/node_modules/@types/node/web-globals/domexception.d.ts +15 -0
  120. package/node_modules/@types/node/worker_threads.d.ts +2 -5
  121. package/node_modules/@types/node/zlib.d.ts +3 -3
  122. package/node_modules/anynum/package.json +2 -2
  123. package/node_modules/marked/README.md +13 -4
  124. package/node_modules/marked/bin/main.js +16 -14
  125. package/node_modules/marked/bin/marked.js +2 -1
  126. package/node_modules/marked/lib/marked.d.ts +157 -125
  127. package/node_modules/marked/lib/marked.esm.js +67 -2179
  128. package/node_modules/marked/lib/marked.esm.js.map +3 -3
  129. package/node_modules/marked/lib/marked.umd.js +67 -2201
  130. package/node_modules/marked/lib/marked.umd.js.map +3 -3
  131. package/node_modules/marked/man/marked.1 +4 -2
  132. package/node_modules/marked/man/marked.1.md +2 -1
  133. package/node_modules/marked/package.json +27 -35
  134. package/node_modules/path-expression-matcher/README.md +82 -7
  135. package/node_modules/path-expression-matcher/lib/pem.cjs +1 -1
  136. package/node_modules/path-expression-matcher/lib/pem.d.cts +83 -2
  137. package/node_modules/path-expression-matcher/lib/pem.min.js +1 -1
  138. package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -1
  139. package/node_modules/path-expression-matcher/package.json +3 -2
  140. package/node_modules/path-expression-matcher/src/ExpressionSet.js +18 -2
  141. package/node_modules/path-expression-matcher/src/Matcher.js +93 -3
  142. package/node_modules/path-expression-matcher/src/index.d.ts +67 -1
  143. package/node_modules/semver/classes/range.js +6 -2
  144. package/node_modules/semver/package.json +1 -1
  145. package/node_modules/strnum/package.json +5 -4
  146. package/node_modules/undici-types/agent.d.ts +0 -2
  147. package/node_modules/undici-types/client.d.ts +25 -19
  148. package/node_modules/undici-types/dispatcher.d.ts +7 -33
  149. package/node_modules/undici-types/dispatcher1-wrapper.d.ts +7 -0
  150. package/node_modules/undici-types/fetch.d.ts +24 -4
  151. package/node_modules/undici-types/h2c-client.d.ts +6 -6
  152. package/node_modules/undici-types/handlers.d.ts +1 -2
  153. package/node_modules/undici-types/header.d.ts +5 -0
  154. package/node_modules/undici-types/index.d.ts +3 -1
  155. package/node_modules/undici-types/interceptors.d.ts +1 -1
  156. package/node_modules/undici-types/package.json +1 -1
  157. package/node_modules/undici-types/pool.d.ts +0 -2
  158. package/node_modules/undici-types/proxy-agent.d.ts +2 -2
  159. package/node_modules/undici-types/round-robin-pool.d.ts +0 -2
  160. package/node_modules/undici-types/snapshot-agent.d.ts +4 -0
  161. package/node_modules/undici-types/socks5-proxy-agent.d.ts +2 -2
  162. package/node_modules/undici-types/webidl.d.ts +0 -1
  163. package/package.json +6 -6
  164. package/slingshot/index.js +253 -253
  165. package/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  166. package/node_modules/marked/lib/marked.cjs +0 -2211
  167. package/node_modules/marked/lib/marked.cjs.map +0 -7
  168. package/node_modules/marked/lib/marked.d.cts +0 -728
  169. package/node_modules/marked/marked.min.js +0 -69
  170. /package/node_modules/marked/{LICENSE.md → LICENSE} +0 -0
@@ -4227,7 +4227,7 @@ export const MODELS = {
4227
4227
  headers: { "User-Agent": "GitHubCopilotChat/0.35.0", "Editor-Version": "vscode/1.107.0", "Editor-Plugin-Version": "copilot-chat/0.35.0", "Copilot-Integration-Id": "vscode-chat" },
4228
4228
  compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
4229
4229
  reasoning: true,
4230
- thinkingLevelMap: { "xhigh": "xhigh" },
4230
+ thinkingLevelMap: { "xhigh": "xhigh", "minimal": "low" },
4231
4231
  input: ["text", "image"],
4232
4232
  cost: {
4233
4233
  input: 5,
@@ -4247,7 +4247,7 @@ export const MODELS = {
4247
4247
  headers: { "User-Agent": "GitHubCopilotChat/0.35.0", "Editor-Version": "vscode/1.107.0", "Editor-Plugin-Version": "copilot-chat/0.35.0", "Copilot-Integration-Id": "vscode-chat" },
4248
4248
  compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
4249
4249
  reasoning: true,
4250
- thinkingLevelMap: { "xhigh": "xhigh" },
4250
+ thinkingLevelMap: { "xhigh": "xhigh", "minimal": "low" },
4251
4251
  input: ["text", "image"],
4252
4252
  cost: {
4253
4253
  input: 5,
@@ -4305,6 +4305,7 @@ export const MODELS = {
4305
4305
  headers: { "User-Agent": "GitHubCopilotChat/0.35.0", "Editor-Version": "vscode/1.107.0", "Editor-Plugin-Version": "copilot-chat/0.35.0", "Copilot-Integration-Id": "vscode-chat" },
4306
4306
  compat: { "forceAdaptiveThinking": true },
4307
4307
  reasoning: true,
4308
+ thinkingLevelMap: { "minimal": "low", "xhigh": "max" },
4308
4309
  input: ["text", "image"],
4309
4310
  cost: {
4310
4311
  input: 3,
@@ -4562,25 +4563,6 @@ export const MODELS = {
4562
4563
  contextWindow: 400000,
4563
4564
  maxTokens: 128000,
4564
4565
  },
4565
- "raptor-mini": {
4566
- id: "raptor-mini",
4567
- name: "Raptor mini",
4568
- api: "openai-completions",
4569
- provider: "github-copilot",
4570
- baseUrl: "https://api.individual.githubcopilot.com",
4571
- headers: { "User-Agent": "GitHubCopilotChat/0.35.0", "Editor-Version": "vscode/1.107.0", "Editor-Plugin-Version": "copilot-chat/0.35.0", "Copilot-Integration-Id": "vscode-chat" },
4572
- compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false },
4573
- reasoning: true,
4574
- input: ["text", "image"],
4575
- cost: {
4576
- input: 0.25,
4577
- output: 2,
4578
- cacheRead: 0.025,
4579
- cacheWrite: 0,
4580
- },
4581
- contextWindow: 400000,
4582
- maxTokens: 128000,
4583
- },
4584
4566
  },
4585
4567
  "google": {
4586
4568
  "gemini-2.0-flash": {
@@ -4801,11 +4783,12 @@ export const MODELS = {
4801
4783
  provider: "google",
4802
4784
  baseUrl: "https://generativelanguage.googleapis.com/v1beta",
4803
4785
  reasoning: true,
4786
+ thinkingLevelMap: { "off": null },
4804
4787
  input: ["text", "image"],
4805
4788
  cost: {
4806
- input: 0.3,
4807
- output: 2.5,
4808
- cacheRead: 0.075,
4789
+ input: 1.5,
4790
+ output: 9,
4791
+ cacheRead: 0.15,
4809
4792
  cacheWrite: 0,
4810
4793
  },
4811
4794
  contextWindow: 1048576,
@@ -4818,10 +4801,11 @@ export const MODELS = {
4818
4801
  provider: "google",
4819
4802
  baseUrl: "https://generativelanguage.googleapis.com/v1beta",
4820
4803
  reasoning: true,
4804
+ thinkingLevelMap: { "off": null },
4821
4805
  input: ["text", "image"],
4822
4806
  cost: {
4823
- input: 0.1,
4824
- output: 0.4,
4807
+ input: 0.25,
4808
+ output: 1.5,
4825
4809
  cacheRead: 0.025,
4826
4810
  cacheWrite: 0,
4827
4811
  },
@@ -4864,132 +4848,11 @@ export const MODELS = {
4864
4848
  contextWindow: 262144,
4865
4849
  maxTokens: 32768,
4866
4850
  },
4867
- "gemma-4-E2B-it": {
4868
- id: "gemma-4-E2B-it",
4869
- name: "Gemma 4 E2B IT",
4870
- api: "google-generative-ai",
4871
- provider: "google",
4872
- baseUrl: "https://generativelanguage.googleapis.com/v1beta",
4873
- reasoning: true,
4874
- thinkingLevelMap: { "off": null, "minimal": "MINIMAL", "low": null, "medium": null, "high": "HIGH" },
4875
- input: ["text", "image"],
4876
- cost: {
4877
- input: 0,
4878
- output: 0,
4879
- cacheRead: 0,
4880
- cacheWrite: 0,
4881
- },
4882
- contextWindow: 131072,
4883
- maxTokens: 8192,
4884
- },
4885
- "gemma-4-E4B-it": {
4886
- id: "gemma-4-E4B-it",
4887
- name: "Gemma 4 E4B IT",
4888
- api: "google-generative-ai",
4889
- provider: "google",
4890
- baseUrl: "https://generativelanguage.googleapis.com/v1beta",
4891
- reasoning: true,
4892
- thinkingLevelMap: { "off": null, "minimal": "MINIMAL", "low": null, "medium": null, "high": "HIGH" },
4893
- input: ["text", "image"],
4894
- cost: {
4895
- input: 0,
4896
- output: 0,
4897
- cacheRead: 0,
4898
- cacheWrite: 0,
4899
- },
4900
- contextWindow: 131072,
4901
- maxTokens: 8192,
4902
- },
4903
4851
  },
4904
4852
  "google-vertex": {
4905
- "gemini-1.5-flash": {
4906
- id: "gemini-1.5-flash",
4907
- name: "Gemini 1.5 Flash (Vertex)",
4908
- api: "google-vertex",
4909
- provider: "google-vertex",
4910
- baseUrl: "https://{location}-aiplatform.googleapis.com",
4911
- reasoning: false,
4912
- input: ["text", "image"],
4913
- cost: {
4914
- input: 0.075,
4915
- output: 0.3,
4916
- cacheRead: 0.01875,
4917
- cacheWrite: 0,
4918
- },
4919
- contextWindow: 1000000,
4920
- maxTokens: 8192,
4921
- },
4922
- "gemini-1.5-flash-8b": {
4923
- id: "gemini-1.5-flash-8b",
4924
- name: "Gemini 1.5 Flash-8B (Vertex)",
4925
- api: "google-vertex",
4926
- provider: "google-vertex",
4927
- baseUrl: "https://{location}-aiplatform.googleapis.com",
4928
- reasoning: false,
4929
- input: ["text", "image"],
4930
- cost: {
4931
- input: 0.0375,
4932
- output: 0.15,
4933
- cacheRead: 0.01,
4934
- cacheWrite: 0,
4935
- },
4936
- contextWindow: 1000000,
4937
- maxTokens: 8192,
4938
- },
4939
- "gemini-1.5-pro": {
4940
- id: "gemini-1.5-pro",
4941
- name: "Gemini 1.5 Pro (Vertex)",
4942
- api: "google-vertex",
4943
- provider: "google-vertex",
4944
- baseUrl: "https://{location}-aiplatform.googleapis.com",
4945
- reasoning: false,
4946
- input: ["text", "image"],
4947
- cost: {
4948
- input: 1.25,
4949
- output: 5,
4950
- cacheRead: 0.3125,
4951
- cacheWrite: 0,
4952
- },
4953
- contextWindow: 1000000,
4954
- maxTokens: 8192,
4955
- },
4956
- "gemini-2.0-flash": {
4957
- id: "gemini-2.0-flash",
4958
- name: "Gemini 2.0 Flash (Vertex)",
4959
- api: "google-vertex",
4960
- provider: "google-vertex",
4961
- baseUrl: "https://{location}-aiplatform.googleapis.com",
4962
- reasoning: false,
4963
- input: ["text", "image"],
4964
- cost: {
4965
- input: 0.15,
4966
- output: 0.6,
4967
- cacheRead: 0.0375,
4968
- cacheWrite: 0,
4969
- },
4970
- contextWindow: 1048576,
4971
- maxTokens: 8192,
4972
- },
4973
- "gemini-2.0-flash-lite": {
4974
- id: "gemini-2.0-flash-lite",
4975
- name: "Gemini 2.0 Flash Lite (Vertex)",
4976
- api: "google-vertex",
4977
- provider: "google-vertex",
4978
- baseUrl: "https://{location}-aiplatform.googleapis.com",
4979
- reasoning: true,
4980
- input: ["text", "image"],
4981
- cost: {
4982
- input: 0.075,
4983
- output: 0.3,
4984
- cacheRead: 0.01875,
4985
- cacheWrite: 0,
4986
- },
4987
- contextWindow: 1048576,
4988
- maxTokens: 65536,
4989
- },
4990
4853
  "gemini-2.5-flash": {
4991
4854
  id: "gemini-2.5-flash",
4992
- name: "Gemini 2.5 Flash (Vertex)",
4855
+ name: "Gemini 2.5 Flash",
4993
4856
  api: "google-vertex",
4994
4857
  provider: "google-vertex",
4995
4858
  baseUrl: "https://{location}-aiplatform.googleapis.com",
@@ -5006,24 +4869,7 @@ export const MODELS = {
5006
4869
  },
5007
4870
  "gemini-2.5-flash-lite": {
5008
4871
  id: "gemini-2.5-flash-lite",
5009
- name: "Gemini 2.5 Flash Lite (Vertex)",
5010
- api: "google-vertex",
5011
- provider: "google-vertex",
5012
- baseUrl: "https://{location}-aiplatform.googleapis.com",
5013
- reasoning: true,
5014
- input: ["text", "image"],
5015
- cost: {
5016
- input: 0.1,
5017
- output: 0.4,
5018
- cacheRead: 0.01,
5019
- cacheWrite: 0,
5020
- },
5021
- contextWindow: 1048576,
5022
- maxTokens: 65536,
5023
- },
5024
- "gemini-2.5-flash-lite-preview-09-2025": {
5025
- id: "gemini-2.5-flash-lite-preview-09-2025",
5026
- name: "Gemini 2.5 Flash Lite Preview 09-25 (Vertex)",
4872
+ name: "Gemini 2.5 Flash-Lite",
5027
4873
  api: "google-vertex",
5028
4874
  provider: "google-vertex",
5029
4875
  baseUrl: "https://{location}-aiplatform.googleapis.com",
@@ -5040,7 +4886,7 @@ export const MODELS = {
5040
4886
  },
5041
4887
  "gemini-2.5-pro": {
5042
4888
  id: "gemini-2.5-pro",
5043
- name: "Gemini 2.5 Pro (Vertex)",
4889
+ name: "Gemini 2.5 Pro",
5044
4890
  api: "google-vertex",
5045
4891
  provider: "google-vertex",
5046
4892
  baseUrl: "https://{location}-aiplatform.googleapis.com",
@@ -5057,7 +4903,7 @@ export const MODELS = {
5057
4903
  },
5058
4904
  "gemini-3-flash-preview": {
5059
4905
  id: "gemini-3-flash-preview",
5060
- name: "Gemini 3 Flash Preview (Vertex)",
4906
+ name: "Gemini 3 Flash Preview",
5061
4907
  api: "google-vertex",
5062
4908
  provider: "google-vertex",
5063
4909
  baseUrl: "https://{location}-aiplatform.googleapis.com",
@@ -5073,27 +4919,27 @@ export const MODELS = {
5073
4919
  contextWindow: 1048576,
5074
4920
  maxTokens: 65536,
5075
4921
  },
5076
- "gemini-3-pro-preview": {
5077
- id: "gemini-3-pro-preview",
5078
- name: "Gemini 3 Pro Preview (Vertex)",
4922
+ "gemini-3.1-flash-lite": {
4923
+ id: "gemini-3.1-flash-lite",
4924
+ name: "Gemini 3.1 Flash Lite",
5079
4925
  api: "google-vertex",
5080
4926
  provider: "google-vertex",
5081
4927
  baseUrl: "https://{location}-aiplatform.googleapis.com",
5082
4928
  reasoning: true,
5083
- thinkingLevelMap: { "off": null, "minimal": null, "low": "LOW", "medium": null, "high": "HIGH" },
4929
+ thinkingLevelMap: { "off": null },
5084
4930
  input: ["text", "image"],
5085
4931
  cost: {
5086
- input: 2,
5087
- output: 12,
5088
- cacheRead: 0.2,
4932
+ input: 0.25,
4933
+ output: 1.5,
4934
+ cacheRead: 0.025,
5089
4935
  cacheWrite: 0,
5090
4936
  },
5091
- contextWindow: 1000000,
5092
- maxTokens: 64000,
4937
+ contextWindow: 1048576,
4938
+ maxTokens: 65536,
5093
4939
  },
5094
4940
  "gemini-3.1-pro-preview": {
5095
4941
  id: "gemini-3.1-pro-preview",
5096
- name: "Gemini 3.1 Pro Preview (Vertex)",
4942
+ name: "Gemini 3.1 Pro Preview",
5097
4943
  api: "google-vertex",
5098
4944
  provider: "google-vertex",
5099
4945
  baseUrl: "https://{location}-aiplatform.googleapis.com",
@@ -5111,7 +4957,7 @@ export const MODELS = {
5111
4957
  },
5112
4958
  "gemini-3.1-pro-preview-customtools": {
5113
4959
  id: "gemini-3.1-pro-preview-customtools",
5114
- name: "Gemini 3.1 Pro Preview Custom Tools (Vertex)",
4960
+ name: "Gemini 3.1 Pro Preview Custom Tools",
5115
4961
  api: "google-vertex",
5116
4962
  provider: "google-vertex",
5117
4963
  baseUrl: "https://{location}-aiplatform.googleapis.com",
@@ -5127,6 +4973,60 @@ export const MODELS = {
5127
4973
  contextWindow: 1048576,
5128
4974
  maxTokens: 65536,
5129
4975
  },
4976
+ "gemini-3.5-flash": {
4977
+ id: "gemini-3.5-flash",
4978
+ name: "Gemini 3.5 Flash",
4979
+ api: "google-vertex",
4980
+ provider: "google-vertex",
4981
+ baseUrl: "https://{location}-aiplatform.googleapis.com",
4982
+ reasoning: true,
4983
+ thinkingLevelMap: { "off": null },
4984
+ input: ["text", "image"],
4985
+ cost: {
4986
+ input: 1.5,
4987
+ output: 9,
4988
+ cacheRead: 0.15,
4989
+ cacheWrite: 0,
4990
+ },
4991
+ contextWindow: 1048576,
4992
+ maxTokens: 65536,
4993
+ },
4994
+ "gemini-flash-latest": {
4995
+ id: "gemini-flash-latest",
4996
+ name: "Gemini Flash Latest",
4997
+ api: "google-vertex",
4998
+ provider: "google-vertex",
4999
+ baseUrl: "https://{location}-aiplatform.googleapis.com",
5000
+ reasoning: true,
5001
+ thinkingLevelMap: { "off": null },
5002
+ input: ["text", "image"],
5003
+ cost: {
5004
+ input: 1.5,
5005
+ output: 9,
5006
+ cacheRead: 0.15,
5007
+ cacheWrite: 0,
5008
+ },
5009
+ contextWindow: 1048576,
5010
+ maxTokens: 65536,
5011
+ },
5012
+ "gemini-flash-lite-latest": {
5013
+ id: "gemini-flash-lite-latest",
5014
+ name: "Gemini Flash-Lite Latest",
5015
+ api: "google-vertex",
5016
+ provider: "google-vertex",
5017
+ baseUrl: "https://{location}-aiplatform.googleapis.com",
5018
+ reasoning: true,
5019
+ thinkingLevelMap: { "off": null },
5020
+ input: ["text", "image"],
5021
+ cost: {
5022
+ input: 0.25,
5023
+ output: 1.5,
5024
+ cacheRead: 0.025,
5025
+ cacheWrite: 0,
5026
+ },
5027
+ contextWindow: 1048576,
5028
+ maxTokens: 65536,
5029
+ },
5130
5030
  },
5131
5031
  "groq": {
5132
5032
  "llama-3.1-8b-instant": {
@@ -6457,6 +6357,7 @@ export const MODELS = {
6457
6357
  baseUrl: "https://api.moonshot.ai/v1",
6458
6358
  compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "thinkingFormat": "deepseek" },
6459
6359
  reasoning: true,
6360
+ thinkingLevelMap: { "off": null },
6460
6361
  input: ["text", "image"],
6461
6362
  cost: {
6462
6363
  input: 0.95,
@@ -6475,6 +6376,7 @@ export const MODELS = {
6475
6376
  baseUrl: "https://api.moonshot.ai/v1",
6476
6377
  compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "thinkingFormat": "deepseek" },
6477
6378
  reasoning: true,
6379
+ thinkingLevelMap: { "off": null },
6478
6380
  input: ["text", "image"],
6479
6381
  cost: {
6480
6382
  input: 1.9,
@@ -6621,6 +6523,7 @@ export const MODELS = {
6621
6523
  baseUrl: "https://api.moonshot.cn/v1",
6622
6524
  compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "thinkingFormat": "deepseek" },
6623
6525
  reasoning: true,
6526
+ thinkingLevelMap: { "off": null },
6624
6527
  input: ["text", "image"],
6625
6528
  cost: {
6626
6529
  input: 0.95,
@@ -6639,6 +6542,7 @@ export const MODELS = {
6639
6542
  baseUrl: "https://api.moonshot.cn/v1",
6640
6543
  compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "thinkingFormat": "deepseek" },
6641
6544
  reasoning: true,
6545
+ thinkingLevelMap: { "off": null },
6642
6546
  input: ["text", "image"],
6643
6547
  cost: {
6644
6548
  input: 1.9,
@@ -8012,7 +7916,7 @@ export const MODELS = {
8012
7916
  api: "openai-completions",
8013
7917
  provider: "opencode",
8014
7918
  baseUrl: "https://opencode.ai/zen/v1",
8015
- compat: { "maxTokensField": "max_tokens", "supportsLongCacheRetention": false, "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
7919
+ compat: { "maxTokensField": "max_tokens", "supportsLongCacheRetention": false, "requiresReasoningContentOnAssistantMessages": true },
8016
7920
  reasoning: true,
8017
7921
  thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "max" },
8018
7922
  input: ["text"],
@@ -8031,7 +7935,7 @@ export const MODELS = {
8031
7935
  api: "openai-completions",
8032
7936
  provider: "opencode",
8033
7937
  baseUrl: "https://opencode.ai/zen/v1",
8034
- compat: { "maxTokensField": "max_tokens", "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
7938
+ compat: { "maxTokensField": "max_tokens", "requiresReasoningContentOnAssistantMessages": true },
8035
7939
  reasoning: true,
8036
7940
  thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "max" },
8037
7941
  input: ["text"],
@@ -8050,7 +7954,7 @@ export const MODELS = {
8050
7954
  api: "openai-completions",
8051
7955
  provider: "opencode",
8052
7956
  baseUrl: "https://opencode.ai/zen/v1",
8053
- compat: { "maxTokensField": "max_tokens", "supportsLongCacheRetention": false, "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
7957
+ compat: { "maxTokensField": "max_tokens", "supportsLongCacheRetention": false, "requiresReasoningContentOnAssistantMessages": true },
8054
7958
  reasoning: true,
8055
7959
  thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "max" },
8056
7960
  input: ["text"],
@@ -8660,9 +8564,9 @@ export const MODELS = {
8660
8564
  contextWindow: 1000000,
8661
8565
  maxTokens: 384000,
8662
8566
  },
8663
- "glm-5": {
8664
- id: "glm-5",
8665
- name: "GLM-5",
8567
+ "glm-5.1": {
8568
+ id: "glm-5.1",
8569
+ name: "GLM-5.1",
8666
8570
  api: "openai-completions",
8667
8571
  provider: "opencode-go",
8668
8572
  baseUrl: "https://opencode.ai/zen/go/v1",
@@ -8670,17 +8574,17 @@ export const MODELS = {
8670
8574
  reasoning: true,
8671
8575
  input: ["text"],
8672
8576
  cost: {
8673
- input: 1,
8674
- output: 3.2,
8675
- cacheRead: 0.2,
8577
+ input: 1.4,
8578
+ output: 4.4,
8579
+ cacheRead: 0.26,
8676
8580
  cacheWrite: 0,
8677
8581
  },
8678
8582
  contextWindow: 202752,
8679
8583
  maxTokens: 32768,
8680
8584
  },
8681
- "glm-5.1": {
8682
- id: "glm-5.1",
8683
- name: "GLM-5.1",
8585
+ "glm-5.2": {
8586
+ id: "glm-5.2",
8587
+ name: "GLM-5.2",
8684
8588
  api: "openai-completions",
8685
8589
  provider: "opencode-go",
8686
8590
  baseUrl: "https://opencode.ai/zen/go/v1",
@@ -8693,8 +8597,8 @@ export const MODELS = {
8693
8597
  cacheRead: 0.26,
8694
8598
  cacheWrite: 0,
8695
8599
  },
8696
- contextWindow: 202752,
8697
- maxTokens: 32768,
8600
+ contextWindow: 1000000,
8601
+ maxTokens: 131072,
8698
8602
  },
8699
8603
  "kimi-k2.6": {
8700
8604
  id: "kimi-k2.6",
@@ -9247,13 +9151,13 @@ export const MODELS = {
9247
9151
  reasoning: true,
9248
9152
  input: ["text"],
9249
9153
  cost: {
9250
- input: 0.22,
9251
- output: 0.85,
9154
+ input: 0.25,
9155
+ output: 0.8,
9252
9156
  cacheRead: 0.06,
9253
9157
  cacheWrite: 0,
9254
9158
  },
9255
9159
  contextWindow: 262144,
9256
- maxTokens: 262144,
9160
+ maxTokens: 80000,
9257
9161
  },
9258
9162
  "arcee-ai/trinity-mini": {
9259
9163
  id: "arcee-ai/trinity-mini",
@@ -9408,6 +9312,23 @@ export const MODELS = {
9408
9312
  contextWindow: 128000,
9409
9313
  maxTokens: 4000,
9410
9314
  },
9315
+ "cohere/north-mini-code:free": {
9316
+ id: "cohere/north-mini-code:free",
9317
+ name: "Cohere: North Mini Code (free)",
9318
+ api: "openai-completions",
9319
+ provider: "openrouter",
9320
+ baseUrl: "https://openrouter.ai/api/v1",
9321
+ reasoning: true,
9322
+ input: ["text"],
9323
+ cost: {
9324
+ input: 0,
9325
+ output: 0,
9326
+ cacheRead: 0,
9327
+ cacheWrite: 0,
9328
+ },
9329
+ contextWindow: 256000,
9330
+ maxTokens: 64000,
9331
+ },
9411
9332
  "deepseek/deepseek-chat": {
9412
9333
  id: "deepseek/deepseek-chat",
9413
9334
  name: "DeepSeek: DeepSeek V3",
@@ -9716,7 +9637,24 @@ export const MODELS = {
9716
9637
  cacheWrite: 0.083333,
9717
9638
  },
9718
9639
  contextWindow: 1048576,
9719
- maxTokens: 65536,
9640
+ maxTokens: 65535,
9641
+ },
9642
+ "google/gemini-3-pro-image": {
9643
+ id: "google/gemini-3-pro-image",
9644
+ name: "Google: Nano Banana Pro (Gemini 3 Pro Image)",
9645
+ api: "openai-completions",
9646
+ provider: "openrouter",
9647
+ baseUrl: "https://openrouter.ai/api/v1",
9648
+ reasoning: true,
9649
+ input: ["text", "image"],
9650
+ cost: {
9651
+ input: 2,
9652
+ output: 12,
9653
+ cacheRead: 0.2,
9654
+ cacheWrite: 0.375,
9655
+ },
9656
+ contextWindow: 131072,
9657
+ maxTokens: 32768,
9720
9658
  },
9721
9659
  "google/gemini-3.1-flash-lite": {
9722
9660
  id: "google/gemini-3.1-flash-lite",
@@ -10005,8 +9943,25 @@ export const MODELS = {
10005
9943
  cacheRead: 0.06,
10006
9944
  cacheWrite: 0,
10007
9945
  },
10008
- contextWindow: 256000,
10009
- maxTokens: 80000,
9946
+ contextWindow: 262144,
9947
+ maxTokens: 144000,
9948
+ },
9949
+ "liquid/lfm-2.5-1.2b-thinking:free": {
9950
+ id: "liquid/lfm-2.5-1.2b-thinking:free",
9951
+ name: "LiquidAI: LFM2.5-1.2B-Thinking (free)",
9952
+ api: "openai-completions",
9953
+ provider: "openrouter",
9954
+ baseUrl: "https://openrouter.ai/api/v1",
9955
+ reasoning: true,
9956
+ input: ["text"],
9957
+ cost: {
9958
+ input: 0,
9959
+ output: 0,
9960
+ cacheRead: 0,
9961
+ cacheWrite: 0,
9962
+ },
9963
+ contextWindow: 32768,
9964
+ maxTokens: 4096,
10010
9965
  },
10011
9966
  "meta-llama/llama-3.1-70b-instruct": {
10012
9967
  id: "meta-llama/llama-3.1-70b-instruct",
@@ -10210,7 +10165,7 @@ export const MODELS = {
10210
10165
  cacheWrite: 0,
10211
10166
  },
10212
10167
  contextWindow: 1048576,
10213
- maxTokens: 512000,
10168
+ maxTokens: 4096,
10214
10169
  },
10215
10170
  "mistralai/codestral-2508": {
10216
10171
  id: "mistralai/codestral-2508",
@@ -10546,7 +10501,7 @@ export const MODELS = {
10546
10501
  cost: {
10547
10502
  input: 0.6,
10548
10503
  output: 2.5,
10549
- cacheRead: 0,
10504
+ cacheRead: 0.6,
10550
10505
  cacheWrite: 0,
10551
10506
  },
10552
10507
  contextWindow: 262144,
@@ -10579,9 +10534,9 @@ export const MODELS = {
10579
10534
  reasoning: true,
10580
10535
  input: ["text", "image"],
10581
10536
  cost: {
10582
- input: 0.68,
10583
- output: 3.41,
10584
- cacheRead: 0.34,
10537
+ input: 0.66,
10538
+ output: 3.5,
10539
+ cacheRead: 0.33,
10585
10540
  cacheWrite: 0,
10586
10541
  },
10587
10542
  contextWindow: 262144,
@@ -10596,13 +10551,13 @@ export const MODELS = {
10596
10551
  reasoning: true,
10597
10552
  input: ["text", "image"],
10598
10553
  cost: {
10599
- input: 0.74,
10600
- output: 3.5,
10601
- cacheRead: 0.15,
10554
+ input: 0.612,
10555
+ output: 3.069,
10556
+ cacheRead: 0.1296,
10602
10557
  cacheWrite: 0,
10603
10558
  },
10604
10559
  contextWindow: 262144,
10605
- maxTokens: 16384,
10560
+ maxTokens: 262144,
10606
10561
  },
10607
10562
  "nex-agi/nex-n2-pro:free": {
10608
10563
  id: "nex-agi/nex-n2-pro:free",
@@ -10925,7 +10880,7 @@ export const MODELS = {
10925
10880
  cacheWrite: 0,
10926
10881
  },
10927
10882
  contextWindow: 1047576,
10928
- maxTokens: 32768,
10883
+ maxTokens: 4096,
10929
10884
  },
10930
10885
  "openai/gpt-4.1-nano": {
10931
10886
  id: "openai/gpt-4.1-nano",
@@ -10955,7 +10910,7 @@ export const MODELS = {
10955
10910
  cost: {
10956
10911
  input: 2.5,
10957
10912
  output: 10,
10958
- cacheRead: 0,
10913
+ cacheRead: 1.25,
10959
10914
  cacheWrite: 0,
10960
10915
  },
10961
10916
  contextWindow: 128000,
@@ -11091,11 +11046,11 @@ export const MODELS = {
11091
11046
  cost: {
11092
11047
  input: 0.25,
11093
11048
  output: 2,
11094
- cacheRead: 0.025,
11049
+ cacheRead: 0.03,
11095
11050
  cacheWrite: 0,
11096
11051
  },
11097
11052
  contextWindow: 400000,
11098
- maxTokens: 128000,
11053
+ maxTokens: 4096,
11099
11054
  },
11100
11055
  "openai/gpt-5-nano": {
11101
11056
  id: "openai/gpt-5-nano",
@@ -11159,11 +11114,11 @@ export const MODELS = {
11159
11114
  cost: {
11160
11115
  input: 1.25,
11161
11116
  output: 10,
11162
- cacheRead: 0.13,
11117
+ cacheRead: 0.125,
11163
11118
  cacheWrite: 0,
11164
11119
  },
11165
11120
  contextWindow: 128000,
11166
- maxTokens: 32000,
11121
+ maxTokens: 16384,
11167
11122
  },
11168
11123
  "openai/gpt-5.1-codex": {
11169
11124
  id: "openai/gpt-5.1-codex",
@@ -11250,7 +11205,7 @@ export const MODELS = {
11250
11205
  cacheWrite: 0,
11251
11206
  },
11252
11207
  contextWindow: 128000,
11253
- maxTokens: 16384,
11208
+ maxTokens: 32000,
11254
11209
  },
11255
11210
  "openai/gpt-5.2-codex": {
11256
11211
  id: "openai/gpt-5.2-codex",
@@ -11549,7 +11504,7 @@ export const MODELS = {
11549
11504
  cacheWrite: 0,
11550
11505
  },
11551
11506
  contextWindow: 131072,
11552
- maxTokens: 8192,
11507
+ maxTokens: 32768,
11553
11508
  },
11554
11509
  "openai/gpt-oss-safeguard-20b": {
11555
11510
  id: "openai/gpt-oss-safeguard-20b",
@@ -11562,7 +11517,7 @@ export const MODELS = {
11562
11517
  cost: {
11563
11518
  input: 0.075,
11564
11519
  output: 0.3,
11565
- cacheRead: 0.037,
11520
+ cacheRead: 0.0375,
11566
11521
  cacheWrite: 0,
11567
11522
  },
11568
11523
  contextWindow: 131072,
@@ -11772,6 +11727,23 @@ export const MODELS = {
11772
11727
  contextWindow: 1048756,
11773
11728
  maxTokens: 262144,
11774
11729
  },
11730
+ "poolside/laguna-m.1": {
11731
+ id: "poolside/laguna-m.1",
11732
+ name: "Poolside: Laguna M.1",
11733
+ api: "openai-completions",
11734
+ provider: "openrouter",
11735
+ baseUrl: "https://openrouter.ai/api/v1",
11736
+ reasoning: true,
11737
+ input: ["text"],
11738
+ cost: {
11739
+ input: 0.2,
11740
+ output: 0.4,
11741
+ cacheRead: 0.1,
11742
+ cacheWrite: 0,
11743
+ },
11744
+ contextWindow: 262144,
11745
+ maxTokens: 32768,
11746
+ },
11775
11747
  "poolside/laguna-m.1:free": {
11776
11748
  id: "poolside/laguna-m.1:free",
11777
11749
  name: "Poolside: Laguna M.1 (free)",
@@ -11789,6 +11761,23 @@ export const MODELS = {
11789
11761
  contextWindow: 262144,
11790
11762
  maxTokens: 32768,
11791
11763
  },
11764
+ "poolside/laguna-xs.2": {
11765
+ id: "poolside/laguna-xs.2",
11766
+ name: "Poolside: Laguna XS.2",
11767
+ api: "openai-completions",
11768
+ provider: "openrouter",
11769
+ baseUrl: "https://openrouter.ai/api/v1",
11770
+ reasoning: true,
11771
+ input: ["text"],
11772
+ cost: {
11773
+ input: 0.1,
11774
+ output: 0.2,
11775
+ cacheRead: 0.05,
11776
+ cacheWrite: 0,
11777
+ },
11778
+ contextWindow: 262144,
11779
+ maxTokens: 32768,
11780
+ },
11792
11781
  "poolside/laguna-xs.2:free": {
11793
11782
  id: "poolside/laguna-xs.2:free",
11794
11783
  name: "Poolside: Laguna XS.2 (free)",
@@ -11840,6 +11829,23 @@ export const MODELS = {
11840
11829
  contextWindow: 131072,
11841
11830
  maxTokens: 16384,
11842
11831
  },
11832
+ "qwen/qwen-2.5-7b-instruct": {
11833
+ id: "qwen/qwen-2.5-7b-instruct",
11834
+ name: "Qwen: Qwen2.5 7B Instruct",
11835
+ api: "openai-completions",
11836
+ provider: "openrouter",
11837
+ baseUrl: "https://openrouter.ai/api/v1",
11838
+ reasoning: false,
11839
+ input: ["text"],
11840
+ cost: {
11841
+ input: 0.04,
11842
+ output: 0.1,
11843
+ cacheRead: 0,
11844
+ cacheWrite: 0,
11845
+ },
11846
+ contextWindow: 131072,
11847
+ maxTokens: 32768,
11848
+ },
11843
11849
  "qwen/qwen-plus": {
11844
11850
  id: "qwen/qwen-plus",
11845
11851
  name: "Qwen: Qwen-Plus",
@@ -12432,8 +12438,8 @@ export const MODELS = {
12432
12438
  cacheRead: 0,
12433
12439
  cacheWrite: 0,
12434
12440
  },
12435
- contextWindow: 262144,
12436
- maxTokens: 262144,
12441
+ contextWindow: 256000,
12442
+ maxTokens: 32768,
12437
12443
  },
12438
12444
  "qwen/qwen3.5-flash-02-23": {
12439
12445
  id: "qwen/qwen3.5-flash-02-23",
@@ -12512,9 +12518,9 @@ export const MODELS = {
12512
12518
  reasoning: true,
12513
12519
  input: ["text", "image"],
12514
12520
  cost: {
12515
- input: 0.15,
12521
+ input: 0.14,
12516
12522
  output: 1,
12517
- cacheRead: 0.05,
12523
+ cacheRead: 0,
12518
12524
  cacheWrite: 0,
12519
12525
  },
12520
12526
  contextWindow: 262144,
@@ -12699,13 +12705,13 @@ export const MODELS = {
12699
12705
  reasoning: true,
12700
12706
  input: ["text"],
12701
12707
  cost: {
12702
- input: 0.066,
12703
- output: 0.26,
12704
- cacheRead: 0.029,
12708
+ input: 0.063,
12709
+ output: 0.21,
12710
+ cacheRead: 0.021,
12705
12711
  cacheWrite: 0,
12706
12712
  },
12707
12713
  contextWindow: 262144,
12708
- maxTokens: 262144,
12714
+ maxTokens: 4096,
12709
12715
  },
12710
12716
  "thedrummer/rocinante-12b": {
12711
12717
  id: "thedrummer/rocinante-12b",
@@ -12809,23 +12815,6 @@ export const MODELS = {
12809
12815
  contextWindow: 256000,
12810
12816
  maxTokens: 4096,
12811
12817
  },
12812
- "xiaomi/mimo-v2-flash": {
12813
- id: "xiaomi/mimo-v2-flash",
12814
- name: "Xiaomi: MiMo-V2-Flash",
12815
- api: "openai-completions",
12816
- provider: "openrouter",
12817
- baseUrl: "https://openrouter.ai/api/v1",
12818
- reasoning: true,
12819
- input: ["text"],
12820
- cost: {
12821
- input: 0.1,
12822
- output: 0.3,
12823
- cacheRead: 0.01,
12824
- cacheWrite: 0,
12825
- },
12826
- contextWindow: 262144,
12827
- maxTokens: 65536,
12828
- },
12829
12818
  "xiaomi/mimo-v2.5": {
12830
12819
  id: "xiaomi/mimo-v2.5",
12831
12820
  name: "Xiaomi: MiMo-V2.5",
@@ -13039,13 +13028,13 @@ export const MODELS = {
13039
13028
  reasoning: true,
13040
13029
  input: ["text"],
13041
13030
  cost: {
13042
- input: 1.4,
13043
- output: 4.4,
13044
- cacheRead: 0.26,
13031
+ input: 1.2,
13032
+ output: 4.1,
13033
+ cacheRead: 0.2,
13045
13034
  cacheWrite: 0,
13046
13035
  },
13047
13036
  contextWindow: 1048576,
13048
- maxTokens: 262144,
13037
+ maxTokens: 131072,
13049
13038
  },
13050
13039
  "~anthropic/claude-fable-latest": {
13051
13040
  id: "~anthropic/claude-fable-latest",
@@ -13158,9 +13147,9 @@ export const MODELS = {
13158
13147
  reasoning: true,
13159
13148
  input: ["text", "image"],
13160
13149
  cost: {
13161
- input: 0.68,
13162
- output: 3.41,
13163
- cacheRead: 0.34,
13150
+ input: 0.66,
13151
+ output: 3.5,
13152
+ cacheRead: 0.33,
13164
13153
  cacheWrite: 0,
13165
13154
  },
13166
13155
  contextWindow: 262144,
@@ -15004,13 +14993,13 @@ export const MODELS = {
15004
14993
  reasoning: false,
15005
14994
  input: ["text"],
15006
14995
  cost: {
15007
- input: 0.02,
15008
- output: 0.04,
14996
+ input: 0.15,
14997
+ output: 0.15,
15009
14998
  cacheRead: 0,
15010
14999
  cacheWrite: 0,
15011
15000
  },
15012
- contextWindow: 131072,
15013
- maxTokens: 131072,
15001
+ contextWindow: 128000,
15002
+ maxTokens: 128000,
15014
15003
  },
15015
15004
  "mistral/mistral-small": {
15016
15005
  id: "mistral/mistral-small",
@@ -15163,7 +15152,7 @@ export const MODELS = {
15163
15152
  cacheWrite: 0,
15164
15153
  },
15165
15154
  contextWindow: 262144,
15166
- maxTokens: 262144,
15155
+ maxTokens: 32768,
15167
15156
  },
15168
15157
  "nvidia/nemotron-3-super-120b-a12b": {
15169
15158
  id: "nvidia/nemotron-3-super-120b-a12b",
@@ -15936,8 +15925,8 @@ export const MODELS = {
15936
15925
  cost: {
15937
15926
  input: 0.09,
15938
15927
  output: 0.3,
15939
- cacheRead: 0,
15940
- cacheWrite: 0.02,
15928
+ cacheRead: 0.02,
15929
+ cacheWrite: 0,
15941
15930
  },
15942
15931
  contextWindow: 262114,
15943
15932
  maxTokens: 262114,
@@ -16410,9 +16399,9 @@ export const MODELS = {
16410
16399
  reasoning: true,
16411
16400
  input: ["text"],
16412
16401
  cost: {
16413
- input: 1.4,
16414
- output: 4.4,
16415
- cacheRead: 0.26,
16402
+ input: 1.5,
16403
+ output: 4.5,
16404
+ cacheRead: 0.3,
16416
16405
  cacheWrite: 0,
16417
16406
  },
16418
16407
  contextWindow: 1000000,
@@ -17022,8 +17011,9 @@ export const MODELS = {
17022
17011
  api: "openai-completions",
17023
17012
  provider: "zai",
17024
17013
  baseUrl: "https://api.z.ai/api/coding/paas/v4",
17025
- compat: { "supportsDeveloperRole": false, "thinkingFormat": "zai", "zaiToolStream": true },
17014
+ compat: { "supportsDeveloperRole": false, "thinkingFormat": "zai", "supportsReasoningEffort": true, "zaiToolStream": true },
17026
17015
  reasoning: true,
17016
+ thinkingLevelMap: { "minimal": null, "low": "high", "medium": "high", "high": "high", "xhigh": "max" },
17027
17017
  input: ["text"],
17028
17018
  cost: {
17029
17019
  input: 0,
@@ -17132,8 +17122,9 @@ export const MODELS = {
17132
17122
  api: "openai-completions",
17133
17123
  provider: "zai-coding-cn",
17134
17124
  baseUrl: "https://open.bigmodel.cn/api/coding/paas/v4",
17135
- compat: { "supportsDeveloperRole": false, "thinkingFormat": "zai", "zaiToolStream": true },
17125
+ compat: { "supportsDeveloperRole": false, "thinkingFormat": "zai", "supportsReasoningEffort": true, "zaiToolStream": true },
17136
17126
  reasoning: true,
17127
+ thinkingLevelMap: { "minimal": null, "low": "high", "medium": "high", "high": "high", "xhigh": "max" },
17137
17128
  input: ["text"],
17138
17129
  cost: {
17139
17130
  input: 0,