@letta-ai/letta-code 0.30.29 → 0.30.30

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 (60) hide show
  1. package/dist/agent-presets.js +55 -2490
  2. package/dist/agent-presets.js.map +4 -4
  3. package/dist/mcp-client.js +2 -2
  4. package/dist/mcp-client.js.map +1 -1
  5. package/dist/types/agent/acting-user.d.ts +21 -0
  6. package/dist/types/agent/acting-user.d.ts.map +1 -0
  7. package/dist/types/agent/available-models.d.ts +2 -0
  8. package/dist/types/agent/available-models.d.ts.map +1 -1
  9. package/dist/types/agent/memory-git.d.ts +1 -11
  10. package/dist/types/agent/memory-git.d.ts.map +1 -1
  11. package/dist/types/agent/message.d.ts +1 -0
  12. package/dist/types/agent/message.d.ts.map +1 -1
  13. package/dist/types/agent/model-catalog.d.ts +14 -52
  14. package/dist/types/agent/model-catalog.d.ts.map +1 -1
  15. package/dist/types/agent/model.d.ts.map +1 -1
  16. package/dist/types/agent/personality-presets.d.ts +1 -1
  17. package/dist/types/agent/personality-presets.d.ts.map +1 -1
  18. package/dist/types/agent/subagents/index.d.ts +1 -1
  19. package/dist/types/agent/subagents/index.d.ts.map +1 -1
  20. package/dist/types/agent/turn-recovery-policy.d.ts +10 -7
  21. package/dist/types/agent/turn-recovery-policy.d.ts.map +1 -1
  22. package/dist/types/agent-presets.d.ts +0 -1
  23. package/dist/types/agent-presets.d.ts.map +1 -1
  24. package/dist/types/backend/api/conversations.d.ts +1 -0
  25. package/dist/types/backend/api/conversations.d.ts.map +1 -1
  26. package/dist/types/backend/backend.d.ts +4 -2
  27. package/dist/types/backend/backend.d.ts.map +1 -1
  28. package/dist/types/backend/local/local-model-config.d.ts +3 -0
  29. package/dist/types/backend/local/local-model-config.d.ts.map +1 -1
  30. package/dist/types/backend/local/system-prompt-compilation.d.ts.map +1 -1
  31. package/dist/types/cli/helpers/stream-processor.d.ts +1 -0
  32. package/dist/types/cli/helpers/stream-processor.d.ts.map +1 -1
  33. package/dist/types/cli/helpers/stream-stall-reconciler.d.ts +2 -1
  34. package/dist/types/cli/helpers/stream-stall-reconciler.d.ts.map +1 -1
  35. package/dist/types/cli/helpers/stream.d.ts +1 -1
  36. package/dist/types/cli/helpers/stream.d.ts.map +1 -1
  37. package/dist/types/reminders/state.d.ts +6 -1
  38. package/dist/types/reminders/state.d.ts.map +1 -1
  39. package/dist/types/tools/impl/bash-output.d.ts +1 -0
  40. package/dist/types/tools/impl/bash-output.d.ts.map +1 -1
  41. package/dist/types/tools/impl/github-pull-request-tracker.d.ts +7 -3
  42. package/dist/types/tools/impl/github-pull-request-tracker.d.ts.map +1 -1
  43. package/dist/types/tools/impl/glob.d.ts +1 -0
  44. package/dist/types/tools/impl/glob.d.ts.map +1 -1
  45. package/dist/types/tools/impl/grep.d.ts +1 -0
  46. package/dist/types/tools/impl/grep.d.ts.map +1 -1
  47. package/dist/types/tools/impl/skill.d.ts.map +1 -1
  48. package/dist/types/tools/impl/task-output.d.ts +1 -0
  49. package/dist/types/tools/impl/task-output.d.ts.map +1 -1
  50. package/dist/types/tools/impl/task.d.ts.map +1 -1
  51. package/dist/types/tools/manager.d.ts.map +1 -1
  52. package/dist/types/tools/toolset.d.ts.map +1 -1
  53. package/dist/types/types/approval-classification-protocol.d.ts +13 -0
  54. package/dist/types/types/approval-classification-protocol.d.ts.map +1 -0
  55. package/dist/types/types/protocol_v2.d.ts +4 -8
  56. package/dist/types/types/protocol_v2.d.ts.map +1 -1
  57. package/letta.js +810 -3034
  58. package/package.json +1 -1
  59. package/scripts/isolated-unit-tests.json +15 -0
  60. package/scripts/source-file-size-baseline.json +6 -6
@@ -1888,2505 +1888,71 @@ async function getDefaultMemoryBlocks() {
1888
1888
  }
1889
1889
  return cachedMemoryBlocks;
1890
1890
  }
