@bastani/atomic 0.8.28 → 0.8.29-alpha.3

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 (145) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/dist/builtin/cursor/CHANGELOG.md +27 -0
  3. package/dist/builtin/cursor/LICENSE +26 -0
  4. package/dist/builtin/cursor/README.md +22 -0
  5. package/dist/builtin/cursor/index.ts +9 -0
  6. package/dist/builtin/cursor/package.json +46 -0
  7. package/dist/builtin/cursor/src/auth.ts +352 -0
  8. package/dist/builtin/cursor/src/catalog-cache.ts +155 -0
  9. package/dist/builtin/cursor/src/config.ts +123 -0
  10. package/dist/builtin/cursor/src/conversation-state.ts +135 -0
  11. package/dist/builtin/cursor/src/cursor-models-raw.json +583 -0
  12. package/dist/builtin/cursor/src/model-mapper.ts +270 -0
  13. package/dist/builtin/cursor/src/models.ts +54 -0
  14. package/dist/builtin/cursor/src/native-loader.ts +71 -0
  15. package/dist/builtin/cursor/src/proto/README.md +34 -0
  16. package/dist/builtin/cursor/src/proto/agent_pb.ts +15294 -0
  17. package/dist/builtin/cursor/src/proto/protobuf-codec.ts +717 -0
  18. package/dist/builtin/cursor/src/provider.ts +301 -0
  19. package/dist/builtin/cursor/src/stream.ts +564 -0
  20. package/dist/builtin/cursor/src/transport.ts +791 -0
  21. package/dist/builtin/intercom/CHANGELOG.md +4 -0
  22. package/dist/builtin/intercom/package.json +2 -2
  23. package/dist/builtin/intercom/skills/intercom/SKILL.md +5 -5
  24. package/dist/builtin/mcp/CHANGELOG.md +4 -0
  25. package/dist/builtin/mcp/package.json +3 -3
  26. package/dist/builtin/subagents/CHANGELOG.md +13 -0
  27. package/dist/builtin/subagents/README.md +7 -3
  28. package/dist/builtin/subagents/agents/codebase-online-researcher.md +9 -24
  29. package/dist/builtin/subagents/agents/debugger.md +3 -5
  30. package/dist/builtin/subagents/package.json +4 -4
  31. package/dist/builtin/subagents/src/runs/background/subagent-runner.ts +2 -1
  32. package/dist/builtin/subagents/src/runs/foreground/execution.ts +2 -1
  33. package/dist/builtin/subagents/src/runs/shared/parallel-utils.ts +1 -0
  34. package/dist/builtin/subagents/src/runs/shared/pi-args.ts +19 -2
  35. package/dist/builtin/subagents/src/runs/shared/structured-output.ts +271 -10
  36. package/dist/builtin/subagents/src/runs/shared/subagent-prompt-runtime.ts +12 -39
  37. package/dist/builtin/subagents/src/shared/types.ts +5 -3
  38. package/dist/builtin/subagents/src/shared/utils.ts +50 -10
  39. package/dist/builtin/subagents/src/slash/saved-chain-mapping.ts +77 -0
  40. package/dist/builtin/subagents/src/slash/slash-commands.ts +1 -55
  41. package/dist/builtin/web-access/CHANGELOG.md +5 -1
  42. package/dist/builtin/web-access/README.md +1 -1
  43. package/dist/builtin/web-access/github-extract.ts +1 -1
  44. package/dist/builtin/web-access/package.json +3 -3
  45. package/dist/builtin/workflows/CHANGELOG.md +26 -0
  46. package/dist/builtin/workflows/README.md +28 -8
  47. package/dist/builtin/workflows/builtin/deep-research-codebase.ts +9 -49
  48. package/dist/builtin/workflows/builtin/goal.ts +63 -106
  49. package/dist/builtin/workflows/builtin/index.d.ts +2 -0
  50. package/dist/builtin/workflows/builtin/open-claude-design.ts +31 -76
  51. package/dist/builtin/workflows/builtin/ralph.d.ts +2 -0
  52. package/dist/builtin/workflows/builtin/ralph.ts +227 -518
  53. package/dist/builtin/workflows/builtin/shared-prompts.ts +7 -0
  54. package/dist/builtin/workflows/package.json +2 -2
  55. package/dist/builtin/workflows/skills/research-codebase/SKILL.md +17 -3
  56. package/dist/builtin/workflows/src/extension/wiring.ts +72 -9
  57. package/dist/builtin/workflows/src/extension/workflow-schema.ts +34 -0
  58. package/dist/builtin/workflows/src/runs/foreground/executor.ts +13 -2
  59. package/dist/builtin/workflows/src/runs/foreground/stage-runner.ts +86 -14
  60. package/dist/builtin/workflows/src/shared/authoring-contract.d.ts +11 -3
  61. package/dist/builtin/workflows/src/shared/types.ts +8 -4
  62. package/dist/builtin/workflows/src/tui/overlay-adapter.ts +64 -2
  63. package/dist/builtin/workflows/src/tui/workflow-attach-pane.ts +8 -8
  64. package/dist/builtin/workflows/src/tui/workflow-status.ts +2 -0
  65. package/dist/core/atomic-guide-command.d.ts.map +1 -1
  66. package/dist/core/atomic-guide-command.js +7 -7
  67. package/dist/core/atomic-guide-command.js.map +1 -1
  68. package/dist/core/builtin-packages.d.ts.map +1 -1
  69. package/dist/core/builtin-packages.js +6 -0
  70. package/dist/core/builtin-packages.js.map +1 -1
  71. package/dist/core/extensions/index.d.ts +1 -1
  72. package/dist/core/extensions/index.d.ts.map +1 -1
  73. package/dist/core/extensions/index.js.map +1 -1
  74. package/dist/core/extensions/types.d.ts +20 -0
  75. package/dist/core/extensions/types.d.ts.map +1 -1
  76. package/dist/core/extensions/types.js.map +1 -1
  77. package/dist/core/model-resolver.d.ts +1 -0
  78. package/dist/core/model-resolver.d.ts.map +1 -1
  79. package/dist/core/model-resolver.js +17 -8
  80. package/dist/core/model-resolver.js.map +1 -1
  81. package/dist/core/package-manager.d.ts +11 -9
  82. package/dist/core/package-manager.d.ts.map +1 -1
  83. package/dist/core/package-manager.js +55 -10
  84. package/dist/core/package-manager.js.map +1 -1
  85. package/dist/core/project-trust.d.ts +1 -0
  86. package/dist/core/project-trust.d.ts.map +1 -1
  87. package/dist/core/project-trust.js +3 -3
  88. package/dist/core/project-trust.js.map +1 -1
  89. package/dist/core/resource-loader.d.ts +11 -2
  90. package/dist/core/resource-loader.d.ts.map +1 -1
  91. package/dist/core/resource-loader.js +72 -9
  92. package/dist/core/resource-loader.js.map +1 -1
  93. package/dist/core/sdk.d.ts +3 -3
  94. package/dist/core/sdk.d.ts.map +1 -1
  95. package/dist/core/sdk.js +5 -5
  96. package/dist/core/sdk.js.map +1 -1
  97. package/dist/core/tools/index.d.ts +1 -0
  98. package/dist/core/tools/index.d.ts.map +1 -1
  99. package/dist/core/tools/index.js +1 -0
  100. package/dist/core/tools/index.js.map +1 -1
  101. package/dist/core/tools/structured-output.d.ts +39 -0
  102. package/dist/core/tools/structured-output.d.ts.map +1 -0
  103. package/dist/core/tools/structured-output.js +141 -0
  104. package/dist/core/tools/structured-output.js.map +1 -0
  105. package/dist/index.d.ts +1 -1
  106. package/dist/index.d.ts.map +1 -1
  107. package/dist/index.js +1 -1
  108. package/dist/index.js.map +1 -1
  109. package/dist/main.d.ts.map +1 -1
  110. package/dist/main.js +36 -14
  111. package/dist/main.js.map +1 -1
  112. package/dist/modes/interactive/components/login-dialog.d.ts +3 -0
  113. package/dist/modes/interactive/components/login-dialog.d.ts.map +1 -1
  114. package/dist/modes/interactive/components/login-dialog.js +16 -0
  115. package/dist/modes/interactive/components/login-dialog.js.map +1 -1
  116. package/dist/modes/interactive/interactive-mode.d.ts +11 -0
  117. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  118. package/dist/modes/interactive/interactive-mode.js +158 -11
  119. package/dist/modes/interactive/interactive-mode.js.map +1 -1
  120. package/dist/modes/print-mode.d.ts.map +1 -1
  121. package/dist/modes/print-mode.js +39 -0
  122. package/dist/modes/print-mode.js.map +1 -1
  123. package/docs/custom-provider.md +1 -0
  124. package/docs/extensions.md +2 -2
  125. package/docs/models.md +2 -0
  126. package/docs/packages.md +3 -1
  127. package/docs/providers.md +15 -0
  128. package/docs/quickstart.md +3 -3
  129. package/docs/sdk.md +61 -0
  130. package/docs/security.md +1 -1
  131. package/docs/subagents.md +21 -0
  132. package/docs/usage.md +2 -0
  133. package/docs/workflows.md +28 -21
  134. package/examples/extensions/README.md +1 -1
  135. package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
  136. package/examples/extensions/custom-provider-anthropic/package.json +1 -1
  137. package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
  138. package/examples/extensions/gondolin/package-lock.json +2 -2
  139. package/examples/extensions/gondolin/package.json +1 -1
  140. package/examples/extensions/sandbox/package-lock.json +2 -2
  141. package/examples/extensions/sandbox/package.json +1 -1
  142. package/examples/extensions/structured-output.ts +22 -53
  143. package/examples/extensions/with-deps/package-lock.json +2 -2
  144. package/examples/extensions/with-deps/package.json +1 -1
  145. package/package.json +12 -9