1891
- // src/models.json
1892
- var models_default = {
1893
- models: [
1894
- {
1895
- id: "auto",
1896
- isDefault: true,
1897
- handle: "letta/auto",
1898
- label: "Auto",
1899
- description: "Automatically select the best model",
1900
- free: true,
1901
- updateArgs: {
1902
- context_window: 140000,
1903
- max_output_tokens: 28000,
1904
- parallel_tool_calls: true
1905
- },
1906
- isFeatured: true
1907
- },
1908
- {
1909
- id: "auto-fast",
1910
- handle: "letta/auto-fast",
1911
- label: "Auto Fast",
1912
- description: "Automatically select the best fast model",
1913
- free: true,
1914
- updateArgs: {
1915
- context_window: 140000,
1916
- max_output_tokens: 28000,
1917
- parallel_tool_calls: true
1918
- },
1919
- isFeatured: true
1920
- },
1921
- {
1922
- id: "auto-chat",
1923
- handle: "letta/auto-chat",
1924
- label: "Auto Chat",
1925
- description: "Automatically select the best model for chat",
1926
- free: true,
1927
- updateArgs: {
1928
- context_window: 140000,
1929
- max_output_tokens: 28000,
1930
- parallel_tool_calls: true
1931
- },
1932
- isFeatured: true
1933
- },
1934
- {
1935
- id: "glm",
1936
- handle: "letta/glm",
1937
- label: "Letta GLM",
1938
- description: "Route directly to Letta-hosted GLM 5.2",
1939
- free: true,
1940
- updateArgs: {
1941
- context_window: 200000,
1942
- max_output_tokens: 28000,
1943
- parallel_tool_calls: true
1944
- },
1945
- isFeatured: true
1946
- },
1947
- {
1948
- id: "gpt-5.6-sol-none",
1949
- handle: "openai/gpt-5.6-sol",
1950
- label: "GPT-5.6 Sol",
1951
- description: "OpenAI's most capable GPT-5.6 model (no reasoning)",
1952
- updateArgs: {
1953
- reasoning_effort: "none",
1954
- verbosity: "medium",
1955
- context_window: 350000,
1956
- max_output_tokens: 128000,
1957
- parallel_tool_calls: true
1958
- }
1959
- },
1960
- {
1961
- id: "gpt-5.6-sol-low",
1962
- handle: "openai/gpt-5.6-sol",
1963
- label: "GPT-5.6 Sol",
1964
- description: "OpenAI's most capable GPT-5.6 model (low reasoning)",
1965
- updateArgs: {
1966
- reasoning_effort: "low",
1967
- verbosity: "medium",
1968
- context_window: 350000,
1969
- max_output_tokens: 128000,
1970
- parallel_tool_calls: true
1971
- }
1972
- },
1973
- {
1974
- id: "gpt-5.6-sol-medium",
1975
- handle: "openai/gpt-5.6-sol",
1976
- label: "GPT-5.6 Sol",
1977
- description: "OpenAI's most capable GPT-5.6 model (med reasoning)",
1978
- updateArgs: {
1979
- reasoning_effort: "medium",
1980
- verbosity: "medium",
1981
- context_window: 350000,
1982
- max_output_tokens: 128000,
1983
- parallel_tool_calls: true
1984
- }
1985
- },
1986
- {
1987
- id: "gpt-5.6-sol",
1988
- handle: "openai/gpt-5.6-sol",
1989
- label: "GPT-5.6 Sol",
1990
- description: "OpenAI's most capable GPT-5.6 model (high reasoning)",
1991
- isFeatured: true,
1992
- updateArgs: {
1993
- reasoning_effort: "high",
1994
- verbosity: "medium",
1995
- context_window: 350000,
1996
- max_output_tokens: 128000,
1997
- parallel_tool_calls: true
1998
- }
1999
- },
2000
- {
2001
- id: "gpt-5.6-sol-xhigh",
2002
- handle: "openai/gpt-5.6-sol",
2003
- label: "GPT-5.6 Sol",
2004
- description: "OpenAI's most capable GPT-5.6 model (extra-high reasoning)",
2005
- updateArgs: {
2006
- reasoning_effort: "xhigh",
2007
- verbosity: "medium",
2008
- context_window: 350000,
2009
- max_output_tokens: 128000,
2010
- parallel_tool_calls: true
2011
- }
2012
- },
2013
- {
2014
- id: "gpt-5.6-sol-max",
2015
- handle: "openai/gpt-5.6-sol",
2016
- label: "GPT-5.6 Sol",
2017
- description: "OpenAI's most capable GPT-5.6 model (max reasoning)",
2018
- updateArgs: {
2019
- reasoning_effort: "max",
2020
- verbosity: "medium",
2021
- context_window: 350000,
2022
- max_output_tokens: 128000,
2023
- parallel_tool_calls: true
2024
- }
2025
- },
2026
- {
2027
- id: "gpt-5.6-sol-1m-none",
2028
- handle: "openai/gpt-5.6-sol",
2029
- label: "GPT-5.6 Sol 1M",
2030
- description: "GPT-5.6 Sol 1M (no reasoning)",
2031
- updateArgs: {
2032
- reasoning_effort: "none",
2033
- verbosity: "medium",
2034
- context_window: 1050000,
2035
- max_output_tokens: 128000,
2036
- parallel_tool_calls: true
2037
- }
2038
- },
2039
- {
2040
- id: "gpt-5.6-sol-1m-low",
2041
- handle: "openai/gpt-5.6-sol",
2042
- label: "GPT-5.6 Sol 1M",
2043
- description: "GPT-5.6 Sol 1M (low reasoning)",
2044
- updateArgs: {
2045
- reasoning_effort: "low",
2046
- verbosity: "medium",
2047
- context_window: 1050000,
2048
- max_output_tokens: 128000,
2049
- parallel_tool_calls: true
2050
- }
2051
- },
2052
- {
2053
- id: "gpt-5.6-sol-1m-medium",
2054
- handle: "openai/gpt-5.6-sol",
2055
- label: "GPT-5.6 Sol 1M",
2056
- description: "GPT-5.6 Sol 1M (med reasoning)",
2057
- updateArgs: {
2058
- reasoning_effort: "medium",
2059
- verbosity: "medium",
2060
- context_window: 1050000,
2061
- max_output_tokens: 128000,
2062
- parallel_tool_calls: true
2063
- }
2064
- },
2065
- {
2066
- id: "gpt-5.6-sol-1m",
2067
- handle: "openai/gpt-5.6-sol",
2068
- label: "GPT-5.6 Sol 1M",
2069
- description: "GPT-5.6 Sol with 1M token context window (high reasoning)",
2070
- updateArgs: {
2071
- reasoning_effort: "high",
2072
- verbosity: "medium",
2073
- context_window: 1050000,
2074
- max_output_tokens: 128000,
2075
- parallel_tool_calls: true
2076
- }
2077
- },
2078
- {
2079
- id: "gpt-5.6-sol-1m-xhigh",
2080
- handle: "openai/gpt-5.6-sol",
2081
- label: "GPT-5.6 Sol 1M",
2082
- description: "GPT-5.6 Sol 1M (extra-high reasoning)",
2083
- updateArgs: {
2084
- reasoning_effort: "xhigh",
2085
- verbosity: "medium",
2086
- context_window: 1050000,
2087
- max_output_tokens: 128000,
2088
- parallel_tool_calls: true
2089
- }
2090
- },
2091
- {
2092
- id: "gpt-5.6-sol-1m-max",
2093
- handle: "openai/gpt-5.6-sol",
2094
- label: "GPT-5.6 Sol 1M",
2095
- description: "GPT-5.6 Sol 1M (max reasoning)",
2096
- updateArgs: {
2097
- reasoning_effort: "max",
2098
- verbosity: "medium",
2099
- context_window: 1050000,
2100
- max_output_tokens: 128000,
2101
- parallel_tool_calls: true
2102
- }
2103
- },
2104
- {
2105
- id: "gpt-5.6-terra-none",
2106
- handle: "openai/gpt-5.6-terra",
2107
- label: "GPT-5.6 Terra",
2108
- description: "GPT-5.6 Terra (no reasoning)",
2109
- updateArgs: {
2110
- reasoning_effort: "none",
2111
- verbosity: "medium",
2112
- context_window: 350000,
2113
- max_output_tokens: 128000,
2114
- parallel_tool_calls: true
2115
- }
2116
- },
2117
- {
2118
- id: "gpt-5.6-terra-low",
2119
- handle: "openai/gpt-5.6-terra",
2120
- label: "GPT-5.6 Terra",
2121
- description: "GPT-5.6 Terra (low reasoning)",
2122
- updateArgs: {
2123
- reasoning_effort: "low",
2124
- verbosity: "medium",
2125
- context_window: 350000,
2126
- max_output_tokens: 128000,
2127
- parallel_tool_calls: true
2128
- }
2129
- },
2130
- {
2131
- id: "gpt-5.6-terra-medium",
2132
- handle: "openai/gpt-5.6-terra",
2133
- label: "GPT-5.6 Terra",
2134
- description: "GPT-5.6 Terra (med reasoning)",
2135
- updateArgs: {
2136
- reasoning_effort: "medium",
2137
- verbosity: "medium",
2138
- context_window: 350000,
2139
- max_output_tokens: 128000,
2140
- parallel_tool_calls: true
2141
- }
2142
- },
2143
- {
2144
- id: "gpt-5.6-terra",
2145
- handle: "openai/gpt-5.6-terra",
2146
- label: "GPT-5.6 Terra",
2147
- description: "GPT-5.6 Terra (high reasoning)",
2148
- isFeatured: true,
2149
- updateArgs: {
2150
- reasoning_effort: "high",
2151
- verbosity: "medium",
2152
- context_window: 350000,
2153
- max_output_tokens: 128000,
2154
- parallel_tool_calls: true
2155
- }
2156
- },
2157
- {
2158
- id: "gpt-5.6-terra-xhigh",
2159
- handle: "openai/gpt-5.6-terra",
2160
- label: "GPT-5.6 Terra",
2161
- description: "GPT-5.6 Terra (extra-high reasoning)",
2162
- updateArgs: {
2163
- reasoning_effort: "xhigh",
2164
- verbosity: "medium",
2165
- context_window: 350000,
2166
- max_output_tokens: 128000,
2167
- parallel_tool_calls: true
2168
- }
2169
- },
2170
- {
2171
- id: "gpt-5.6-terra-max",
2172
- handle: "openai/gpt-5.6-terra",
2173
- label: "GPT-5.6 Terra",
2174
- description: "GPT-5.6 Terra (max reasoning)",
2175
- updateArgs: {
2176
- reasoning_effort: "max",
2177
- verbosity: "medium",
2178
- context_window: 350000,
2179
- max_output_tokens: 128000,
2180
- parallel_tool_calls: true
2181
- }
2182
- },
2183
- {
2184
- id: "gpt-5.6-terra-1m-none",
2185
- handle: "openai/gpt-5.6-terra",
2186
- label: "GPT-5.6 Terra 1M",
2187
- description: "GPT-5.6 Terra 1M (no reasoning)",
2188
- updateArgs: {
2189
- reasoning_effort: "none",
2190
- verbosity: "medium",
2191
- context_window: 1050000,
2192
- max_output_tokens: 128000,
2193
- parallel_tool_calls: true
2194
- }
2195
- },
2196
- {
2197
- id: "gpt-5.6-terra-1m-low",
2198
- handle: "openai/gpt-5.6-terra",
2199
- label: "GPT-5.6 Terra 1M",
2200
- description: "GPT-5.6 Terra 1M (low reasoning)",
2201
- updateArgs: {
2202
- reasoning_effort: "low",
2203
- verbosity: "medium",
2204
- context_window: 1050000,
2205
- max_output_tokens: 128000,
2206
- parallel_tool_calls: true
2207
- }
2208
- },
2209
- {
2210
- id: "gpt-5.6-terra-1m-medium",
2211
- handle: "openai/gpt-5.6-terra",
2212
- label: "GPT-5.6 Terra 1M",
2213
- description: "GPT-5.6 Terra 1M (med reasoning)",
2214
- updateArgs: {
2215
- reasoning_effort: "medium",
2216
- verbosity: "medium",
2217
- context_window: 1050000,
2218
- max_output_tokens: 128000,
2219
- parallel_tool_calls: true
2220
- }
2221
- },
2222
- {
2223
- id: "gpt-5.6-terra-1m",
2224
- handle: "openai/gpt-5.6-terra",
2225
- label: "GPT-5.6 Terra 1M",
2226
- description: "GPT-5.6 Terra with 1M token context window (high reasoning)",
2227
- updateArgs: {
2228
- reasoning_effort: "high",
2229
- verbosity: "medium",
2230
- context_window: 1050000,
2231
- max_output_tokens: 128000,
2232
- parallel_tool_calls: true
2233
- }
2234
- },
2235
- {
2236
- id: "gpt-5.6-terra-1m-xhigh",
2237
- handle: "openai/gpt-5.6-terra",
2238
- label: "GPT-5.6 Terra 1M",
2239
- description: "GPT-5.6 Terra 1M (extra-high reasoning)",
2240
- updateArgs: {
2241
- reasoning_effort: "xhigh",
2242
- verbosity: "medium",
2243
- context_window: 1050000,
2244
- max_output_tokens: 128000,
2245
- parallel_tool_calls: true
2246
- }
2247
- },
2248
- {
2249
- id: "gpt-5.6-terra-1m-max",
2250
- handle: "openai/gpt-5.6-terra",
2251
- label: "GPT-5.6 Terra 1M",
2252
- description: "GPT-5.6 Terra 1M (max reasoning)",
2253
- updateArgs: {
2254
- reasoning_effort: "max",
2255
- verbosity: "medium",
2256
- context_window: 1050000,
2257
- max_output_tokens: 128000,
2258
- parallel_tool_calls: true
2259
- }
2260
- },
2261
- {
2262
- id: "gpt-5.6-luna-none",
2263
- handle: "openai/gpt-5.6-luna",
2264
- label: "GPT-5.6 Luna",
2265
- description: "GPT-5.6 Luna (no reasoning)",
2266
- updateArgs: {
2267
- reasoning_effort: "none",
2268
- verbosity: "medium",
2269
- context_window: 350000,
2270
- max_output_tokens: 128000,
2271
- parallel_tool_calls: true
2272
- }
2273
- },
2274
- {
2275
- id: "gpt-5.6-luna-low",
2276
- handle: "openai/gpt-5.6-luna",
2277
- label: "GPT-5.6 Luna",
2278
- description: "GPT-5.6 Luna (low reasoning)",
2279
- updateArgs: {
2280
- reasoning_effort: "low",
2281
- verbosity: "medium",
2282
- context_window: 350000,
2283
- max_output_tokens: 128000,
2284
- parallel_tool_calls: true
2285
- }
2286
- },
2287
- {
2288
- id: "gpt-5.6-luna-medium",
2289
- handle: "openai/gpt-5.6-luna",
2290
- label: "GPT-5.6 Luna",
2291
- description: "GPT-5.6 Luna (med reasoning)",
2292
- updateArgs: {
2293
- reasoning_effort: "medium",
2294
- verbosity: "medium",
2295
- context_window: 350000,
2296
- max_output_tokens: 128000,
2297
- parallel_tool_calls: true
2298
- }
2299
- },
2300
- {
2301
- id: "gpt-5.6-luna",
2302
- handle: "openai/gpt-5.6-luna",
2303
- label: "GPT-5.6 Luna",
2304
- description: "GPT-5.6 Luna (high reasoning)",
2305
- isFeatured: true,
2306
- updateArgs: {
2307
- reasoning_effort: "high",
2308
- verbosity: "medium",
2309
- context_window: 350000,
2310
- max_output_tokens: 128000,
2311
- parallel_tool_calls: true
2312
- }
2313
- },
2314
- {
2315
- id: "gpt-5.6-luna-xhigh",
2316
- handle: "openai/gpt-5.6-luna",
2317
- label: "GPT-5.6 Luna",
2318
- description: "GPT-5.6 Luna (extra-high reasoning)",
2319
- updateArgs: {
2320
- reasoning_effort: "xhigh",
2321
- verbosity: "medium",
2322
- context_window: 350000,
2323
- max_output_tokens: 128000,
2324
- parallel_tool_calls: true
2325
- }
2326
- },
2327
- {
2328
- id: "gpt-5.6-luna-max",
2329
- handle: "openai/gpt-5.6-luna",
2330
- label: "GPT-5.6 Luna",
2331
- description: "GPT-5.6 Luna (max reasoning)",
2332
- updateArgs: {
2333
- reasoning_effort: "max",
2334
- verbosity: "medium",
2335
- context_window: 350000,
2336
- max_output_tokens: 128000,
2337
- parallel_tool_calls: true
2338
- }
2339
- },
2340
- {
2341
- id: "gpt-5.6-luna-1m-none",
2342
- handle: "openai/gpt-5.6-luna",
2343
- label: "GPT-5.6 Luna 1M",
2344
- description: "GPT-5.6 Luna 1M (no reasoning)",
2345
- updateArgs: {
2346
- reasoning_effort: "none",
2347
- verbosity: "medium",
2348
- context_window: 1050000,
2349
- max_output_tokens: 128000,
2350
- parallel_tool_calls: true
2351
- }
2352
- },
2353
- {
2354
- id: "gpt-5.6-luna-1m-low",
2355
- handle: "openai/gpt-5.6-luna",
2356
- label: "GPT-5.6 Luna 1M",
2357
- description: "GPT-5.6 Luna 1M (low reasoning)",
2358
- updateArgs: {
2359
- reasoning_effort: "low",
2360
- verbosity: "medium",
2361
- context_window: 1050000,
2362
- max_output_tokens: 128000,
2363
- parallel_tool_calls: true
2364
- }
2365
- },
2366
- {
2367
- id: "gpt-5.6-luna-1m-medium",
2368
- handle: "openai/gpt-5.6-luna",
2369
- label: "GPT-5.6 Luna 1M",
2370
- description: "GPT-5.6 Luna 1M (med reasoning)",
2371
- updateArgs: {
2372
- reasoning_effort: "medium",
2373
- verbosity: "medium",
2374
- context_window: 1050000,
2375
- max_output_tokens: 128000,
2376
- parallel_tool_calls: true
2377
- }
2378
- },
2379
- {
2380
- id: "gpt-5.6-luna-1m",
2381
- handle: "openai/gpt-5.6-luna",
2382
- label: "GPT-5.6 Luna 1M",
2383
- description: "GPT-5.6 Luna with 1M token context window (high reasoning)",
2384
- updateArgs: {
2385
- reasoning_effort: "high",
2386
- verbosity: "medium",
2387
- context_window: 1050000,
2388
- max_output_tokens: 128000,
2389
- parallel_tool_calls: true
2390
- }
2391
- },
2392
- {
2393
- id: "gpt-5.6-luna-1m-xhigh",
2394
- handle: "openai/gpt-5.6-luna",
2395
- label: "GPT-5.6 Luna 1M",
2396
- description: "GPT-5.6 Luna 1M (extra-high reasoning)",
2397
- updateArgs: {
2398
- reasoning_effort: "xhigh",
2399
- verbosity: "medium",
2400
- context_window: 1050000,
2401
- max_output_tokens: 128000,
2402
- parallel_tool_calls: true
2403
- }
2404
- },
2405
- {
2406
- id: "gpt-5.6-luna-1m-max",
2407
- handle: "openai/gpt-5.6-luna",
2408
- label: "GPT-5.6 Luna 1M",
2409
- description: "GPT-5.6 Luna 1M (max reasoning)",
2410
- updateArgs: {
2411
- reasoning_effort: "max",
2412
- verbosity: "medium",
2413
- context_window: 1050000,
2414
- max_output_tokens: 128000,
2415
- parallel_tool_calls: true
2416
- }
2417
- },
2418
- {
2419
- id: "gpt-5.6-sol-plus-pro-none",
2420
- handle: "chatgpt-plus-pro/gpt-5.6-sol",
2421
- label: "GPT-5.6 Sol (ChatGPT)",
2422
- description: "GPT-5.6 Sol (no reasoning) via ChatGPT Plus/Pro",
2423
- updateArgs: {
2424
- reasoning_effort: "none",
2425
- verbosity: "low",
2426
- context_window: 350000,
2427
- max_output_tokens: 128000,
2428
- parallel_tool_calls: true
2429
- }
2430
- },
2431
- {
2432
- id: "gpt-5.6-sol-plus-pro-low",
2433
- handle: "chatgpt-plus-pro/gpt-5.6-sol",
2434
- label: "GPT-5.6 Sol (ChatGPT)",
2435
- description: "GPT-5.6 Sol (low reasoning) via ChatGPT Plus/Pro",
2436
- updateArgs: {
2437
- reasoning_effort: "low",
2438
- verbosity: "low",
2439
- context_window: 350000,
2440
- max_output_tokens: 128000,
2441
- parallel_tool_calls: true
2442
- }
2443
- },
2444
- {
2445
- id: "gpt-5.6-sol-plus-pro-medium",
2446
- handle: "chatgpt-plus-pro/gpt-5.6-sol",
2447
- label: "GPT-5.6 Sol (ChatGPT)",
2448
- description: "GPT-5.6 Sol (med reasoning) via ChatGPT Plus/Pro",
2449
- updateArgs: {
2450
- reasoning_effort: "medium",
2451
- verbosity: "low",
2452
- context_window: 350000,
2453
- max_output_tokens: 128000,
2454
- parallel_tool_calls: true
2455
- }
2456
- },
2457
- {
2458
- id: "gpt-5.6-sol-plus-pro-high",
2459
- handle: "chatgpt-plus-pro/gpt-5.6-sol",
2460
- label: "GPT-5.6 Sol (ChatGPT)",
2461
- description: "GPT-5.6 Sol (high reasoning) via ChatGPT Plus/Pro",
2462
- updateArgs: {
2463
- reasoning_effort: "high",
2464
- verbosity: "low",
2465
- context_window: 350000,
2466
- max_output_tokens: 128000,
2467
- parallel_tool_calls: true
2468
- },
2469
- isFeatured: true
2470
- },
2471
- {
2472
- id: "gpt-5.6-sol-plus-pro-xhigh",
2473
- handle: "chatgpt-plus-pro/gpt-5.6-sol",
2474
- label: "GPT-5.6 Sol (ChatGPT)",
2475
- description: "GPT-5.6 Sol (extra-high reasoning) via ChatGPT Plus/Pro",
2476
- updateArgs: {
2477
- reasoning_effort: "xhigh",
2478
- verbosity: "low",
2479
- context_window: 350000,
2480
- max_output_tokens: 128000,
2481
- parallel_tool_calls: true
2482
- }
2483
- },
2484
- {
2485
- id: "gpt-5.6-sol-plus-pro-max",
2486
- handle: "chatgpt-plus-pro/gpt-5.6-sol",
2487
- label: "GPT-5.6 Sol (ChatGPT)",
2488
- description: "GPT-5.6 Sol (max reasoning) via ChatGPT Plus/Pro",
2489
- updateArgs: {
2490
- reasoning_effort: "max",
2491
- verbosity: "low",
2492
- context_window: 350000,
2493
- max_output_tokens: 128000,
2494
- parallel_tool_calls: true
2495
- }
2496
- },
2497
- {
2498
- id: "gpt-5.6-terra-plus-pro-none",
2499
- handle: "chatgpt-plus-pro/gpt-5.6-terra",
2500
- label: "GPT-5.6 Terra (ChatGPT)",
2501
- description: "GPT-5.6 Terra (no reasoning) via ChatGPT Plus/Pro",
2502
- updateArgs: {
2503
- reasoning_effort: "none",
2504
- verbosity: "low",
2505
- context_window: 350000,
2506
- max_output_tokens: 128000,
2507
- parallel_tool_calls: true
2508
- }
2509
- },
2510
- {
2511
- id: "gpt-5.6-terra-plus-pro-low",
2512
- handle: "chatgpt-plus-pro/gpt-5.6-terra",
2513
- label: "GPT-5.6 Terra (ChatGPT)",
2514
- description: "GPT-5.6 Terra (low reasoning) via ChatGPT Plus/Pro",
2515
- updateArgs: {
2516
- reasoning_effort: "low",
2517
- verbosity: "low",
2518
- context_window: 350000,
2519
- max_output_tokens: 128000,
2520
- parallel_tool_calls: true
2521
- }
2522
- },
2523
- {
2524
- id: "gpt-5.6-terra-plus-pro-medium",
2525
- handle: "chatgpt-plus-pro/gpt-5.6-terra",
2526
- label: "GPT-5.6 Terra (ChatGPT)",
2527
- description: "GPT-5.6 Terra (med reasoning) via ChatGPT Plus/Pro",
2528
- updateArgs: {
2529
- reasoning_effort: "medium",
2530
- verbosity: "low",
2531
- context_window: 350000,
2532
- max_output_tokens: 128000,
2533
- parallel_tool_calls: true
2534
- }
2535
- },
2536
- {
2537
- id: "gpt-5.6-terra-plus-pro-high",
2538
- handle: "chatgpt-plus-pro/gpt-5.6-terra",
2539
- label: "GPT-5.6 Terra (ChatGPT)",
2540
- description: "GPT-5.6 Terra (high reasoning) via ChatGPT Plus/Pro",
2541
- updateArgs: {
2542
- reasoning_effort: "high",
2543
- verbosity: "low",
2544
- context_window: 350000,
2545
- max_output_tokens: 128000,
2546
- parallel_tool_calls: true
2547
- },
2548
- isFeatured: true
2549
- },
2550
- {
2551
- id: "gpt-5.6-terra-plus-pro-xhigh",
2552
- handle: "chatgpt-plus-pro/gpt-5.6-terra",
2553
- label: "GPT-5.6 Terra (ChatGPT)",
2554
- description: "GPT-5.6 Terra (extra-high reasoning) via ChatGPT Plus/Pro",
2555
- updateArgs: {
2556
- reasoning_effort: "xhigh",
2557
- verbosity: "low",
2558
- context_window: 350000,
2559
- max_output_tokens: 128000,
2560
- parallel_tool_calls: true
2561
- }
2562
- },
2563
- {
2564
- id: "gpt-5.6-terra-plus-pro-max",
2565
- handle: "chatgpt-plus-pro/gpt-5.6-terra",
2566
- label: "GPT-5.6 Terra (ChatGPT)",
2567
- description: "GPT-5.6 Terra (max reasoning) via ChatGPT Plus/Pro",
2568
- updateArgs: {
2569
- reasoning_effort: "max",
2570
- verbosity: "low",
2571
- context_window: 350000,
2572
- max_output_tokens: 128000,
2573
- parallel_tool_calls: true
2574
- }
2575
- },
2576
- {
2577
- id: "gpt-5.6-luna-plus-pro-none",
2578
- handle: "chatgpt-plus-pro/gpt-5.6-luna",
2579
- label: "GPT-5.6 Luna (ChatGPT)",
2580
- description: "GPT-5.6 Luna (no reasoning) via ChatGPT Plus/Pro",
2581
- updateArgs: {
2582
- reasoning_effort: "none",
2583
- verbosity: "low",
2584
- context_window: 350000,
2585
- max_output_tokens: 128000,
2586
- parallel_tool_calls: true
2587
- }
2588
- },
2589
- {
2590
- id: "gpt-5.6-luna-plus-pro-low",
2591
- handle: "chatgpt-plus-pro/gpt-5.6-luna",
2592
- label: "GPT-5.6 Luna (ChatGPT)",
2593
- description: "GPT-5.6 Luna (low reasoning) via ChatGPT Plus/Pro",
2594
- updateArgs: {
2595
- reasoning_effort: "low",
2596
- verbosity: "low",
2597
- context_window: 350000,
2598
- max_output_tokens: 128000,
2599
- parallel_tool_calls: true
2600
- }
2601
- },
2602
- {
2603
- id: "gpt-5.6-luna-plus-pro-medium",
2604
- handle: "chatgpt-plus-pro/gpt-5.6-luna",
2605
- label: "GPT-5.6 Luna (ChatGPT)",
2606
- description: "GPT-5.6 Luna (med reasoning) via ChatGPT Plus/Pro",
2607
- updateArgs: {
2608
- reasoning_effort: "medium",
2609
- verbosity: "low",
2610
- context_window: 350000,
2611
- max_output_tokens: 128000,
2612
- parallel_tool_calls: true
2613
- }
2614
- },
2615
- {
2616
- id: "gpt-5.6-luna-plus-pro-high",
2617
- handle: "chatgpt-plus-pro/gpt-5.6-luna",
2618
- label: "GPT-5.6 Luna (ChatGPT)",
2619
- description: "GPT-5.6 Luna (high reasoning) via ChatGPT Plus/Pro",
2620
- updateArgs: {
2621
- reasoning_effort: "high",
2622
- verbosity: "low",
2623
- context_window: 350000,
2624
- max_output_tokens: 128000,
2625
- parallel_tool_calls: true
2626
- },
2627
- isFeatured: true
2628
- },
2629
- {
2630
- id: "gpt-5.6-luna-plus-pro-xhigh",
2631
- handle: "chatgpt-plus-pro/gpt-5.6-luna",
2632
- label: "GPT-5.6 Luna (ChatGPT)",
2633
- description: "GPT-5.6 Luna (extra-high reasoning) via ChatGPT Plus/Pro",
2634
- updateArgs: {
2635
- reasoning_effort: "xhigh",
2636
- verbosity: "low",
2637
- context_window: 350000,
2638
- max_output_tokens: 128000,
2639
- parallel_tool_calls: true
2640
- }
2641
- },
2642
- {
2643
- id: "gpt-5.6-luna-plus-pro-max",
2644
- handle: "chatgpt-plus-pro/gpt-5.6-luna",
2645
- label: "GPT-5.6 Luna (ChatGPT)",
2646
- description: "GPT-5.6 Luna (max reasoning) via ChatGPT Plus/Pro",
2647
- updateArgs: {
2648
- reasoning_effort: "max",
2649
- verbosity: "low",
2650
- context_window: 350000,
2651
- max_output_tokens: 128000,
2652
- parallel_tool_calls: true
2653
- }
2654
- },
2655
- {
2656
- id: "fable",
2657
- handle: "anthropic/claude-fable-5",
2658
- label: "Fable 5",
2659
- description: "Fable 5 (high reasoning)",
2660
- isFeatured: true,
2661
- updateArgs: {
2662
- context_window: 200000,
2663
- max_output_tokens: 128000,
2664
- enable_reasoner: true,
2665
- reasoning_effort: "high",
2666
- parallel_tool_calls: true
2667
- }
2668
- },
2669
- {
2670
- id: "fable-low",
2671
- handle: "anthropic/claude-fable-5",
2672
- label: "Fable 5",
2673
- description: "Fable 5 (low reasoning)",
2674
- updateArgs: {
2675
- context_window: 200000,
2676
- max_output_tokens: 128000,
2677
- enable_reasoner: true,
2678
- reasoning_effort: "low",
2679
- max_reasoning_tokens: 4000,
2680
- parallel_tool_calls: true
2681
- }
2682
- },
2683
- {
2684
- id: "fable-medium",
2685
- handle: "anthropic/claude-fable-5",
2686
- label: "Fable 5",
2687
- description: "Fable 5 (med reasoning)",
2688
- updateArgs: {
2689
- context_window: 200000,
2690
- max_output_tokens: 128000,
2691
- enable_reasoner: true,
2692
- reasoning_effort: "medium",
2693
- max_reasoning_tokens: 12000,
2694
- parallel_tool_calls: true
2695
- }
2696
- },
2697
- {
2698
- id: "fable-xhigh",
2699
- handle: "anthropic/claude-fable-5",
2700
- label: "Fable 5",
2701
- description: "Fable 5 (extra-high reasoning)",
2702
- updateArgs: {
2703
- context_window: 200000,
2704
- max_output_tokens: 128000,
2705
- enable_reasoner: true,
2706
- reasoning_effort: "xhigh",
2707
- parallel_tool_calls: true
2708
- }
2709
- },
2710
- {
2711
- id: "fable-max",
2712
- handle: "anthropic/claude-fable-5",
2713
- label: "Fable 5",
2714
- description: "Fable 5 (max reasoning)",
2715
- updateArgs: {
2716
- context_window: 200000,
2717
- max_output_tokens: 128000,
2718
- enable_reasoner: true,
2719
- reasoning_effort: "max",
2720
- parallel_tool_calls: true
2721
- }
2722
- },
2723
- {
2724
- id: "fable-1m",
2725
- handle: "anthropic/claude-fable-5",
2726
- label: "Fable 5 1M",
2727
- description: "Claude Fable 5 with 1M token context window (high reasoning)",
2728
- updateArgs: {
2729
- context_window: 950000,
2730
- max_output_tokens: 128000,
2731
- enable_reasoner: true,
2732
- reasoning_effort: "high",
2733
- parallel_tool_calls: true
2734
- }
2735
- },
2736
- {
2737
- id: "fable-1m-low",
2738
- handle: "anthropic/claude-fable-5",
2739
- label: "Fable 5 1M",
2740
- description: "Fable 5 1M (low reasoning)",
2741
- updateArgs: {
2742
- context_window: 950000,
2743
- max_output_tokens: 128000,
2744
- enable_reasoner: true,
2745
- reasoning_effort: "low",
2746
- max_reasoning_tokens: 4000,
2747
- parallel_tool_calls: true
2748
- }
2749
- },
2750
- {
2751
- id: "fable-1m-medium",
2752
- handle: "anthropic/claude-fable-5",
2753
- label: "Fable 5 1M",
2754
- description: "Fable 5 1M (med reasoning)",
2755
- updateArgs: {
2756
- context_window: 950000,
2757
- max_output_tokens: 128000,
2758
- enable_reasoner: true,
2759
- reasoning_effort: "medium",
2760
- max_reasoning_tokens: 12000,
2761
- parallel_tool_calls: true
2762
- }
2763
- },
2764
- {
2765
- id: "fable-1m-xhigh",
2766
- handle: "anthropic/claude-fable-5",
2767
- label: "Fable 5 1M",
2768
- description: "Fable 5 1M (extra-high reasoning)",
2769
- updateArgs: {
2770
- context_window: 950000,
2771
- max_output_tokens: 128000,
2772
- enable_reasoner: true,
2773
- reasoning_effort: "xhigh",
2774
- parallel_tool_calls: true
2775
- }
2776
- },
2777
- {
2778
- id: "fable-1m-max",
2779
- handle: "anthropic/claude-fable-5",
2780
- label: "Fable 5 1M",
2781
- description: "Fable 5 1M (max reasoning)",
2782
- updateArgs: {
2783
- context_window: 950000,
2784
- max_output_tokens: 128000,
2785
- enable_reasoner: true,
2786
- reasoning_effort: "max",
2787
- parallel_tool_calls: true
2788
- }
2789
- },
2790
- {
2791
- id: "opus-5",
2792
- handle: "anthropic/claude-opus-5",
2793
- label: "Opus 5",
2794
- description: "Opus 5 (high reasoning)",
2795
- updateArgs: {
2796
- context_window: 200000,
2797
- max_output_tokens: 128000,
2798
- enable_reasoner: true,
2799
- reasoning_effort: "high",
2800
- parallel_tool_calls: true
2801
- }
2802
- },
2803
- {
2804
- id: "opus-5-low",
2805
- handle: "anthropic/claude-opus-5",
2806
- label: "Opus 5",
2807
- description: "Opus 5 (low reasoning)",
2808
- updateArgs: {
2809
- context_window: 200000,
2810
- max_output_tokens: 128000,
2811
- enable_reasoner: true,
2812
- reasoning_effort: "low",
2813
- max_reasoning_tokens: 4000,
2814
- parallel_tool_calls: true
2815
- }
2816
- },
2817
- {
2818
- id: "opus-5-medium",
2819
- handle: "anthropic/claude-opus-5",
2820
- label: "Opus 5",
2821
- description: "Opus 5 (med reasoning)",
2822
- updateArgs: {
2823
- context_window: 200000,
2824
- max_output_tokens: 128000,
2825
- enable_reasoner: true,
2826
- reasoning_effort: "medium",
2827
- max_reasoning_tokens: 12000,
2828
- parallel_tool_calls: true
2829
- }
2830
- },
2831
- {
2832
- id: "opus-5-xhigh",
2833
- handle: "anthropic/claude-opus-5",
2834
- label: "Opus 5",
2835
- description: "Opus 5 (extra-high reasoning)",
2836
- updateArgs: {
2837
- context_window: 200000,
2838
- max_output_tokens: 128000,
2839
- enable_reasoner: true,
2840
- reasoning_effort: "xhigh",
2841
- parallel_tool_calls: true
2842
- }
2843
- },
2844
- {
2845
- id: "opus-5-max",
2846
- handle: "anthropic/claude-opus-5",
2847
- label: "Opus 5",
2848
- description: "Opus 5 (max reasoning)",
2849
- updateArgs: {
2850
- context_window: 200000,
2851
- max_output_tokens: 128000,
2852
- enable_reasoner: true,
2853
- reasoning_effort: "max",
2854
- parallel_tool_calls: true
2855
- }
2856
- },
2857
- {
2858
- id: "opus",
2859
- handle: "anthropic/claude-opus-4-8",
2860
- label: "Opus 4.8",
2861
- description: "Opus 4.8 (high reasoning)",
2862
- isFeatured: true,
2863
- updateArgs: {
2864
- context_window: 200000,
2865
- max_output_tokens: 128000,
2866
- reasoning_effort: "high",
2867
- enable_reasoner: true,
2868
- parallel_tool_calls: true
2869
- }
2870
- },
2871
- {
2872
- id: "opus-4.8-low",
2873
- handle: "anthropic/claude-opus-4-8",
2874
- label: "Opus 4.8",
2875
- description: "Opus 4.8 (low reasoning)",
2876
- updateArgs: {
2877
- context_window: 200000,
2878
- max_output_tokens: 128000,
2879
- reasoning_effort: "low",
2880
- enable_reasoner: true,
2881
- max_reasoning_tokens: 4000,
2882
- parallel_tool_calls: true
2883
- }
2884
- },
2885
- {
2886
- id: "opus-4.8-medium",
2887
- handle: "anthropic/claude-opus-4-8",
2888
- label: "Opus 4.8",
2889
- description: "Opus 4.8 (med reasoning)",
2890
- updateArgs: {
2891
- context_window: 200000,
2892
- max_output_tokens: 128000,
2893
- reasoning_effort: "medium",
2894
- enable_reasoner: true,
2895
- max_reasoning_tokens: 12000,
2896
- parallel_tool_calls: true
2897
- }
2898
- },
2899
- {
2900
- id: "opus-4.8-high",
2901
- handle: "anthropic/claude-opus-4-8",
2902
- label: "Opus 4.8",
2903
- description: "Opus 4.8 (high reasoning)",
2904
- updateArgs: {
2905
- context_window: 200000,
2906
- max_output_tokens: 128000,
2907
- reasoning_effort: "high",
2908
- enable_reasoner: true,
2909
- parallel_tool_calls: true
2910
- }
2911
- },
2912
- {
2913
- id: "opus-4.8-xhigh",
2914
- handle: "anthropic/claude-opus-4-8",
2915
- label: "Opus 4.8",
2916
- description: "Opus 4.8 (extra-high reasoning)",
2917
- updateArgs: {
2918
- context_window: 200000,
2919
- max_output_tokens: 128000,
2920
- reasoning_effort: "xhigh",
2921
- enable_reasoner: true,
2922
- parallel_tool_calls: true
2923
- }
2924
- },
2925
- {
2926
- id: "opus-4.8-max",
2927
- handle: "anthropic/claude-opus-4-8",
2928
- label: "Opus 4.8",
2929
- description: "Opus 4.8 (max reasoning)",
2930
- updateArgs: {
2931
- context_window: 200000,
2932
- max_output_tokens: 128000,
2933
- reasoning_effort: "max",
2934
- enable_reasoner: true,
2935
- parallel_tool_calls: true
2936
- }
2937
- },
2938
- {
2939
- id: "opus-4.8-1m",
2940
- handle: "anthropic/claude-opus-4-8",
2941
- label: "Opus 4.8 1M",
2942
- description: "Claude Opus 4.8 with 1M token context window (high reasoning)",
2943
- updateArgs: {
2944
- context_window: 950000,
2945
- max_output_tokens: 128000,
2946
- reasoning_effort: "high",
2947
- enable_reasoner: true,
2948
- parallel_tool_calls: true
2949
- }
2950
- },
2951
- {
2952
- id: "opus-4.8-1m-no-reasoning",
2953
- handle: "anthropic/claude-opus-4-8",
2954
- label: "Opus 4.8 1M",
2955
- description: "Opus 4.8 1M with no reasoning (faster)",
2956
- updateArgs: {
2957
- context_window: 950000,
2958
- max_output_tokens: 128000,
2959
- reasoning_effort: "none",
2960
- enable_reasoner: false,
2961
- parallel_tool_calls: true
2962
- }
2963
- },
2964
- {
2965
- id: "opus-4.8-1m-low",
2966
- handle: "anthropic/claude-opus-4-8",
2967
- label: "Opus 4.8 1M",
2968
- description: "Opus 4.8 1M (low reasoning)",
2969
- updateArgs: {
2970
- context_window: 950000,
2971
- max_output_tokens: 128000,
2972
- reasoning_effort: "low",
2973
- enable_reasoner: true,
2974
- parallel_tool_calls: true,
2975
- max_reasoning_tokens: 4000
2976
- }
2977
- },
2978
- {
2979
- id: "opus-4.8-1m-medium",
2980
- handle: "anthropic/claude-opus-4-8",
2981
- label: "Opus 4.8 1M",
2982
- description: "Opus 4.8 1M (med reasoning)",
2983
- updateArgs: {
2984
- context_window: 950000,
2985
- max_output_tokens: 128000,
2986
- reasoning_effort: "medium",
2987
- enable_reasoner: true,
2988
- parallel_tool_calls: true,
2989
- max_reasoning_tokens: 12000
2990
- }
2991
- },
2992
- {
2993
- id: "opus-4.8-1m-xhigh",
2994
- handle: "anthropic/claude-opus-4-8",
2995
- label: "Opus 4.8 1M",
2996
- description: "Opus 4.8 1M (max reasoning)",
2997
- updateArgs: {
2998
- context_window: 950000,
2999
- max_output_tokens: 128000,
3000
- reasoning_effort: "xhigh",
3001
- enable_reasoner: true,
3002
- parallel_tool_calls: true
3003
- }
3004
- },
3005
- {
3006
- id: "opus-1m",
3007
- handle: "anthropic/claude-opus-4-6",
3008
- label: "Opus 4.6 1M",
3009
- description: "Claude Opus 4.6 with 1M token context window (high reasoning)",
3010
- updateArgs: {
3011
- context_window: 950000,
3012
- max_output_tokens: 128000,
3013
- reasoning_effort: "high",
3014
- enable_reasoner: true,
3015
- parallel_tool_calls: true
3016
- }
3017
- },
3018
- {
3019
- id: "opus-1m-no-reasoning",
3020
- handle: "anthropic/claude-opus-4-6",
3021
- label: "Opus 4.6 1M",
3022
- description: "Opus 4.6 1M with no reasoning (faster)",
3023
- updateArgs: {
3024
- context_window: 950000,
3025
- max_output_tokens: 128000,
3026
- reasoning_effort: "none",
3027
- enable_reasoner: false,
3028
- parallel_tool_calls: true
3029
- }
3030
- },
3031
- {
3032
- id: "opus-1m-low",
3033
- handle: "anthropic/claude-opus-4-6",
3034
- label: "Opus 4.6 1M",
3035
- description: "Opus 4.6 1M (low reasoning)",
3036
- updateArgs: {
3037
- context_window: 950000,
3038
- max_output_tokens: 128000,
3039
- reasoning_effort: "low",
3040
- enable_reasoner: true,
3041
- max_reasoning_tokens: 4000,
3042
- parallel_tool_calls: true
3043
- }
3044
- },
3045
- {
3046
- id: "opus-1m-medium",
3047
- handle: "anthropic/claude-opus-4-6",
3048
- label: "Opus 4.6 1M",
3049
- description: "Opus 4.6 1M (med reasoning)",
3050
- updateArgs: {
3051
- context_window: 950000,
3052
- max_output_tokens: 128000,
3053
- reasoning_effort: "medium",
3054
- enable_reasoner: true,
3055
- max_reasoning_tokens: 12000,
3056
- parallel_tool_calls: true
3057
- }
3058
- },
3059
- {
3060
- id: "opus-1m-xhigh",
3061
- handle: "anthropic/claude-opus-4-6",
3062
- label: "Opus 4.6 1M",
3063
- description: "Opus 4.6 1M (max reasoning)",
3064
- updateArgs: {
3065
- context_window: 950000,
3066
- max_output_tokens: 128000,
3067
- reasoning_effort: "xhigh",
3068
- enable_reasoner: true,
3069
- parallel_tool_calls: true
3070
- }
3071
- },
3072
- {
3073
- id: "sonnet",
3074
- handle: "anthropic/claude-sonnet-5",
3075
- label: "Sonnet 5",
3076
- description: "Sonnet 5 (high reasoning)",
3077
- isFeatured: true,
3078
- updateArgs: {
3079
- context_window: 1e6,
3080
- max_output_tokens: 128000,
3081
- reasoning_effort: "high",
3082
- enable_reasoner: true,
3083
- parallel_tool_calls: true
3084
- }
3085
- },
3086
- {
3087
- id: "sonnet-5-no-reasoning",
3088
- handle: "anthropic/claude-sonnet-5",
3089
- label: "Sonnet 5",
3090
- description: "Sonnet 5 with no reasoning (faster)",
3091
- updateArgs: {
3092
- context_window: 1e6,
3093
- max_output_tokens: 128000,
3094
- reasoning_effort: "none",
3095
- enable_reasoner: false,
3096
- parallel_tool_calls: true
3097
- }
3098
- },
3099
- {
3100
- id: "sonnet-5-low",
3101
- handle: "anthropic/claude-sonnet-5",
3102
- label: "Sonnet 5",
3103
- description: "Sonnet 5 (low reasoning)",
3104
- updateArgs: {
3105
- context_window: 1e6,
3106
- max_output_tokens: 128000,
3107
- reasoning_effort: "low",
3108
- enable_reasoner: true,
3109
- max_reasoning_tokens: 4000,
3110
- parallel_tool_calls: true
3111
- }
3112
- },
3113
- {
3114
- id: "sonnet-5-medium",
3115
- handle: "anthropic/claude-sonnet-5",
3116
- label: "Sonnet 5",
3117
- description: "Sonnet 5 (med reasoning)",
3118
- updateArgs: {
3119
- context_window: 1e6,
3120
- max_output_tokens: 128000,
3121
- reasoning_effort: "medium",
3122
- enable_reasoner: true,
3123
- max_reasoning_tokens: 12000,
3124
- parallel_tool_calls: true
3125
- }
3126
- },
3127
- {
3128
- id: "sonnet-5-xhigh",
3129
- handle: "anthropic/claude-sonnet-5",
3130
- label: "Sonnet 5",
3131
- description: "Sonnet 5 (extra-high reasoning)",
3132
- updateArgs: {
3133
- context_window: 1e6,
3134
- max_output_tokens: 128000,
3135
- reasoning_effort: "xhigh",
3136
- enable_reasoner: true,
3137
- parallel_tool_calls: true
3138
- }
3139
- },
3140
- {
3141
- id: "sonnet-5-max",
3142
- handle: "anthropic/claude-sonnet-5",
3143
- label: "Sonnet 5",
3144
- description: "Sonnet 5 (max reasoning)",
3145
- updateArgs: {
3146
- context_window: 1e6,
3147
- max_output_tokens: 128000,
3148
- reasoning_effort: "max",
3149
- enable_reasoner: true,
3150
- parallel_tool_calls: true
3151
- }
3152
- },
3153
- {
3154
- id: "sonnet-4.6",
3155
- handle: "anthropic/claude-sonnet-4-6",
3156
- label: "Sonnet 4.6",
3157
- description: "Sonnet 4.6 (high reasoning)",
3158
- updateArgs: {
3159
- context_window: 200000,
3160
- max_output_tokens: 128000,
3161
- reasoning_effort: "high",
3162
- enable_reasoner: true,
3163
- parallel_tool_calls: true
3164
- }
3165
- },
3166
- {
3167
- id: "sonnet-4.6-no-reasoning",
3168
- handle: "anthropic/claude-sonnet-4-6",
3169
- label: "Sonnet 4.6",
3170
- description: "Sonnet 4.6 with no reasoning (faster)",
3171
- updateArgs: {
3172
- context_window: 200000,
3173
- max_output_tokens: 128000,
3174
- reasoning_effort: "none",
3175
- enable_reasoner: false,
3176
- parallel_tool_calls: true
3177
- }
3178
- },
3179
- {
3180
- id: "sonnet-4.6-low",
3181
- handle: "anthropic/claude-sonnet-4-6",
3182
- label: "Sonnet 4.6",
3183
- description: "Sonnet 4.6 (low reasoning)",
3184
- updateArgs: {
3185
- context_window: 200000,
3186
- max_output_tokens: 128000,
3187
- reasoning_effort: "low",
3188
- enable_reasoner: true,
3189
- max_reasoning_tokens: 4000,
3190
- parallel_tool_calls: true
3191
- }
3192
- },
3193
- {
3194
- id: "sonnet-4.6-medium",
3195
- handle: "anthropic/claude-sonnet-4-6",
3196
- label: "Sonnet 4.6",
3197
- description: "Sonnet 4.6 (med reasoning)",
3198
- updateArgs: {
3199
- context_window: 200000,
3200
- max_output_tokens: 128000,
3201
- reasoning_effort: "medium",
3202
- enable_reasoner: true,
3203
- max_reasoning_tokens: 12000,
3204
- parallel_tool_calls: true
3205
- }
3206
- },
3207
- {
3208
- id: "sonnet-4.6-xhigh",
3209
- handle: "anthropic/claude-sonnet-4-6",
3210
- label: "Sonnet 4.6",
3211
- description: "Sonnet 4.6 (max reasoning)",
3212
- updateArgs: {
3213
- context_window: 200000,
3214
- max_output_tokens: 128000,
3215
- reasoning_effort: "xhigh",
3216
- enable_reasoner: true,
3217
- parallel_tool_calls: true
3218
- }
3219
- },
3220
- {
3221
- id: "sonnet-1m",
3222
- handle: "anthropic/claude-sonnet-4-6",
3223
- label: "Sonnet 4.6 1M",
3224
- description: "Claude Sonnet 4.6 with 1M token context window (high reasoning)",
3225
- updateArgs: {
3226
- context_window: 9500000,
3227
- max_output_tokens: 128000,
3228
- reasoning_effort: "high",
3229
- enable_reasoner: true,
3230
- parallel_tool_calls: true
3231
- }
3232
- },
3233
- {
3234
- id: "sonnet-1m-no-reasoning",
3235
- handle: "anthropic/claude-sonnet-4-6",
3236
- label: "Sonnet 4.6 1M",
3237
- description: "Sonnet 4.6 1M with no reasoning (faster)",
3238
- updateArgs: {
3239
- context_window: 9500000,
3240
- max_output_tokens: 128000,
3241
- reasoning_effort: "none",
3242
- enable_reasoner: false,
3243
- parallel_tool_calls: true
3244
- }
3245
- },
3246
- {
3247
- id: "sonnet-1m-low",
3248
- handle: "anthropic/claude-sonnet-4-6",
3249
- label: "Sonnet 4.6 1M",
3250
- description: "Sonnet 4.6 1M (low reasoning)",
3251
- updateArgs: {
3252
- context_window: 9500000,
3253
- max_output_tokens: 128000,
3254
- reasoning_effort: "low",
3255
- enable_reasoner: true,
3256
- max_reasoning_tokens: 4000,
3257
- parallel_tool_calls: true
3258
- }
3259
- },
3260
- {
3261
- id: "sonnet-1m-medium",
3262
- handle: "anthropic/claude-sonnet-4-6",
3263
- label: "Sonnet 4.6 1M",
3264
- description: "Sonnet 4.6 1M (med reasoning)",
3265
- updateArgs: {
3266
- context_window: 9500000,
3267
- max_output_tokens: 128000,
3268
- reasoning_effort: "medium",
3269
- enable_reasoner: true,
3270
- max_reasoning_tokens: 12000,
3271
- parallel_tool_calls: true
3272
- }
3273
- },
3274
- {
3275
- id: "sonnet-1m-xhigh",
3276
- handle: "anthropic/claude-sonnet-4-6",
3277
- label: "Sonnet 4.6 1M",
3278
- description: "Sonnet 4.6 1M (max reasoning)",
3279
- updateArgs: {
3280
- context_window: 9500000,
3281
- max_output_tokens: 128000,
3282
- reasoning_effort: "xhigh",
3283
- enable_reasoner: true,
3284
- parallel_tool_calls: true
3285
- }
3286
- },
3287
- {
3288
- id: "opus-4.6-high",
3289
- handle: "anthropic/claude-opus-4-6",
3290
- label: "Opus 4.6",
3291
- description: "Opus 4.6 (high reasoning)",
3292
- updateArgs: {
3293
- context_window: 200000,
3294
- max_output_tokens: 128000,
3295
- reasoning_effort: "high",
3296
- enable_reasoner: true,
3297
- parallel_tool_calls: true
3298
- }
3299
- },
3300
- {
3301
- id: "opus-4.6-no-reasoning",
3302
- handle: "anthropic/claude-opus-4-6",
3303
- label: "Opus 4.6",
3304
- description: "Opus 4.6 with no reasoning (faster)",
3305
- updateArgs: {
3306
- context_window: 200000,
3307
- max_output_tokens: 128000,
3308
- reasoning_effort: "none",
3309
- enable_reasoner: false,
3310
- parallel_tool_calls: true
3311
- }
3312
- },
3313
- {
3314
- id: "opus-4.6-low",
3315
- handle: "anthropic/claude-opus-4-6",
3316
- label: "Opus 4.6",
3317
- description: "Opus 4.6 (low reasoning)",
3318
- updateArgs: {
3319
- context_window: 200000,
3320
- max_output_tokens: 128000,
3321
- reasoning_effort: "low",
3322
- enable_reasoner: true,
3323
- max_reasoning_tokens: 4000,
3324
- parallel_tool_calls: true
3325
- }
3326
- },
3327
- {
3328
- id: "opus-4.6-medium",
3329
- handle: "anthropic/claude-opus-4-6",
3330
- label: "Opus 4.6",
3331
- description: "Opus 4.6 (med reasoning)",
3332
- updateArgs: {
3333
- context_window: 200000,
3334
- max_output_tokens: 128000,
3335
- reasoning_effort: "medium",
3336
- enable_reasoner: true,
3337
- max_reasoning_tokens: 12000,
3338
- parallel_tool_calls: true
3339
- }
3340
- },
3341
- {
3342
- id: "opus-4.6-xhigh",
3343
- handle: "anthropic/claude-opus-4-6",
3344
- label: "Opus 4.6",
3345
- description: "Opus 4.6 (max reasoning)",
3346
- updateArgs: {
3347
- context_window: 200000,
3348
- max_output_tokens: 128000,
3349
- reasoning_effort: "xhigh",
3350
- enable_reasoner: true,
3351
- parallel_tool_calls: true
3352
- }
3353
- },
3354
- {
3355
- id: "opus-4.7-medium",
3356
- handle: "anthropic/claude-opus-4-7",
3357
- label: "Opus 4.7",
3358
- description: "Opus 4.7 (med reasoning)",
3359
- updateArgs: {
3360
- context_window: 200000,
3361
- max_output_tokens: 128000,
3362
- reasoning_effort: "medium",
3363
- enable_reasoner: true,
3364
- max_reasoning_tokens: 12000,
3365
- parallel_tool_calls: true
3366
- }
3367
- },
3368
- {
3369
- id: "opus-4.7-low",
3370
- handle: "anthropic/claude-opus-4-7",
3371
- label: "Opus 4.7",
3372
- description: "Opus 4.7 (low reasoning)",
3373
- updateArgs: {
3374
- context_window: 200000,
3375
- max_output_tokens: 128000,
3376
- reasoning_effort: "low",
3377
- enable_reasoner: true,
3378
- max_reasoning_tokens: 4000,
3379
- parallel_tool_calls: true
3380
- }
3381
- },
3382
- {
3383
- id: "opus-4.7-high",
3384
- handle: "anthropic/claude-opus-4-7",
3385
- label: "Opus 4.7",
3386
- description: "Opus 4.7 (high reasoning)",
3387
- updateArgs: {
3388
- context_window: 200000,
3389
- max_output_tokens: 128000,
3390
- reasoning_effort: "high",
3391
- enable_reasoner: true,
3392
- parallel_tool_calls: true
3393
- }
3394
- },
3395
- {
3396
- id: "opus-4.7-xhigh",
3397
- handle: "anthropic/claude-opus-4-7",
3398
- label: "Opus 4.7",
3399
- description: "Opus 4.7 (extra-high reasoning)",
3400
- updateArgs: {
3401
- context_window: 200000,
3402
- max_output_tokens: 128000,
3403
- reasoning_effort: "xhigh",
3404
- enable_reasoner: true,
3405
- parallel_tool_calls: true
3406
- }
3407
- },
3408
- {
3409
- id: "opus-4.7-max",
3410
- handle: "anthropic/claude-opus-4-7",
3411
- label: "Opus 4.7",
3412
- description: "Opus 4.7 (max reasoning)",
3413
- updateArgs: {
3414
- context_window: 200000,
3415
- max_output_tokens: 128000,
3416
- reasoning_effort: "max",
3417
- enable_reasoner: true,
3418
- parallel_tool_calls: true
3419
- }
3420
- },
3421
- {
3422
- id: "opus-4.5",
3423
- handle: "anthropic/claude-opus-4-5-20251101",
3424
- label: "Opus 4.5",
3425
- description: "Opus 4.5 (high reasoning)",
3426
- updateArgs: {
3427
- context_window: 180000,
3428
- max_output_tokens: 64000,
3429
- reasoning_effort: "high",
3430
- enable_reasoner: true,
3431
- max_reasoning_tokens: 31999,
3432
- parallel_tool_calls: true
3433
- }
3434
- },
3435
- {
3436
- id: "opus-4.5-no-reasoning",
3437
- handle: "anthropic/claude-opus-4-5-20251101",
3438
- label: "Opus 4.5",
3439
- description: "Opus 4.5 with no reasoning (faster)",
3440
- updateArgs: {
3441
- context_window: 180000,
3442
- max_output_tokens: 64000,
3443
- reasoning_effort: "none",
3444
- enable_reasoner: false,
3445
- parallel_tool_calls: true
3446
- }
3447
- },
3448
- {
3449
- id: "opus-4.5-low",
3450
- handle: "anthropic/claude-opus-4-5-20251101",
3451
- label: "Opus 4.5",
3452
- description: "Opus 4.5 (low reasoning)",
3453
- updateArgs: {
3454
- context_window: 180000,
3455
- max_output_tokens: 64000,
3456
- reasoning_effort: "low",
3457
- enable_reasoner: true,
3458
- max_reasoning_tokens: 4000,
3459
- parallel_tool_calls: true
3460
- }
3461
- },
3462
- {
3463
- id: "opus-4.5-medium",
3464
- handle: "anthropic/claude-opus-4-5-20251101",
3465
- label: "Opus 4.5",
3466
- description: "Opus 4.5 (med reasoning)",
3467
- updateArgs: {
3468
- context_window: 180000,
3469
- max_output_tokens: 64000,
3470
- reasoning_effort: "medium",
3471
- enable_reasoner: true,
3472
- max_reasoning_tokens: 12000,
3473
- parallel_tool_calls: true
3474
- }
3475
- },
3476
- {
3477
- id: "bedrock-opus-4.5",
3478
- handle: "bedrock/us.anthropic.claude-opus-4-5-20251101-v1:0",
3479
- label: "Bedrock Opus 4.5",
3480
- shortLabel: "Opus 4.5 BR",
3481
- description: "Opus 4.5 via AWS Bedrock",
3482
- updateArgs: {
3483
- context_window: 180000,
3484
- max_output_tokens: 64000,
3485
- max_reasoning_tokens: 31999,
3486
- parallel_tool_calls: true
3487
- }
3488
- },
3489
- {
3490
- id: "haiku",
3491
- handle: "anthropic/claude-haiku-4-5",
3492
- label: "Haiku 4.5",
3493
- description: "Haiku 4.5",
3494
- updateArgs: {
3495
- context_window: 180000,
3496
- max_output_tokens: 64000,
3497
- parallel_tool_calls: true
3498
- }
3499
- },
3500
- {
3501
- id: "gpt-5.5-plus-pro-none",
3502
- handle: "chatgpt-plus-pro/gpt-5.5",
3503
- label: "GPT-5.5 (ChatGPT)",
3504
- description: "GPT-5.5 (no reasoning) via ChatGPT Plus/Pro",
3505
- updateArgs: {
3506
- reasoning_effort: "none",
3507
- verbosity: "low",
3508
- context_window: 272000,
3509
- max_output_tokens: 128000,
3510
- parallel_tool_calls: true
3511
- }
3512
- },
3513
- {
3514
- id: "gpt-5.5-plus-pro-low",
3515
- handle: "chatgpt-plus-pro/gpt-5.5",
3516
- label: "GPT-5.5 (ChatGPT)",
3517
- description: "GPT-5.5 (low reasoning) via ChatGPT Plus/Pro",
3518
- updateArgs: {
3519
- reasoning_effort: "low",
3520
- verbosity: "low",
3521
- context_window: 272000,
3522
- max_output_tokens: 128000,
3523
- parallel_tool_calls: true
3524
- }
3525
- },
3526
- {
3527
- id: "gpt-5.5-plus-pro-medium",
3528
- handle: "chatgpt-plus-pro/gpt-5.5",
3529
- label: "GPT-5.5 (ChatGPT)",
3530
- description: "GPT-5.5 (med reasoning) via ChatGPT Plus/Pro",
3531
- updateArgs: {
3532
- reasoning_effort: "medium",
3533
- verbosity: "low",
3534
- context_window: 272000,
3535
- max_output_tokens: 128000,
3536
- parallel_tool_calls: true
3537
- }
3538
- },
3539
- {
3540
- id: "gpt-5.5-plus-pro-high",
3541
- handle: "chatgpt-plus-pro/gpt-5.5",
3542
- label: "GPT-5.5 (ChatGPT)",
3543
- description: "OpenAI's most capable model (high reasoning) via ChatGPT Plus/Pro",
3544
- updateArgs: {
3545
- reasoning_effort: "high",
3546
- verbosity: "low",
3547
- context_window: 272000,
3548
- max_output_tokens: 128000,
3549
- parallel_tool_calls: true
3550
- }
3551
- },
3552
- {
3553
- id: "gpt-5.5-plus-pro-xhigh",
3554
- handle: "chatgpt-plus-pro/gpt-5.5",
3555
- label: "GPT-5.5 (ChatGPT)",
3556
- description: "GPT-5.5 (max reasoning) via ChatGPT Plus/Pro",
3557
- updateArgs: {
3558
- reasoning_effort: "xhigh",
3559
- verbosity: "low",
3560
- context_window: 272000,
3561
- max_output_tokens: 128000,
3562
- parallel_tool_calls: true
3563
- }
3564
- },
3565
- {
3566
- id: "gpt-5.5-fast-plus-pro-none",
3567
- handle: "chatgpt-plus-pro/gpt-5.5-fast",
3568
- label: "GPT-5.5 Fast (ChatGPT)",
3569
- description: "GPT-5.5 Fast (no reasoning) via ChatGPT Plus/Pro",
3570
- updateArgs: {
3571
- reasoning_effort: "none",
3572
- verbosity: "low",
3573
- context_window: 272000,
3574
- max_output_tokens: 128000,
3575
- parallel_tool_calls: true
3576
- }
3577
- },
3578
- {
3579
- id: "gpt-5.5-fast-plus-pro-low",
3580
- handle: "chatgpt-plus-pro/gpt-5.5-fast",
3581
- label: "GPT-5.5 Fast (ChatGPT)",
3582
- description: "GPT-5.5 Fast (low reasoning) via ChatGPT Plus/Pro",
3583
- updateArgs: {
3584
- reasoning_effort: "low",
3585
- verbosity: "low",
3586
- context_window: 272000,
3587
- max_output_tokens: 128000,
3588
- parallel_tool_calls: true
3589
- }
3590
- },
3591
- {
3592
- id: "gpt-5.5-fast-plus-pro-medium",
3593
- handle: "chatgpt-plus-pro/gpt-5.5-fast",
3594
- label: "GPT-5.5 Fast (ChatGPT)",
3595
- description: "GPT-5.5 Fast (med reasoning) via ChatGPT Plus/Pro",
3596
- updateArgs: {
3597
- reasoning_effort: "medium",
3598
- verbosity: "low",
3599
- context_window: 272000,
3600
- max_output_tokens: 128000,
3601
- parallel_tool_calls: true
3602
- }
3603
- },
3604
- {
3605
- id: "gpt-5.5-fast-plus-pro-high",
3606
- handle: "chatgpt-plus-pro/gpt-5.5-fast",
3607
- label: "GPT-5.5 Fast (ChatGPT)",
3608
- description: "GPT-5.5 Fast (high reasoning) via ChatGPT Plus/Pro",
3609
- updateArgs: {
3610
- reasoning_effort: "high",
3611
- verbosity: "low",
3612
- context_window: 272000,
3613
- max_output_tokens: 128000,
3614
- parallel_tool_calls: true
3615
- }
3616
- },
3617
- {
3618
- id: "gpt-5.5-fast-plus-pro-xhigh",
3619
- handle: "chatgpt-plus-pro/gpt-5.5-fast",
3620
- label: "GPT-5.5 Fast (ChatGPT)",
3621
- description: "GPT-5.5 Fast (max reasoning) via ChatGPT Plus/Pro",
3622
- updateArgs: {
3623
- reasoning_effort: "xhigh",
3624
- verbosity: "low",
3625
- context_window: 272000,
3626
- max_output_tokens: 128000,
3627
- parallel_tool_calls: true
3628
- }
3629
- },
3630
- {
3631
- id: "gpt-5.4-plus-pro-none",
3632
- handle: "chatgpt-plus-pro/gpt-5.4",
3633
- label: "GPT-5.4 (ChatGPT)",
3634
- description: "GPT-5.4 (no reasoning) via ChatGPT Plus/Pro",
3635
- updateArgs: {
3636
- reasoning_effort: "none",
3637
- verbosity: "low",
3638
- context_window: 272000,
3639
- max_output_tokens: 128000,
3640
- parallel_tool_calls: true
3641
- }
3642
- },
3643
- {
3644
- id: "gpt-5.4-plus-pro-low",
3645
- handle: "chatgpt-plus-pro/gpt-5.4",
3646
- label: "GPT-5.4 (ChatGPT)",
3647
- description: "GPT-5.4 (low reasoning) via ChatGPT Plus/Pro",
3648
- updateArgs: {
3649
- reasoning_effort: "low",
3650
- verbosity: "low",
3651
- context_window: 272000,
3652
- max_output_tokens: 128000,
3653
- parallel_tool_calls: true
3654
- }
3655
- },
3656
- {
3657
- id: "gpt-5.4-plus-pro-medium",
3658
- handle: "chatgpt-plus-pro/gpt-5.4",
3659
- label: "GPT-5.4 (ChatGPT)",
3660
- description: "GPT-5.4 (med reasoning) via ChatGPT Plus/Pro",
3661
- updateArgs: {
3662
- reasoning_effort: "medium",
3663
- verbosity: "low",
3664
- context_window: 272000,
3665
- max_output_tokens: 128000,
3666
- parallel_tool_calls: true
3667
- }
3668
- },
3669
- {
3670
- id: "gpt-5.4-plus-pro-high",
3671
- handle: "chatgpt-plus-pro/gpt-5.4",
3672
- label: "GPT-5.4 (ChatGPT)",
3673
- description: "OpenAI's most capable model (high reasoning) via ChatGPT Plus/Pro",
3674
- updateArgs: {
3675
- reasoning_effort: "high",
3676
- verbosity: "low",
3677
- context_window: 272000,
3678
- max_output_tokens: 128000,
3679
- parallel_tool_calls: true
3680
- }
3681
- },
3682
- {
3683
- id: "gpt-5.4-plus-pro-xhigh",
3684
- handle: "chatgpt-plus-pro/gpt-5.4",
3685
- label: "GPT-5.4 (ChatGPT)",
3686
- description: "GPT-5.4 (max reasoning) via ChatGPT Plus/Pro",
3687
- updateArgs: {
3688
- reasoning_effort: "xhigh",
3689
- verbosity: "low",
3690
- context_window: 272000,
3691
- max_output_tokens: 128000,
3692
- parallel_tool_calls: true
3693
- }
3694
- },
3695
- {
3696
- id: "gpt-5.4-pro-plus-pro-medium",
3697
- handle: "chatgpt-plus-pro/gpt-5.4-pro",
3698
- label: "GPT-5.4 Pro (ChatGPT)",
3699
- description: "GPT-5.4 Pro (med reasoning) via ChatGPT Plus/Pro",
3700
- updateArgs: {
3701
- reasoning_effort: "medium",
3702
- verbosity: "low",
3703
- context_window: 272000,
3704
- max_output_tokens: 128000,
3705
- parallel_tool_calls: true
3706
- }
3707
- },
3708
- {
3709
- id: "gpt-5.4-pro-plus-pro-high",
3710
- handle: "chatgpt-plus-pro/gpt-5.4-pro",
3711
- label: "GPT-5.4 Pro (ChatGPT)",
3712
- description: "GPT-5.4 Pro (high reasoning) via ChatGPT Plus/Pro",
3713
- updateArgs: {
3714
- reasoning_effort: "high",
3715
- verbosity: "low",
3716
- context_window: 272000,
3717
- max_output_tokens: 128000,
3718
- parallel_tool_calls: true
3719
- }
3720
- },
3721
- {
3722
- id: "gpt-5.4-pro-plus-pro-xhigh",
3723
- handle: "chatgpt-plus-pro/gpt-5.4-pro",
3724
- label: "GPT-5.4 Pro (ChatGPT)",
3725
- description: "GPT-5.4 Pro (max reasoning) via ChatGPT Plus/Pro",
3726
- updateArgs: {
3727
- reasoning_effort: "xhigh",
3728
- verbosity: "low",
3729
- context_window: 272000,
3730
- max_output_tokens: 128000,
3731
- parallel_tool_calls: true
3732
- }
3733
- },
3734
- {
3735
- id: "gpt-5.4-fast-plus-pro-none",
3736
- handle: "chatgpt-plus-pro/gpt-5.4-fast",
3737
- label: "GPT-5.4 Fast (ChatGPT)",
3738
- description: "GPT-5.4 Fast (no reasoning) via ChatGPT Plus/Pro",
3739
- updateArgs: {
3740
- reasoning_effort: "none",
3741
- verbosity: "low",
3742
- context_window: 272000,
3743
- max_output_tokens: 128000,
3744
- parallel_tool_calls: true
3745
- }
3746
- },
3747
- {
3748
- id: "gpt-5.4-fast-plus-pro-low",
3749
- handle: "chatgpt-plus-pro/gpt-5.4-fast",
3750
- label: "GPT-5.4 Fast (ChatGPT)",
3751
- description: "GPT-5.4 Fast (low reasoning) via ChatGPT Plus/Pro",
3752
- updateArgs: {
3753
- reasoning_effort: "low",
3754
- verbosity: "low",
3755
- context_window: 272000,
3756
- max_output_tokens: 128000,
3757
- parallel_tool_calls: true
3758
- }
3759
- },
3760
- {
3761
- id: "gpt-5.4-fast-plus-pro-medium",
3762
- handle: "chatgpt-plus-pro/gpt-5.4-fast",
3763
- label: "GPT-5.4 Fast (ChatGPT)",
3764
- description: "GPT-5.4 Fast (med reasoning) via ChatGPT Plus/Pro",
3765
- updateArgs: {
3766
- reasoning_effort: "medium",
3767
- verbosity: "low",
3768
- context_window: 272000,
3769
- max_output_tokens: 128000,
3770
- parallel_tool_calls: true
3771
- }
3772
- },
3773
- {
3774
- id: "gpt-5.4-fast-plus-pro-high",
3775
- handle: "chatgpt-plus-pro/gpt-5.4-fast",
3776
- label: "GPT-5.4 Fast (ChatGPT)",
3777
- description: "GPT-5.4 Fast (high reasoning) via ChatGPT Plus/Pro",
3778
- updateArgs: {
3779
- reasoning_effort: "high",
3780
- verbosity: "low",
3781
- context_window: 272000,
3782
- max_output_tokens: 128000,
3783
- parallel_tool_calls: true
3784
- }
3785
- },
3786
- {
3787
- id: "gpt-5.4-fast-plus-pro-xhigh",
3788
- handle: "chatgpt-plus-pro/gpt-5.4-fast",
3789
- label: "GPT-5.4 Fast (ChatGPT)",
3790
- description: "GPT-5.4 Fast (max reasoning) via ChatGPT Plus/Pro",
3791
- updateArgs: {
3792
- reasoning_effort: "xhigh",
3793
- verbosity: "low",
3794
- context_window: 272000,
3795
- max_output_tokens: 128000,
3796
- parallel_tool_calls: true
3797
- }
3798
- },
3799
- {
3800
- id: "gpt-5.4-mini-plus-pro-none",
3801
- handle: "chatgpt-plus-pro/gpt-5.4-mini",
3802
- label: "GPT-5.4 Mini (ChatGPT)",
3803
- description: "GPT-5.4 Mini (no reasoning) via ChatGPT Plus/Pro",
3804
- updateArgs: {
3805
- reasoning_effort: "none",
3806
- verbosity: "low",
3807
- context_window: 272000,
3808
- max_output_tokens: 128000,
3809
- parallel_tool_calls: true
3810
- }
3811
- },
3812
- {
3813
- id: "gpt-5.4-mini-plus-pro-low",
3814
- handle: "chatgpt-plus-pro/gpt-5.4-mini",
3815
- label: "GPT-5.4 Mini (ChatGPT)",
3816
- description: "GPT-5.4 Mini (low reasoning) via ChatGPT Plus/Pro",
3817
- updateArgs: {
3818
- reasoning_effort: "low",
3819
- verbosity: "low",
3820
- context_window: 272000,
3821
- max_output_tokens: 128000,
3822
- parallel_tool_calls: true
3823
- }
3824
- },
3825
- {
3826
- id: "gpt-5.4-mini-plus-pro-medium",
3827
- handle: "chatgpt-plus-pro/gpt-5.4-mini",
3828
- label: "GPT-5.4 Mini (ChatGPT)",
3829
- description: "GPT-5.4 Mini (med reasoning) via ChatGPT Plus/Pro",
3830
- updateArgs: {
3831
- reasoning_effort: "medium",
3832
- verbosity: "low",
3833
- context_window: 272000,
3834
- max_output_tokens: 128000,
3835
- parallel_tool_calls: true
3836
- }
3837
- },
3838
- {
3839
- id: "gpt-5.4-mini-plus-pro-high",
3840
- handle: "chatgpt-plus-pro/gpt-5.4-mini",
3841
- label: "GPT-5.4 Mini (ChatGPT)",
3842
- description: "GPT-5.4 Mini (high reasoning) via ChatGPT Plus/Pro",
3843
- updateArgs: {
3844
- reasoning_effort: "high",
3845
- verbosity: "low",
3846
- context_window: 272000,
3847
- max_output_tokens: 128000,
3848
- parallel_tool_calls: true
3849
- }
3850
- },
3851
- {
3852
- id: "gpt-5.4-mini-plus-pro-xhigh",
3853
- handle: "chatgpt-plus-pro/gpt-5.4-mini",
3854
- label: "GPT-5.4 Mini (ChatGPT)",
3855
- description: "GPT-5.4 Mini (max reasoning) via ChatGPT Plus/Pro",
3856
- updateArgs: {
3857
- reasoning_effort: "xhigh",
3858
- verbosity: "low",
3859
- context_window: 272000,
3860
- max_output_tokens: 128000,
3861
- parallel_tool_calls: true
3862
- }
3863
- },
3864
- {
3865
- id: "gpt-5.3-codex-spark-plus-pro-none",
3866
- handle: "chatgpt-plus-pro/gpt-5.3-codex-spark",
3867
- label: "GPT-5.3 Codex Spark (ChatGPT)",
3868
- description: "GPT-5.3 Codex Spark (no reasoning) via ChatGPT Plus/Pro",
3869
- updateArgs: {
3870
- reasoning_effort: "none",
3871
- verbosity: "low",
3872
- context_window: 128000,
3873
- max_output_tokens: 128000,
3874
- parallel_tool_calls: true
3875
- }
3876
- },
3877
- {
3878
- id: "gpt-5.3-codex-spark-plus-pro-low",
3879
- handle: "chatgpt-plus-pro/gpt-5.3-codex-spark",
3880
- label: "GPT-5.3 Codex Spark (ChatGPT)",
3881
- description: "GPT-5.3 Codex Spark (low reasoning) via ChatGPT Plus/Pro",
3882
- updateArgs: {
3883
- reasoning_effort: "low",
3884
- verbosity: "low",
3885
- context_window: 128000,
3886
- max_output_tokens: 128000,
3887
- parallel_tool_calls: true
3888
- }
3889
- },
3890
- {
3891
- id: "gpt-5.3-codex-spark-plus-pro-medium",
3892
- handle: "chatgpt-plus-pro/gpt-5.3-codex-spark",
3893
- label: "GPT-5.3 Codex Spark (ChatGPT)",
3894
- description: "GPT-5.3 Codex Spark (med reasoning) via ChatGPT Plus/Pro",
3895
- updateArgs: {
3896
- reasoning_effort: "medium",
3897
- verbosity: "low",
3898
- context_window: 128000,
3899
- max_output_tokens: 128000,
3900
- parallel_tool_calls: true
3901
- }
3902
- },
3903
- {
3904
- id: "gpt-5.3-codex-spark-plus-pro-high",
3905
- handle: "chatgpt-plus-pro/gpt-5.3-codex-spark",
3906
- label: "GPT-5.3 Codex Spark (ChatGPT)",
3907
- description: "GPT-5.3 Codex Spark (high reasoning) via ChatGPT Plus/Pro",
3908
- updateArgs: {
3909
- reasoning_effort: "high",
3910
- verbosity: "low",
3911
- context_window: 128000,
3912
- max_output_tokens: 128000,
3913
- parallel_tool_calls: true
3914
- }
3915
- },
3916
- {
3917
- id: "gpt-5.3-codex-spark-plus-pro-xhigh",
3918
- handle: "chatgpt-plus-pro/gpt-5.3-codex-spark",
3919
- label: "GPT-5.3 Codex Spark (ChatGPT)",
3920
- description: "GPT-5.3 Codex Spark (max reasoning) via ChatGPT Plus/Pro",
3921
- updateArgs: {
3922
- reasoning_effort: "xhigh",
3923
- verbosity: "low",
3924
- context_window: 128000,
3925
- max_output_tokens: 128000,
3926
- parallel_tool_calls: true
3927
- }
3928
- },
3929
- {
3930
- id: "gpt-5.5-none",
3931
- handle: "openai/gpt-5.5",
3932
- label: "GPT-5.5",
3933
- description: "OpenAI's most capable model (no reasoning)",
3934
- updateArgs: {
3935
- reasoning_effort: "none",
3936
- verbosity: "medium",
3937
- context_window: 272000,
3938
- max_output_tokens: 128000,
3939
- parallel_tool_calls: true
3940
- }
3941
- },
3942
- {
3943
- id: "gpt-5.5-low",
3944
- handle: "openai/gpt-5.5",
3945
- label: "GPT-5.5",
3946
- description: "OpenAI's most capable model (low reasoning)",
3947
- updateArgs: {
3948
- reasoning_effort: "low",
3949
- verbosity: "medium",
3950
- context_window: 272000,
3951
- max_output_tokens: 128000,
3952
- parallel_tool_calls: true
3953
- }
3954
- },
3955
- {
3956
- id: "gpt-5.5-medium",
3957
- handle: "openai/gpt-5.5",
3958
- label: "GPT-5.5",
3959
- description: "OpenAI's most capable model (med reasoning)",
3960
- updateArgs: {
3961
- reasoning_effort: "medium",
3962
- verbosity: "medium",
3963
- context_window: 272000,
3964
- max_output_tokens: 128000,
3965
- parallel_tool_calls: true
3966
- }
3967
- },
3968
- {
3969
- id: "gpt-5.5-high",
3970
- handle: "openai/gpt-5.5",
3971
- label: "GPT-5.5",
3972
- description: "OpenAI's most capable model (high reasoning)",
3973
- updateArgs: {
3974
- reasoning_effort: "high",
3975
- verbosity: "medium",
3976
- context_window: 272000,
3977
- max_output_tokens: 128000,
3978
- parallel_tool_calls: true
3979
- }
3980
- },
3981
- {
3982
- id: "gpt-5.5-xhigh",
3983
- handle: "openai/gpt-5.5",
3984
- label: "GPT-5.5",
3985
- description: "OpenAI's most capable model (max reasoning)",
3986
- updateArgs: {
3987
- reasoning_effort: "xhigh",
3988
- verbosity: "medium",
3989
- context_window: 272000,
3990
- max_output_tokens: 128000,
3991
- parallel_tool_calls: true
3992
- }
3993
- },
3994
- {
3995
- id: "gpt-5.4-none",
3996
- handle: "openai/gpt-5.4",
3997
- label: "GPT-5.4",
3998
- description: "OpenAI's most capable model (no reasoning)",
3999
- updateArgs: {
4000
- reasoning_effort: "none",
4001
- verbosity: "medium",
4002
- context_window: 272000,
4003
- max_output_tokens: 128000,
4004
- parallel_tool_calls: true
4005
- }
4006
- },
4007
- {
4008
- id: "gpt-5.4-low",
4009
- handle: "openai/gpt-5.4",
4010
- label: "GPT-5.4",
4011
- description: "OpenAI's most capable model (low reasoning)",
4012
- updateArgs: {
4013
- reasoning_effort: "low",
4014
- verbosity: "medium",
4015
- context_window: 272000,
4016
- max_output_tokens: 128000,
4017
- parallel_tool_calls: true
4018
- }
4019
- },
4020
- {
4021
- id: "gpt-5.4-medium",
4022
- handle: "openai/gpt-5.4",
4023
- label: "GPT-5.4",
4024
- description: "OpenAI's most capable model (med reasoning)",
4025
- updateArgs: {
4026
- reasoning_effort: "medium",
4027
- verbosity: "medium",
4028
- context_window: 272000,
4029
- max_output_tokens: 128000,
4030
- parallel_tool_calls: true
4031
- }
4032
- },
4033
- {
4034
- id: "gpt-5.4-high",
4035
- handle: "openai/gpt-5.4",
4036
- label: "GPT-5.4",
4037
- description: "OpenAI's most capable model (high reasoning)",
4038
- updateArgs: {
4039
- reasoning_effort: "high",
4040
- verbosity: "medium",
4041
- context_window: 272000,
4042
- max_output_tokens: 128000,
4043
- parallel_tool_calls: true
4044
- }
4045
- },
4046
- {
4047
- id: "gpt-5.4-xhigh",
4048
- handle: "openai/gpt-5.4",
4049
- label: "GPT-5.4",
4050
- description: "OpenAI's most capable model (max reasoning)",
4051
- updateArgs: {
4052
- reasoning_effort: "xhigh",
4053
- verbosity: "medium",
4054
- context_window: 272000,
4055
- max_output_tokens: 128000,
4056
- parallel_tool_calls: true
4057
- }
4058
- },
4059
- {
4060
- id: "gpt-5.4-fast-none",
4061
- handle: "openai/gpt-5.4-fast",
4062
- label: "GPT-5.4 Fast",
4063
- description: "GPT-5.4 with priority service tier (no reasoning)",
4064
- updateArgs: {
4065
- reasoning_effort: "none",
4066
- verbosity: "medium",
4067
- context_window: 272000,
4068
- max_output_tokens: 128000,
4069
- parallel_tool_calls: true
4070
- }
4071
- },
4072
- {
4073
- id: "gpt-5.4-fast-low",
4074
- handle: "openai/gpt-5.4-fast",
4075
- label: "GPT-5.4 Fast",
4076
- description: "GPT-5.4 with priority service tier (low reasoning)",
4077
- updateArgs: {
4078
- reasoning_effort: "low",
4079
- verbosity: "medium",
4080
- context_window: 272000,
4081
- max_output_tokens: 128000,
4082
- parallel_tool_calls: true
4083
- }
4084
- },
4085
- {
4086
- id: "gpt-5.4-fast-medium",
4087
- handle: "openai/gpt-5.4-fast",
4088
- label: "GPT-5.4 Fast",
4089
- description: "GPT-5.4 with priority service tier (med reasoning)",
4090
- updateArgs: {
4091
- reasoning_effort: "medium",
4092
- verbosity: "medium",
4093
- context_window: 272000,
4094
- max_output_tokens: 128000,
4095
- parallel_tool_calls: true
4096
- }
4097
- },
4098
- {
4099
- id: "gpt-5.4-fast-high",
4100
- handle: "openai/gpt-5.4-fast",
4101
- label: "GPT-5.4 Fast",
4102
- description: "GPT-5.4 with priority service tier (high reasoning)",
4103
- updateArgs: {
4104
- reasoning_effort: "high",
4105
- verbosity: "medium",
4106
- context_window: 272000,
4107
- max_output_tokens: 128000,
4108
- parallel_tool_calls: true
4109
- }
4110
- },
4111
- {
4112
- id: "gpt-5.4-fast-xhigh",
4113
- handle: "openai/gpt-5.4-fast",
4114
- label: "GPT-5.4 Fast",
4115
- description: "GPT-5.4 with priority service tier (max reasoning)",
4116
- updateArgs: {
4117
- reasoning_effort: "xhigh",
4118
- verbosity: "medium",
4119
- context_window: 272000,
4120
- max_output_tokens: 128000,
4121
- parallel_tool_calls: true
4122
- }
4123
- },
4124
- {
4125
- id: "gpt-5.4-mini-none",
4126
- handle: "openai/gpt-5.4-mini",
4127
- label: "GPT-5.4 Mini",
4128
- description: "Fast, efficient GPT-5.4 variant (no reasoning)",
4129
- updateArgs: {
4130
- reasoning_effort: "none",
4131
- verbosity: "low",
4132
- context_window: 272000,
4133
- max_output_tokens: 128000,
4134
- parallel_tool_calls: true
4135
- }
4136
- },
4137
- {
4138
- id: "gpt-5.4-mini-low",
4139
- handle: "openai/gpt-5.4-mini",
4140
- label: "GPT-5.4 Mini",
4141
- description: "Fast, efficient GPT-5.4 variant (low reasoning)",
4142
- updateArgs: {
4143
- reasoning_effort: "low",
4144
- verbosity: "low",
4145
- context_window: 272000,
4146
- max_output_tokens: 128000,
4147
- parallel_tool_calls: true
4148
- }
4149
- },
4150
- {
4151
- id: "gpt-5.4-mini-medium",
4152
- handle: "openai/gpt-5.4-mini",
4153
- label: "GPT-5.4 Mini",
4154
- description: "Fast, efficient GPT-5.4 variant (med reasoning)",
4155
- updateArgs: {
4156
- reasoning_effort: "medium",
4157
- verbosity: "low",
4158
- context_window: 272000,
4159
- max_output_tokens: 128000,
4160
- parallel_tool_calls: true
4161
- }
4162
- },
4163
- {
4164
- id: "gpt-5.4-mini-high",
4165
- handle: "openai/gpt-5.4-mini",
4166
- label: "GPT-5.4 Mini",
4167
- description: "Fast, efficient GPT-5.4 variant (high reasoning)",
4168
- updateArgs: {
4169
- reasoning_effort: "high",
4170
- verbosity: "low",
4171
- context_window: 272000,
4172
- max_output_tokens: 128000,
4173
- parallel_tool_calls: true
4174
- }
4175
- },
4176
- {
4177
- id: "gpt-5.4-mini-xhigh",
4178
- handle: "openai/gpt-5.4-mini",
4179
- label: "GPT-5.4 Mini",
4180
- description: "Fast, efficient GPT-5.4 variant (max reasoning)",
4181
- updateArgs: {
4182
- reasoning_effort: "xhigh",
4183
- verbosity: "low",
4184
- context_window: 272000,
4185
- max_output_tokens: 128000,
4186
- parallel_tool_calls: true
4187
- }
4188
- },
4189
- {
4190
- id: "gpt-5.3-codex-none",
4191
- handle: "openai/gpt-5.3-codex",
4192
- label: "GPT-5.3-Codex",
4193
- description: "GPT-5.3 variant (no reasoning) optimized for coding",
4194
- updateArgs: {
4195
- reasoning_effort: "none",
4196
- verbosity: "medium",
4197
- context_window: 272000,
4198
- max_output_tokens: 128000,
4199
- parallel_tool_calls: true
4200
- }
4201
- },
4202
- {
4203
- id: "gpt-5.3-codex-low",
4204
- handle: "openai/gpt-5.3-codex",
4205
- label: "GPT-5.3-Codex",
4206
- description: "GPT-5.3 variant (low reasoning) optimized for coding",
4207
- updateArgs: {
4208
- reasoning_effort: "low",
4209
- verbosity: "medium",
4210
- context_window: 272000,
4211
- max_output_tokens: 128000,
4212
- parallel_tool_calls: true
4213
- }
4214
- },
4215
- {
4216
- id: "gpt-5.3-codex-medium",
4217
- handle: "openai/gpt-5.3-codex",
4218
- label: "GPT-5.3-Codex",
4219
- description: "GPT-5.3 variant (med reasoning) optimized for coding",
4220
- updateArgs: {
4221
- reasoning_effort: "medium",
4222
- verbosity: "medium",
4223
- context_window: 272000,
4224
- max_output_tokens: 128000,
4225
- parallel_tool_calls: true
4226
- }
4227
- },
4228
- {
4229
- id: "gpt-5.3-codex-high",
4230
- handle: "openai/gpt-5.3-codex",
4231
- label: "GPT-5.3-Codex",
4232
- description: "OpenAI's best coding model (high reasoning)",
4233
- updateArgs: {
4234
- reasoning_effort: "high",
4235
- verbosity: "medium",
4236
- context_window: 272000,
4237
- max_output_tokens: 128000,
4238
- parallel_tool_calls: true
4239
- }
4240
- },
4241
- {
4242
- id: "gpt-5.3-codex-xhigh",
4243
- handle: "openai/gpt-5.3-codex",
4244
- label: "GPT-5.3-Codex",
4245
- description: "GPT-5.3 variant (max reasoning) optimized for coding",
4246
- updateArgs: {
4247
- reasoning_effort: "xhigh",
4248
- verbosity: "medium",
4249
- context_window: 272000,
4250
- max_output_tokens: 128000,
4251
- parallel_tool_calls: true
4252
- }
4253
- },
4254
- {
4255
- id: "grok-4.5",
4256
- handle: "xai/grok-4.5",
4257
- label: "Grok 4.5",
4258
- description: "xAI's Grok 4.5 model via the direct xAI API",
4259
- isFeatured: true,
4260
- updateArgs: {
4261
- context_window: 500000,
4262
- max_output_tokens: 16384,
4263
- parallel_tool_calls: true
4264
- }
4265
- },
4266
- {
4267
- id: "glm-5.2",
4268
- handle: "zai/glm-5.2",
4269
- label: "GLM-5.2",
4270
- description: "zAI's latest reasoning and coding model with 1M context",
4271
- isFeatured: true,
4272
- free: true,
4273
- updateArgs: {
4274
- context_window: 1e6,
4275
- max_output_tokens: 131072,
4276
- parallel_tool_calls: true
4277
- }
4278
- },
4279
- {
4280
- id: "glm-5.1",
4281
- handle: "zai/glm-5.1",
4282
- label: "GLM-5.1",
4283
- description: "zAI's coding model",
4284
- isFeatured: false,
4285
- free: true,
4286
- updateArgs: {
4287
- context_window: 180000,
4288
- max_output_tokens: 16000,
4289
- parallel_tool_calls: true
4290
- }
4291
- },
4292
- {
4293
- id: "minimax-m3",
4294
- handle: "minimax/MiniMax-M3",
4295
- label: "MiniMax M3",
4296
- description: "MiniMax's frontier M-series model for agentic reasoning, tool use, coding, multimodal chat input, and long-context tasks",
4297
- isFeatured: true,
4298
- updateArgs: {
4299
- context_window: 500000,
4300
- parallel_tool_calls: true
4301
- }
4302
- },
4303
- {
4304
- id: "minimax-m2.7",
4305
- handle: "minimax/MiniMax-M2.7",
4306
- label: "MiniMax 2.7",
4307
- description: "MiniMax's M2.7 coding model",
4308
- free: true,
4309
- updateArgs: {
4310
- context_window: 160000,
4311
- max_output_tokens: 64000,
4312
- parallel_tool_calls: true
4313
- }
4314
- },
4315
- {
4316
- id: "kimi-k3",
4317
- handle: "moonshot/kimi-k3",
4318
- label: "Kimi K3",
4319
- description: "Moonshot AI's Kimi K3 model for long-context agentic coding and reasoning tasks",
4320
- isFeatured: true,
4321
- updateArgs: {
4322
- context_window: 1048576,
4323
- max_output_tokens: 131072,
4324
- parallel_tool_calls: true
4325
- }
4326
- },
4327
- {
4328
- id: "gemini-3.1",
4329
- handle: "google_ai/gemini-3.1-pro-preview",
4330
- label: "Gemini 3.1 Pro",
4331
- description: "Google's latest and smartest model",
4332
- isFeatured: true,
4333
- updateArgs: {
4334
- context_window: 180000,
4335
- temperature: 1,
4336
- parallel_tool_calls: true
4337
- }
4338
- },
4339
- {
4340
- id: "gemini-3.5-flash",
4341
- handle: "google_ai/gemini-3.5-flash",
4342
- label: "Gemini 3.5 Flash",
4343
- description: "Google's Gemini 3.5 Flash model",
4344
- updateArgs: {
4345
- context_window: 1048576,
4346
- temperature: 1,
4347
- parallel_tool_calls: true
4348
- }
4349
- },
4350
- {
4351
- id: "gemini-3.6-flash",
4352
- handle: "google_ai/gemini-3.6-flash",
4353
- label: "Gemini 3.6 Flash",
4354
- description: "Google's Gemini 3.6 Flash model",
4355
- isFeatured: true,
4356
- updateArgs: {
4357
- context_window: 1048576,
4358
- temperature: 1,
4359
- parallel_tool_calls: true
4360
- }
4361
- }
4362
- ]
4363
- };
4364
1891
 
4365
1892
  // src/agent/model-catalog.ts
4366
- var models = models_default.models;
4367
- var MODEL_PRESETS = models;
4368
- function resolveModel(modelIdentifier) {
4369
- const byId = models.find((m) => m.id === modelIdentifier);
4370
- if (byId)
4371
- return byId.handle;
4372
- const byHandle = models.find((m) => m.handle === modelIdentifier);
4373
- if (byHandle)
4374
- return byHandle.handle;
4375
- if (modelIdentifier.includes("/")) {
4376
- return modelIdentifier;
1893
+ var models = [];
1894
+ var BUILTIN_MODEL_ALIASES = new Map([
1895
+ ["auto", "letta/auto"],
1896
+ ["auto-chat", "letta/auto-chat"],
1897
+ ["auto-fast", "letta/auto-fast"]
1898
+ ]);
1899
+ function resolveEstablishedCliAlias(modelIdentifier) {
1900
+ if (modelIdentifier === "haiku") {
1901
+ return models.find((model) => model.handle.includes("claude-haiku-4-5")) ?? null;
1902
+ }
1903
+ if (modelIdentifier === "sonnet-4.6-low") {
1904
+ const matchingModels = models.filter((model) => model.handle.includes("claude-sonnet-4-6"));
1905
+ const lowEffortModel = matchingModels.find((model) => model.updateArgs?.reasoning_effort === "low");
1906
+ if (lowEffortModel)
1907
+ return lowEffortModel;
1908
+ const baseModel = matchingModels[0];
1909
+ return baseModel ? {
1910
+ ...baseModel,
1911
+ id: modelIdentifier,
1912
+ updateArgs: {
1913
+ ...baseModel.updateArgs,
1914
+ reasoning_effort: "low",
1915
+ enable_reasoner: true
1916
+ }
1917
+ } : null;
4377
1918
  }
4378
1919
  return null;
4379
1920
  }
1921
+ function resolveCatalogModel(modelIdentifier) {
1922
+ const byId = models.find((model) => model.id === modelIdentifier);
1923
+ if (byId)
1924
+ return byId;
1925
+ const byHandle = models.find((model) => model.handle === modelIdentifier);
1926
+ if (byHandle)
1927
+ return byHandle;
1928
+ const cliAlias = resolveEstablishedCliAlias(modelIdentifier);
1929
+ if (cliAlias)
1930
+ return cliAlias;
1931
+ const matches = models.filter((model) => model.handle.split("/").slice(1).join("/") === modelIdentifier);
1932
+ const matchingHandles = new Set(matches.map((model) => model.handle));
1933
+ return matchingHandles.size === 1 ? matches[0] ?? null : null;
1934
+ }
1935
+ function resolveModel(modelIdentifier) {
1936
+ const entry = resolveCatalogModel(modelIdentifier);
1937
+ if (entry)
1938
+ return entry.handle;
1939
+ const builtinHandle = BUILTIN_MODEL_ALIASES.get(modelIdentifier);
1940
+ if (builtinHandle)
1941
+ return builtinHandle;
1942
+ return modelIdentifier.includes("/") ? modelIdentifier : null;
1943
+ }
4380
1944
  function getDefaultModel() {
4381
- const autoModel = resolveModel("auto");
1945
+ if (models.length === 0)
1946
+ return "letta/auto";
1947
+ const autoModel = models.find((model) => model.id === "auto");
4382
1948
  if (autoModel)
4383
- return autoModel;
4384
- const defaultModel = models.find((m) => m.isDefault);
1949
+ return autoModel.handle;
1950
+ const defaultModel = models.find((model) => model.isDefault);
4385
1951
  if (defaultModel)
4386
1952
  return defaultModel.handle;
4387
1953
  const firstModel = models[0];
4388
1954
  if (!firstModel) {
4389
- throw new Error("No models available in models.json");
1955
+ throw new Error("Model catalog is unavailable.");
4390
1956
  }
4391
1957
  return firstModel.handle;
4392
1958
  }
@@ -4701,7 +2267,6 @@ export {
4701
2267
  PERSONALITY_TAG_PREFIX,
4702
2268
  PERSONALITY_OPTIONS,
4703
2269
  ONBOARDING_ORIGIN_TAG,
4704
- MODEL_PRESETS,
4705
2270
  LETTA_CODE_SUBAGENT_TAG,
4706
2271
  LETTA_CODE_ORIGIN_TAG,
4707
2272
  LETTA_CODE_AGENT_TYPE,
@@ -4710,4 +2275,4 @@ export {
4710
2275
  DEFAULT_CREATED_AGENT_BASE_TOOLS
4711
2276
  };
4712
2277
 
4713
- //# debugId=F92CAF08C85B7BB464756E2164756E21
2278
+ //# debugId=06F6E8E49135EA6464756E2164756E21