@@ -0,0 +1,583 @@
1
+ [
2
+ {
3
+ "id": "claude-4-sonnet",
4
+ "name": "Sonnet 4",
5
+ "reasoning": false,
6
+ "contextWindow": 200000,
7
+ "maxTokens": 64000
8
+ },
9
+ {
10
+ "id": "claude-4-sonnet-1m",
11
+ "name": "Sonnet 4 1M",
12
+ "reasoning": false,
13
+ "contextWindow": 200000,
14
+ "maxTokens": 64000
15
+ },
16
+ {
17
+ "id": "claude-4-sonnet-1m-thinking",
18
+ "name": "Sonnet 4 1M Thinking",
19
+ "reasoning": false,
20
+ "contextWindow": 200000,
21
+ "maxTokens": 64000
22
+ },
23
+ {
24
+ "id": "claude-4-sonnet-thinking",
25
+ "name": "Sonnet 4 Thinking",
26
+ "reasoning": false,
27
+ "contextWindow": 200000,
28
+ "maxTokens": 64000
29
+ },
30
+ {
31
+ "id": "claude-4.5-opus-high",
32
+ "name": "Opus 4.5",
33
+ "reasoning": false,
34
+ "contextWindow": 200000,
35
+ "maxTokens": 64000
36
+ },
37
+ {
38
+ "id": "claude-4.5-opus-high-thinking",
39
+ "name": "Opus 4.5 Thinking",
40
+ "reasoning": false,
41
+ "contextWindow": 200000,
42
+ "maxTokens": 64000
43
+ },
44
+ {
45
+ "id": "claude-4.5-sonnet",
46
+ "name": "Sonnet 4.5 1M",
47
+ "reasoning": false,
48
+ "contextWindow": 200000,
49
+ "maxTokens": 64000
50
+ },
51
+ {
52
+ "id": "claude-4.5-sonnet-thinking",
53
+ "name": "Sonnet 4.5 1M Thinking",
54
+ "reasoning": false,
55
+ "contextWindow": 200000,
56
+ "maxTokens": 64000
57
+ },
58
+ {
59
+ "id": "claude-4.6-opus-high",
60
+ "name": "Opus 4.6 1M",
61
+ "reasoning": false,
62
+ "contextWindow": 200000,
63
+ "maxTokens": 64000
64
+ },
65
+ {
66
+ "id": "claude-4.6-opus-high-thinking",
67
+ "name": "Opus 4.6 1M Thinking",
68
+ "reasoning": false,
69
+ "contextWindow": 200000,
70
+ "maxTokens": 64000
71
+ },
72
+ {
73
+ "id": "claude-4.6-opus-max",
74
+ "name": "Opus 4.6 1M Max",
75
+ "reasoning": false,
76
+ "contextWindow": 200000,
77
+ "maxTokens": 64000
78
+ },
79
+ {
80
+ "id": "claude-4.6-opus-max-thinking",
81
+ "name": "Opus 4.6 1M Max Thinking",
82
+ "reasoning": false,
83
+ "contextWindow": 200000,
84
+ "maxTokens": 64000
85
+ },
86
+ {
87
+ "id": "claude-4.6-sonnet-medium",
88
+ "name": "Sonnet 4.6 1M",
89
+ "reasoning": false,
90
+ "contextWindow": 200000,
91
+ "maxTokens": 64000
92
+ },
93
+ {
94
+ "id": "claude-4.6-sonnet-medium-thinking",
95
+ "name": "Sonnet 4.6 1M Thinking",
96
+ "reasoning": false,
97
+ "contextWindow": 200000,
98
+ "maxTokens": 64000
99
+ },
100
+ {
101
+ "id": "composer-1.5",
102
+ "name": "Composer 1.5",
103
+ "reasoning": false,
104
+ "contextWindow": 200000,
105
+ "maxTokens": 64000
106
+ },
107
+ {
108
+ "id": "composer-2",
109
+ "name": "Composer 2",
110
+ "reasoning": false,
111
+ "contextWindow": 200000,
112
+ "maxTokens": 64000
113
+ },
114
+ {
115
+ "id": "composer-2-fast",
116
+ "name": "Composer 2 Fast",
117
+ "reasoning": false,
118
+ "contextWindow": 200000,
119
+ "maxTokens": 64000
120
+ },
121
+ {
122
+ "id": "default",
123
+ "name": "Auto",
124
+ "reasoning": false,
125
+ "contextWindow": 200000,
126
+ "maxTokens": 64000
127
+ },
128
+ {
129
+ "id": "gemini-3-flash",
130
+ "name": "Gemini 3 Flash",
131
+ "reasoning": false,
132
+ "contextWindow": 200000,
133
+ "maxTokens": 64000
134
+ },
135
+ {
136
+ "id": "gemini-3.1-pro",
137
+ "name": "Gemini 3.1 Pro",
138
+ "reasoning": false,
139
+ "contextWindow": 200000,
140
+ "maxTokens": 64000
141
+ },
142
+ {
143
+ "id": "gpt-5-mini",
144
+ "name": "GPT-5 Mini",
145
+ "reasoning": false,
146
+ "contextWindow": 200000,
147
+ "maxTokens": 64000
148
+ },
149
+ {
150
+ "id": "gpt-5.1",
151
+ "name": "GPT-5.1",
152
+ "reasoning": false,
153
+ "contextWindow": 200000,
154
+ "maxTokens": 64000
155
+ },
156
+ {
157
+ "id": "gpt-5.1-codex-max-high",
158
+ "name": "GPT-5.1 Codex Max High",
159
+ "reasoning": false,
160
+ "contextWindow": 200000,
161
+ "maxTokens": 64000
162
+ },
163
+ {
164
+ "id": "gpt-5.1-codex-max-high-fast",
165
+ "name": "GPT-5.1 Codex Max High Fast",
166
+ "reasoning": false,
167
+ "contextWindow": 200000,
168
+ "maxTokens": 64000
169
+ },
170
+ {
171
+ "id": "gpt-5.1-codex-max-low",
172
+ "name": "GPT-5.1 Codex Max Low",
173
+ "reasoning": false,
174
+ "contextWindow": 200000,
175
+ "maxTokens": 64000
176
+ },
177
+ {
178
+ "id": "gpt-5.1-codex-max-low-fast",
179
+ "name": "GPT-5.1 Codex Max Low Fast",
180
+ "reasoning": false,
181
+ "contextWindow": 200000,
182
+ "maxTokens": 64000
183
+ },
184
+ {
185
+ "id": "gpt-5.1-codex-max-medium",
186
+ "name": "GPT-5.1 Codex Max",
187
+ "reasoning": false,
188
+ "contextWindow": 200000,
189
+ "maxTokens": 64000
190
+ },
191
+ {
192
+ "id": "gpt-5.1-codex-max-medium-fast",
193
+ "name": "GPT-5.1 Codex Max Medium Fast",
194
+ "reasoning": false,
195
+ "contextWindow": 200000,
196
+ "maxTokens": 64000
197
+ },
198
+ {
199
+ "id": "gpt-5.1-codex-max-xhigh",
200
+ "name": "GPT-5.1 Codex Max Extra High",
201
+ "reasoning": false,
202
+ "contextWindow": 200000,
203
+ "maxTokens": 64000
204
+ },
205
+ {
206
+ "id": "gpt-5.1-codex-max-xhigh-fast",
207
+ "name": "GPT-5.1 Codex Max Extra High Fast",
208
+ "reasoning": false,
209
+ "contextWindow": 200000,
210
+ "maxTokens": 64000
211
+ },
212
+ {
213
+ "id": "gpt-5.1-codex-mini",
214
+ "name": "GPT-5.1 Codex Mini",
215
+ "reasoning": false,
216
+ "contextWindow": 200000,
217
+ "maxTokens": 64000
218
+ },
219
+ {
220
+ "id": "gpt-5.1-codex-mini-high",
221
+ "name": "GPT-5.1 Codex Mini High",
222
+ "reasoning": false,
223
+ "contextWindow": 200000,
224
+ "maxTokens": 64000
225
+ },
226
+ {
227
+ "id": "gpt-5.1-codex-mini-low",
228
+ "name": "GPT-5.1 Codex Mini Low",
229
+ "reasoning": false,
230
+ "contextWindow": 200000,
231
+ "maxTokens": 64000
232
+ },
233
+ {
234
+ "id": "gpt-5.1-high",
235
+ "name": "GPT-5.1 High",
236
+ "reasoning": false,
237
+ "contextWindow": 200000,
238
+ "maxTokens": 64000
239
+ },
240
+ {
241
+ "id": "gpt-5.1-low",
242
+ "name": "GPT-5.1 Low",
243
+ "reasoning": false,
244
+ "contextWindow": 200000,
245
+ "maxTokens": 64000
246
+ },
247
+ {
248
+ "id": "gpt-5.2",
249
+ "name": "GPT-5.2",
250
+ "reasoning": false,
251
+ "contextWindow": 200000,
252
+ "maxTokens": 64000
253
+ },
254
+ {
255
+ "id": "gpt-5.2-codex",
256
+ "name": "GPT-5.2 Codex",
257
+ "reasoning": false,
258
+ "contextWindow": 200000,
259
+ "maxTokens": 64000
260
+ },
261
+ {
262
+ "id": "gpt-5.2-codex-fast",
263
+ "name": "GPT-5.2 Codex Fast",
264
+ "reasoning": false,
265
+ "contextWindow": 200000,
266
+ "maxTokens": 64000
267
+ },
268
+ {
269
+ "id": "gpt-5.2-codex-high",
270
+ "name": "GPT-5.2 Codex High",
271
+ "reasoning": false,
272
+ "contextWindow": 200000,
273
+ "maxTokens": 64000
274
+ },
275
+ {
276
+ "id": "gpt-5.2-codex-high-fast",
277
+ "name": "GPT-5.2 Codex High Fast",
278
+ "reasoning": false,
279
+ "contextWindow": 200000,
280
+ "maxTokens": 64000
281
+ },
282
+ {
283
+ "id": "gpt-5.2-codex-low",
284
+ "name": "GPT-5.2 Codex Low",
285
+ "reasoning": false,
286
+ "contextWindow": 200000,
287
+ "maxTokens": 64000
288
+ },
289
+ {
290
+ "id": "gpt-5.2-codex-low-fast",
291
+ "name": "GPT-5.2 Codex Low Fast",
292
+ "reasoning": false,
293
+ "contextWindow": 200000,
294
+ "maxTokens": 64000
295
+ },
296
+ {
297
+ "id": "gpt-5.2-codex-xhigh",
298
+ "name": "GPT-5.2 Codex Extra High",
299
+ "reasoning": false,
300
+ "contextWindow": 200000,
301
+ "maxTokens": 64000
302
+ },
303
+ {
304
+ "id": "gpt-5.2-codex-xhigh-fast",
305
+ "name": "GPT-5.2 Codex Extra High Fast",
306
+ "reasoning": false,
307
+ "contextWindow": 200000,
308
+ "maxTokens": 64000
309
+ },
310
+ {
311
+ "id": "gpt-5.2-fast",
312
+ "name": "GPT-5.2 Fast",
313
+ "reasoning": false,
314
+ "contextWindow": 200000,
315
+ "maxTokens": 64000
316
+ },
317
+ {
318
+ "id": "gpt-5.2-high",
319
+ "name": "GPT-5.2 High",
320
+ "reasoning": false,
321
+ "contextWindow": 200000,
322
+ "maxTokens": 64000
323
+ },
324
+ {
325
+ "id": "gpt-5.2-high-fast",
326
+ "name": "GPT-5.2 High Fast",
327
+ "reasoning": false,
328
+ "contextWindow": 200000,
329
+ "maxTokens": 64000
330
+ },
331
+ {
332
+ "id": "gpt-5.2-low",
333
+ "name": "GPT-5.2 Low",
334
+ "reasoning": false,
335
+ "contextWindow": 200000,
336
+ "maxTokens": 64000
337
+ },
338
+ {
339
+ "id": "gpt-5.2-low-fast",
340
+ "name": "GPT-5.2 Low Fast",
341
+ "reasoning": false,
342
+ "contextWindow": 200000,
343
+ "maxTokens": 64000
344
+ },
345
+ {
346
+ "id": "gpt-5.2-xhigh",
347
+ "name": "GPT-5.2 Extra High",
348
+ "reasoning": false,
349
+ "contextWindow": 200000,
350
+ "maxTokens": 64000
351
+ },
352
+ {
353
+ "id": "gpt-5.2-xhigh-fast",
354
+ "name": "GPT-5.2 Extra High Fast",
355
+ "reasoning": false,
356
+ "contextWindow": 200000,
357
+ "maxTokens": 64000
358
+ },
359
+ {
360
+ "id": "gpt-5.3-codex",
361
+ "name": "GPT-5.3 Codex",
362
+ "reasoning": false,
363
+ "contextWindow": 200000,
364
+ "maxTokens": 64000
365
+ },
366
+ {
367
+ "id": "gpt-5.3-codex-fast",
368
+ "name": "GPT-5.3 Codex Fast",
369
+ "reasoning": false,
370
+ "contextWindow": 200000,
371
+ "maxTokens": 64000
372
+ },
373
+ {
374
+ "id": "gpt-5.3-codex-high",
375
+ "name": "GPT-5.3 Codex High",
376
+ "reasoning": false,
377
+ "contextWindow": 200000,
378
+ "maxTokens": 64000
379
+ },
380
+ {
381
+ "id": "gpt-5.3-codex-high-fast",
382
+ "name": "GPT-5.3 Codex High Fast",
383
+ "reasoning": false,
384
+ "contextWindow": 200000,
385
+ "maxTokens": 64000
386
+ },
387
+ {
388
+ "id": "gpt-5.3-codex-low",
389
+ "name": "GPT-5.3 Codex Low",
390
+ "reasoning": false,
391
+ "contextWindow": 200000,
392
+ "maxTokens": 64000
393
+ },
394
+ {
395
+ "id": "gpt-5.3-codex-low-fast",
396
+ "name": "GPT-5.3 Codex Low Fast",
397
+ "reasoning": false,
398
+ "contextWindow": 200000,
399
+ "maxTokens": 64000
400
+ },
401
+ {
402
+ "id": "gpt-5.3-codex-spark-preview",
403
+ "name": "GPT-5.3 Codex Spark",
404
+ "reasoning": false,
405
+ "contextWindow": 200000,
406
+ "maxTokens": 64000
407
+ },
408
+ {
409
+ "id": "gpt-5.3-codex-spark-preview-high",
410
+ "name": "GPT-5.3 Codex Spark High",
411
+ "reasoning": false,
412
+ "contextWindow": 200000,
413
+ "maxTokens": 64000
414
+ },
415
+ {
416
+ "id": "gpt-5.3-codex-spark-preview-low",
417
+ "name": "GPT-5.3 Codex Spark Low",
418
+ "reasoning": false,
419
+ "contextWindow": 200000,
420
+ "maxTokens": 64000
421
+ },
422
+ {
423
+ "id": "gpt-5.3-codex-spark-preview-xhigh",
424
+ "name": "GPT-5.3 Codex Spark Extra High",
425
+ "reasoning": false,
426
+ "contextWindow": 200000,
427
+ "maxTokens": 64000
428
+ },
429
+ {
430
+ "id": "gpt-5.3-codex-xhigh",
431
+ "name": "GPT-5.3 Codex Extra High",
432
+ "reasoning": false,
433
+ "contextWindow": 200000,
434
+ "maxTokens": 64000
435
+ },
436
+ {
437
+ "id": "gpt-5.3-codex-xhigh-fast",
438
+ "name": "GPT-5.3 Codex Extra High Fast",
439
+ "reasoning": false,
440
+ "contextWindow": 200000,
441
+ "maxTokens": 64000
442
+ },
443
+ {
444
+ "id": "gpt-5.4-high",
445
+ "name": "GPT-5.4 1M High",
446
+ "reasoning": false,
447
+ "contextWindow": 200000,
448
+ "maxTokens": 64000
449
+ },
450
+ {
451
+ "id": "gpt-5.4-high-fast",
452
+ "name": "GPT-5.4 High Fast",
453
+ "reasoning": false,
454
+ "contextWindow": 200000,
455
+ "maxTokens": 64000
456
+ },
457
+ {
458
+ "id": "gpt-5.4-low",
459
+ "name": "GPT-5.4 1M Low",
460
+ "reasoning": false,
461
+ "contextWindow": 200000,
462
+ "maxTokens": 64000
463
+ },
464
+ {
465
+ "id": "gpt-5.4-medium",
466
+ "name": "GPT-5.4 1M",
467
+ "reasoning": false,
468
+ "contextWindow": 200000,
469
+ "maxTokens": 64000
470
+ },
471
+ {
472
+ "id": "gpt-5.4-medium-fast",
473
+ "name": "GPT-5.4 Fast",
474
+ "reasoning": false,
475
+ "contextWindow": 200000,
476
+ "maxTokens": 64000
477
+ },
478
+ {
479
+ "id": "gpt-5.4-mini-high",
480
+ "name": "GPT-5.4 Mini High",
481
+ "reasoning": false,
482
+ "contextWindow": 200000,
483
+ "maxTokens": 64000
484
+ },
485
+ {
486
+ "id": "gpt-5.4-mini-low",
487
+ "name": "GPT-5.4 Mini Low",
488
+ "reasoning": false,
489
+ "contextWindow": 200000,
490
+ "maxTokens": 64000
491
+ },
492
+ {
493
+ "id": "gpt-5.4-mini-medium",
494
+ "name": "GPT-5.4 Mini",
495
+ "reasoning": false,
496
+ "contextWindow": 200000,
497
+ "maxTokens": 64000
498
+ },
499
+ {
500
+ "id": "gpt-5.4-mini-none",
501
+ "name": "GPT-5.4 Mini None",
502
+ "reasoning": false,
503
+ "contextWindow": 200000,
504
+ "maxTokens": 64000
505
+ },
506
+ {
507
+ "id": "gpt-5.4-mini-xhigh",
508
+ "name": "GPT-5.4 Mini Extra High",
509
+ "reasoning": false,
510
+ "contextWindow": 200000,
511
+ "maxTokens": 64000
512
+ },
513
+ {
514
+ "id": "gpt-5.4-nano-high",
515
+ "name": "GPT-5.4 Nano High",
516
+ "reasoning": false,
517
+ "contextWindow": 200000,
518
+ "maxTokens": 64000
519
+ },
520
+ {
521
+ "id": "gpt-5.4-nano-low",
522
+ "name": "GPT-5.4 Nano Low",
523
+ "reasoning": false,
524
+ "contextWindow": 200000,
525
+ "maxTokens": 64000
526
+ },
527
+ {
528
+ "id": "gpt-5.4-nano-medium",
529
+ "name": "GPT-5.4 Nano",
530
+ "reasoning": false,
531
+ "contextWindow": 200000,
532
+ "maxTokens": 64000
533
+ },
534
+ {
535
+ "id": "gpt-5.4-nano-none",
536
+ "name": "GPT-5.4 Nano None",
537
+ "reasoning": false,
538
+ "contextWindow": 200000,
539
+ "maxTokens": 64000
540
+ },
541
+ {
542
+ "id": "gpt-5.4-nano-xhigh",
543
+ "name": "GPT-5.4 Nano Extra High",
544
+ "reasoning": false,
545
+ "contextWindow": 200000,
546
+ "maxTokens": 64000
547
+ },
548
+ {
549
+ "id": "gpt-5.4-xhigh",
550
+ "name": "GPT-5.4 1M Extra High",
551
+ "reasoning": false,
552
+ "contextWindow": 200000,
553
+ "maxTokens": 64000
554
+ },
555
+ {
556
+ "id": "gpt-5.4-xhigh-fast",
557
+ "name": "GPT-5.4 Extra High Fast",
558
+ "reasoning": false,
559
+ "contextWindow": 200000,
560
+ "maxTokens": 64000
561
+ },
562
+ {
563
+ "id": "grok-4-20",
564
+ "name": "Grok 4.20",
565
+ "reasoning": false,
566
+ "contextWindow": 200000,
567
+ "maxTokens": 64000
568
+ },
569
+ {
570
+ "id": "grok-4-20-thinking",
571
+ "name": "Grok 4.20 Thinking",
572
+ "reasoning": false,
573
+ "contextWindow": 200000,
574
+ "maxTokens": 64000
575
+ },
576
+ {
577
+ "id": "kimi-k2.5",
578
+ "name": "Kimi K2.5",
579
+ "reasoning": false,
580
+ "contextWindow": 200000,
581
+ "maxTokens": 64000
582
+ }
583
+ ]