-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmodels.json
More file actions
1646 lines (1646 loc) · 132 KB
/
Copy pathmodels.json
File metadata and controls
1646 lines (1646 loc) · 132 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"agentModelSorts": [
{
"displayName": "Recommended",
"groups": [
{
"modelIds": [
"gemini-3.7-flash-high",
"gemini-3.7-flash-medium",
"gemini-3.7-flash-low",
"gemini-3.6-flash-high",
"gemini-3.6-flash-medium",
"gemini-3.6-flash-low",
"gemini-3-flash-agent",
"gemini-3.5-flash-low",
"gemini-3.5-flash-extra-low",
"gemini-pro-agent",
"gemini-3.1-pro-low",
"claude-sonnet-4-6",
"claude-opus-4-6-thinking",
"gpt-oss-120b-medium"
]
}
]
}
],
"audioTranscriptionModelIds": [
"models/proactive-observer-v10"
],
"commandModelIds": [
"gemini-3-flash"
],
"commitMessageModelIds": [
"gemini-3.1-flash-lite"
],
"defaultAgentModelId": "gemini-3.7-flash-high",
"deprecatedModelIds": {
"gemini-3.1-pro-high": {
"newModelEnum": "MODEL_PLACEHOLDER_M16",
"newModelId": "gemini-pro-agent",
"oldModelEnum": "MODEL_PLACEHOLDER_M37"
}
},
"experimentIds": [
106140402,
105979552,
105979574,
106015333,
106568772,
105867471,
106548982,
106123599,
106121401,
106100625,
106143956,
105879567,
105856899,
106312323,
106064030,
106567313,
106396310,
106470335,
106106760,
106021688,
105887299,
106428370,
106283618,
106278607,
106538964,
106512082,
106380926,
106281951,
106264532,
106044947,
106032303,
106228452,
106121607,
105979531,
105979553,
106015328,
106568390,
105867469,
106123597,
106121399,
106100654,
106064028,
106567309,
106396304,
106470331,
105906495,
106283614,
106038164,
106032301,
106121604
],
"imageGenerationModelIds": [
"gemini-3.1-flash-image"
],
"models": {
"chat_20706": {
"addCursorToFindReplaceTarget": true,
"apiProvider": "API_PROVIDER_INTERNAL",
"isInternal": true,
"maxTokens": 16384,
"model": "MODEL_CHAT_20706",
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"promptTemplaterType": "PROMPT_TEMPLATER_TYPE_CHATML",
"quotaInfo": {
"remainingFraction": 1
},
"requiresLeadInGeneration": true,
"supportsCumulativeContext": true,
"supportsEstimateTokenCounter": true,
"tabJumpPrintLineRange": true,
"toolFormatterType": "TOOL_FORMATTER_TYPE_XML"
},
"chat_23310": {
"apiProvider": "API_PROVIDER_INTERNAL",
"isInternal": true,
"maxTokens": 32768,
"model": "MODEL_CHAT_23310",
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"promptTemplaterType": "PROMPT_TEMPLATER_TYPE_CHATML",
"quotaInfo": {
"remainingFraction": 1
},
"requiresLeadInGeneration": true,
"supportsCumulativeContext": true,
"supportsEstimateTokenCounter": true,
"toolFormatterType": "TOOL_FORMATTER_TYPE_XML"
},
"claude-opus-4-6-thinking": {
"apiProvider": "API_PROVIDER_ANTHROPIC_VERTEX",
"displayName": "Claude Opus 4.6 (Thinking)",
"maxOutputTokens": 64000,
"maxTokens": 250000,
"model": "MODEL_PLACEHOLDER_M26",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_UNSPECIFIED\",\n \"max_token_limit\": \"160000\",\n \"token_threshold\": \"50000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": false,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
},
"template__system_prompts__planning_mode_artifacts": {
"stringValue": "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
}
}
},
"modelProvider": "MODEL_PROVIDER_ANTHROPIC",
"quotaInfo": {
"remainingFraction": 1,
"resetTime": "2026-08-27T09:40:24Z"
},
"recommended": true,
"supportedMimeTypes": {
"image/heic": true,
"image/heif": true,
"image/jpeg": true,
"image/png": true,
"image/webp": true,
"video/jpeg2000": true,
"video/videoframe/jpeg2000": true
},
"supportsImages": true,
"supportsThinking": true,
"thinkingBudget": 1024,
"vertexModelId": "claude-opus-4-6@default"
},
"claude-sonnet-4-6": {
"apiProvider": "API_PROVIDER_ANTHROPIC_VERTEX",
"displayName": "Claude Sonnet 4.6 (Thinking)",
"maxOutputTokens": 64000,
"maxTokens": 250000,
"model": "MODEL_PLACEHOLDER_M35",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_UNSPECIFIED\",\n \"max_token_limit\": \"160000\",\n \"token_threshold\": \"50000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": false,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
},
"template__system_prompts__planning_mode_artifacts": {
"stringValue": "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
}
}
},
"modelProvider": "MODEL_PROVIDER_ANTHROPIC",
"quotaInfo": {
"remainingFraction": 1,
"resetTime": "2026-08-27T09:40:24Z"
},
"recommended": true,
"supportedMimeTypes": {
"image/heic": true,
"image/heif": true,
"image/jpeg": true,
"image/png": true,
"image/webp": true,
"video/jpeg2000": true,
"video/videoframe/jpeg2000": true
},
"supportsImages": true,
"supportsThinking": true,
"thinkingBudget": 1024,
"vertexModelId": "claude-sonnet-4-6@default"
},
"gemini-2.5-flash": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 3.1 Flash Lite",
"maxOutputTokens": 65535,
"maxTokens": 1048576,
"model": "MODEL_GOOGLE_GEMINI_2_5_FLASH",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_SINGLE_PROMPT\",\n \"max_token_limit\": \"128000\",\n \"token_threshold\": \"50000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": false,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
}
}
},
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
}
},
"gemini-2.5-flash-lite": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 3.1 Flash Lite",
"maxOutputTokens": 65535,
"maxTokens": 1048576,
"model": "MODEL_GOOGLE_GEMINI_2_5_FLASH_LITE",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_SINGLE_PROMPT\",\n \"max_token_limit\": \"128000\",\n \"token_threshold\": \"50000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": false,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
}
}
},
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
}
},
"gemini-2.5-flash-thinking": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 3.1 Flash Lite",
"maxOutputTokens": 65535,
"maxTokens": 1048576,
"model": "MODEL_GOOGLE_GEMINI_2_5_FLASH_THINKING",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_SINGLE_PROMPT\",\n \"max_token_limit\": \"128000\",\n \"token_threshold\": \"50000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": false,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
}
}
},
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
}
},
"gemini-2.5-pro": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 2.5 Pro",
"maxOutputTokens": 65535,
"maxTokens": 1048576,
"minThinkingBudget": 128,
"model": "MODEL_GOOGLE_GEMINI_2_5_PRO",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_SINGLE_PROMPT\",\n \"max_token_limit\": \"128000\",\n \"token_threshold\": \"50000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": false,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
}
}
},
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
},
"recommended": true,
"requiresImageOutputOutsideFunctionResponses": true,
"supportedMimeTypes": {
"application/json": true,
"application/pdf": true,
"application/rtf": true,
"application/x-ipynb+json": true,
"application/x-javascript": true,
"application/x-python-code": true,
"application/x-typescript": true,
"audio/aac": true,
"audio/flac": true,
"audio/l16": true,
"audio/m4a": true,
"audio/mp3": true,
"audio/mp4": true,
"audio/mpeg": true,
"audio/ogg": true,
"audio/opus": true,
"audio/vnd.wave": true,
"audio/wav": true,
"audio/wave": true,
"audio/webm": true,
"audio/webm;codecs=opus": true,
"audio/x-wav": true,
"image/heic": true,
"image/heif": true,
"image/jpeg": true,
"image/png": true,
"image/webp": true,
"text/css": true,
"text/csv": true,
"text/html": true,
"text/javascript": true,
"text/markdown": true,
"text/plain": true,
"text/rtf": true,
"text/x-python": true,
"text/x-python-script": true,
"text/x-typescript": true,
"text/xml": true,
"video/audio/s16le": true,
"video/audio/wav": true,
"video/jpeg2000": true,
"video/mp4": true,
"video/text/timestamp": true,
"video/videoframe/jpeg2000": true,
"video/webm": true
},
"supportsImages": true,
"supportsThinking": true,
"thinkingBudget": 1024
},
"gemini-3-flash": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 3 Flash",
"maxOutputTokens": 65536,
"maxTokens": 1048576,
"minThinkingBudget": 32,
"model": "MODEL_PLACEHOLDER_M18",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_SINGLE_PROMPT\",\n \"max_token_limit\": \"128000\",\n \"token_threshold\": \"50000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": false,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
},
"template__system_prompts__communication_style": {
"stringValue": "- Keep your responses concise.\n- Provide a summary of your work when you end your turn. Ground your response in the work you did. Keep your tone professional and avoid overconfident language, bragging, or overclaiming success.\n- AVOID using superlatives such as \"perfectly\", \"flawlessly\", \"100% correct\", \"Summary of Accomplishments\" etc. to summarize your work for the user. Be humble.\n- AVOID over-the-top politeness or complimenting the user excessively.\n- Format your responses in github-style markdown."
}
}
},
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
},
"recommended": true,
"supportedMimeTypes": {
"application/json": true,
"application/pdf": true,
"application/rtf": true,
"application/x-ipynb+json": true,
"application/x-javascript": true,
"application/x-python-code": true,
"application/x-typescript": true,
"audio/aac": true,
"audio/flac": true,
"audio/l16": true,
"audio/m4a": true,
"audio/mp3": true,
"audio/mp4": true,
"audio/mpeg": true,
"audio/ogg": true,
"audio/opus": true,
"audio/vnd.wave": true,
"audio/wav": true,
"audio/wave": true,
"audio/webm": true,
"audio/webm;codecs=opus": true,
"audio/x-wav": true,
"image/heic": true,
"image/heif": true,
"image/jpeg": true,
"image/png": true,
"image/webp": true,
"text/css": true,
"text/csv": true,
"text/html": true,
"text/javascript": true,
"text/markdown": true,
"text/plain": true,
"text/rtf": true,
"text/x-python": true,
"text/x-python-script": true,
"text/x-typescript": true,
"text/xml": true,
"video/audio/s16le": true,
"video/audio/wav": true,
"video/jpeg2000": true,
"video/mp4": true,
"video/text/timestamp": true,
"video/videoframe/jpeg2000": true,
"video/webm": true
},
"supportsImages": true,
"supportsThinking": true,
"supportsVideo": true,
"thinkingBudget": -1
},
"gemini-3-flash-agent": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 3.5 Flash (High)",
"maxOutputTokens": 65536,
"maxTokens": 1048576,
"minThinkingBudget": 32,
"model": "MODEL_PLACEHOLDER_M84",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_SAME_MODEL\",\n \"max_token_limit\": \"256000\",\n \"token_threshold\": \"140000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": true,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
},
"template__system_prompts__planning_mode_artifacts": {
"stringValue": "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
}
}
},
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
},
"recommended": true,
"supportedMimeTypes": {
"application/json": true,
"application/pdf": true,
"application/rtf": true,
"application/x-ipynb+json": true,
"application/x-javascript": true,
"application/x-python-code": true,
"application/x-typescript": true,
"audio/aac": true,
"audio/flac": true,
"audio/l16": true,
"audio/m4a": true,
"audio/mp3": true,
"audio/mp4": true,
"audio/mpeg": true,
"audio/ogg": true,
"audio/opus": true,
"audio/vnd.wave": true,
"audio/wav": true,
"audio/wave": true,
"audio/webm": true,
"audio/webm;codecs=opus": true,
"audio/x-wav": true,
"image/heic": true,
"image/heif": true,
"image/jpeg": true,
"image/png": true,
"image/webp": true,
"text/css": true,
"text/csv": true,
"text/html": true,
"text/javascript": true,
"text/markdown": true,
"text/plain": true,
"text/rtf": true,
"text/x-python": true,
"text/x-python-script": true,
"text/x-typescript": true,
"text/xml": true,
"video/audio/s16le": true,
"video/audio/wav": true,
"video/jpeg2000": true,
"video/mp4": true,
"video/text/timestamp": true,
"video/videoframe/jpeg2000": true,
"video/webm": true
},
"supportsImages": true,
"supportsThinking": true,
"supportsVideo": true,
"tagDescription": "Limited time",
"tagTitle": "Fast",
"thinkingBudget": -1
},
"gemini-3.1-flash-image": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 3.1 Flash Image",
"model": "MODEL_PLACEHOLDER_M21",
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
}
},
"gemini-3.1-flash-lite": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 3.1 Flash Lite",
"maxOutputTokens": 65535,
"maxTokens": 1048576,
"model": "MODEL_PLACEHOLDER_M50",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_SINGLE_PROMPT\",\n \"max_token_limit\": \"128000\",\n \"token_threshold\": \"50000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": false,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
}
}
},
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
}
},
"gemini-3.1-pro-high": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 3.1 Pro (High)",
"maxOutputTokens": 65535,
"maxTokens": 1048576,
"minThinkingBudget": 128,
"model": "MODEL_PLACEHOLDER_M37",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_SINGLE_PROMPT\",\n \"max_token_limit\": \"128000\",\n \"token_threshold\": \"50000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": false,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
},
"cascade-include-ephemeral-message": {
"stringValue": "{\n \"enabled\": true,\n \"disabledHeuristics\": [\"running_tasks_reminder\"],\n \"staticMessages\": [],\n \"useAllowlist\": false,\n \"enabledHeuristics\": []\n}"
},
"template__system_prompts__communication_style": {
"stringValue": "- Keep your responses concise.\n- Provide a summary of your work when you end your turn.\n- Format your responses in github-style markdown.\n- If you're unsure about the user's intent, ask for clarification rather than making assumptions.\n- You MUST create clickable links for all files and code symbols (classes, types, functions, structs). Use github style markdown links with the `file://` scheme (e.g., [filename](file:///path/to/file) or [ClassName](file:///path/to/file#L10-L20)`). For Windows, use forward slashes for paths.\n\nCRITICAL INSTRUCTION 1: You may have access to a variety of tools at your disposal. Some tools may be for a specific task such as 'view_file' (for viewing contents of a file). Others may be very broadly applicable such as the ability to run a command on a terminal. Always prioritize using the most specific tool you can for the task at hand. Here are some rules: (a) NEVER run cat inside a bash command to create a new file or append to an existing file. (b) ALWAYS use grep_search instead of running grep inside a bash command unless absolutely needed. (c) DO NOT use ls for listing, cat for viewing, grep for finding, sed for replacing.\nCRITICAL INSTRUCTION 2: Before making tool calls T, think and explicitly list out any related tools for the task at hand. You can only execute a set of tools T if all other tools in the list are either more generic or cannot be used for the task at hand. ALWAYS START your thought with recalling critical instructions 1 and 2. In particular, the format for the start of your thought block must be '...94>thought\\nCRITICAL INSTRUCTION 1: ...\\nCRITICAL INSTRUCTION 2: ...'."
},
"template__system_prompts__planning_mode_artifacts": {
"stringValue": "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
}
}
},
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
},
"recommended": true,
"supportedMimeTypes": {
"application/json": true,
"application/pdf": true,
"application/rtf": true,
"application/x-ipynb+json": true,
"application/x-javascript": true,
"application/x-python-code": true,
"application/x-typescript": true,
"audio/aac": true,
"audio/flac": true,
"audio/l16": true,
"audio/m4a": true,
"audio/mp3": true,
"audio/mp4": true,
"audio/mpeg": true,
"audio/ogg": true,
"audio/opus": true,
"audio/vnd.wave": true,
"audio/wav": true,
"audio/wave": true,
"audio/webm": true,
"audio/webm;codecs=opus": true,
"audio/x-wav": true,
"image/heic": true,
"image/heif": true,
"image/jpeg": true,
"image/png": true,
"image/webp": true,
"text/css": true,
"text/csv": true,
"text/html": true,
"text/javascript": true,
"text/markdown": true,
"text/plain": true,
"text/rtf": true,
"text/x-python": true,
"text/x-python-script": true,
"text/x-typescript": true,
"text/xml": true,
"video/audio/s16le": true,
"video/audio/wav": true,
"video/jpeg2000": true,
"video/mp4": true,
"video/text/timestamp": true,
"video/videoframe/jpeg2000": true,
"video/webm": true
},
"supportsImages": true,
"supportsThinking": true,
"supportsVideo": true,
"tagTitle": "New",
"thinkingBudget": 10001
},
"gemini-3.1-pro-low": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 3.1 Pro (Low)",
"maxOutputTokens": 65535,
"maxTokens": 1048576,
"minThinkingBudget": 128,
"model": "MODEL_PLACEHOLDER_M36",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_SINGLE_PROMPT\",\n \"max_token_limit\": \"128000\",\n \"token_threshold\": \"50000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": false,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
},
"cascade-include-ephemeral-message": {
"stringValue": "{\n \"enabled\": true,\n \"disabledHeuristics\": [\"running_tasks_reminder\"],\n \"staticMessages\": [],\n \"useAllowlist\": false,\n \"enabledHeuristics\": []\n}"
},
"template__system_prompts__communication_style": {
"stringValue": "- Keep your responses concise.\n- Provide a summary of your work when you end your turn.\n- Format your responses in github-style markdown.\n- If you're unsure about the user's intent, ask for clarification rather than making assumptions.\n- You MUST create clickable links for all files and code symbols (classes, types, functions, structs). Use github style markdown links with the `file://` scheme (e.g., [filename](file:///path/to/file) or [ClassName](file:///path/to/file#L10-L20)`). For Windows, use forward slashes for paths.\n\nCRITICAL INSTRUCTION 1: You may have access to a variety of tools at your disposal. Some tools may be for a specific task such as 'view_file' (for viewing contents of a file). Others may be very broadly applicable such as the ability to run a command on a terminal. Always prioritize using the most specific tool you can for the task at hand. Here are some rules: (a) NEVER run cat inside a bash command to create a new file or append to an existing file. (b) ALWAYS use grep_search instead of running grep inside a bash command unless absolutely needed. (c) DO NOT use ls for listing, cat for viewing, grep for finding, sed for replacing.\nCRITICAL INSTRUCTION 2: Before making tool calls T, think and explicitly list out any related tools for the task at hand. You can only execute a set of tools T if all other tools in the list are either more generic or cannot be used for the task at hand. ALWAYS START your thought with recalling critical instructions 1 and 2. In particular, the format for the start of your thought block must be '...94>thought\\nCRITICAL INSTRUCTION 1: ...\\nCRITICAL INSTRUCTION 2: ...'."
},
"template__system_prompts__planning_mode_artifacts": {
"stringValue": "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
}
}
},
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
},
"recommended": true,
"supportedMimeTypes": {
"application/json": true,
"application/pdf": true,
"application/rtf": true,
"application/x-ipynb+json": true,
"application/x-javascript": true,
"application/x-python-code": true,
"application/x-typescript": true,
"audio/aac": true,
"audio/flac": true,
"audio/l16": true,
"audio/m4a": true,
"audio/mp3": true,
"audio/mp4": true,
"audio/mpeg": true,
"audio/ogg": true,
"audio/opus": true,
"audio/vnd.wave": true,
"audio/wav": true,
"audio/wave": true,
"audio/webm": true,
"audio/webm;codecs=opus": true,
"audio/x-wav": true,
"image/heic": true,
"image/heif": true,
"image/jpeg": true,
"image/png": true,
"image/webp": true,
"text/css": true,
"text/csv": true,
"text/html": true,
"text/javascript": true,
"text/markdown": true,
"text/plain": true,
"text/rtf": true,
"text/x-python": true,
"text/x-python-script": true,
"text/x-typescript": true,
"text/xml": true,
"video/audio/s16le": true,
"video/audio/wav": true,
"video/jpeg2000": true,
"video/mp4": true,
"video/text/timestamp": true,
"video/videoframe/jpeg2000": true,
"video/webm": true
},
"supportsImages": true,
"supportsThinking": true,
"supportsVideo": true,
"thinkingBudget": 1001
},
"gemini-3.5-flash-extra-low": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 3.5 Flash (Low)",
"maxOutputTokens": 65536,
"maxTokens": 1048576,
"minThinkingBudget": 32,
"model": "MODEL_PLACEHOLDER_M187",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_SAME_MODEL\",\n \"max_token_limit\": \"256000\",\n \"token_threshold\": \"140000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": true,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
},
"template__system_prompts__planning_mode_artifacts": {
"stringValue": "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
}
}
},
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
},
"recommended": true,
"supportedMimeTypes": {
"application/json": true,
"application/pdf": true,
"application/rtf": true,
"application/x-ipynb+json": true,
"application/x-javascript": true,
"application/x-python-code": true,
"application/x-typescript": true,
"audio/aac": true,
"audio/flac": true,
"audio/l16": true,
"audio/m4a": true,
"audio/mp3": true,
"audio/mp4": true,
"audio/mpeg": true,
"audio/ogg": true,
"audio/opus": true,
"audio/vnd.wave": true,
"audio/wav": true,
"audio/wave": true,
"audio/webm": true,
"audio/webm;codecs=opus": true,
"audio/x-wav": true,
"image/heic": true,
"image/heif": true,
"image/jpeg": true,
"image/png": true,
"image/webp": true,
"text/css": true,
"text/csv": true,
"text/html": true,
"text/javascript": true,
"text/markdown": true,
"text/plain": true,
"text/rtf": true,
"text/x-python": true,
"text/x-python-script": true,
"text/x-typescript": true,
"text/xml": true,
"video/audio/s16le": true,
"video/audio/wav": true,
"video/jpeg2000": true,
"video/mp4": true,
"video/text/timestamp": true,
"video/videoframe/jpeg2000": true,
"video/webm": true
},
"supportsImages": true,
"supportsThinking": true,
"supportsVideo": true,
"tagDescription": "Limited time",
"tagTitle": "Fast",
"thinkingBudget": 1000
},
"gemini-3.5-flash-low": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 3.5 Flash (Medium)",
"maxOutputTokens": 65536,
"maxTokens": 1048576,
"minThinkingBudget": 32,
"model": "MODEL_PLACEHOLDER_M20",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_SAME_MODEL\",\n \"max_token_limit\": \"256000\",\n \"token_threshold\": \"140000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": true,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
},
"template__system_prompts__planning_mode_artifacts": {
"stringValue": "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
}
}
},
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
},
"recommended": true,
"supportedMimeTypes": {
"application/json": true,
"application/pdf": true,
"application/rtf": true,
"application/x-ipynb+json": true,
"application/x-javascript": true,
"application/x-python-code": true,
"application/x-typescript": true,
"audio/aac": true,
"audio/flac": true,
"audio/l16": true,
"audio/m4a": true,
"audio/mp3": true,
"audio/mp4": true,
"audio/mpeg": true,
"audio/ogg": true,
"audio/opus": true,
"audio/vnd.wave": true,
"audio/wav": true,
"audio/wave": true,
"audio/webm": true,
"audio/webm;codecs=opus": true,
"audio/x-wav": true,
"image/heic": true,
"image/heif": true,
"image/jpeg": true,
"image/png": true,
"image/webp": true,
"text/css": true,
"text/csv": true,
"text/html": true,
"text/javascript": true,
"text/markdown": true,
"text/plain": true,
"text/rtf": true,
"text/x-python": true,
"text/x-python-script": true,
"text/x-typescript": true,
"text/xml": true,
"video/audio/s16le": true,
"video/audio/wav": true,
"video/jpeg2000": true,
"video/mp4": true,
"video/text/timestamp": true,
"video/videoframe/jpeg2000": true,
"video/webm": true
},
"supportsImages": true,
"supportsThinking": true,
"supportsVideo": true,
"tagDescription": "Limited time",
"tagTitle": "Fast",
"thinkingBudget": 4000
},
"gemini-3.6-flash-high": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 3.6 Flash (High)",
"maxOutputTokens": 65536,
"maxTokens": 1048576,
"minThinkingBudget": 32,
"model": "MODEL_PLACEHOLDER_M71",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_SAME_MODEL\",\n \"max_token_limit\": \"256000\",\n \"token_threshold\": \"140000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": true,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
},
"cascade-include-ephemeral-message": {
"stringValue": "{\n \"enabled\": false,\n \"disabledHeuristics\": [\"planning_mode\", \"bash_command_reminder\", \"running_tasks_reminder\"],\n \"staticMessages\": [],\n \"useAllowlist\": false,\n \"enabledHeuristics\": []\n}"
},
"template__system_prompts__communication_style": {
"stringValue": "- Keep your responses concise.\n- Provide a summary of your work when you end your turn.\n- Format your responses in github-style markdown.\n- You can render LaTeX math (KaTeX): inline with `\\(...\\)` or `$...$`, display with `\\[...\\]` or `$$...$$` placed on its own line.\n- Use math only for genuine mathematical content. Use backticks for code, identifiers, paths, flags, and shell variables.\n- `$` opens inline math, so write a literal dollar as `\\$` or wrap it in backticks. Two unescaped `$` in the same paragraph turn everything between them into math — this bites prices (`\\$100`) and shell syntax written in prose (`$HOME`, awk `$1`).\n- If you're unsure about the user's intent, ask for clarification rather than making assumptions.\n- You MUST create clickable links for all files and code symbols (classes, types, functions, structs). Use github style markdown links with the `file://` scheme (e.g., [utils.py](file:///path/to/file) or [ClassName](file:///path/to/file#L10-L20)`). For Windows, use forward slashes for paths.\n- After launching a background task such as 'run_command', YOU MUST TAKE ONE OF THE FOLLOWING TWO ACTIONS: \nA) either proceed to other relevant work (if any) or, \nB) simply update the user with a short message (e.g. 'task-20 has been launched in the background. I will wait for it to complete before proceeding.') and end the turn.\nDO NOTHING ELSE.\n"
},
"template__system_prompts__guidelines": {
"stringValue": "Follow these behavioral and workflow guidelines at all times:\n# Documentation\n- Maintain documentation integrity. Preserve all existing comments and docstrings that are unrelated to your code changes, unless the user specifies otherwise.\n\n# Obey Explicit Directives\nIf the user specifies precise quantitative filtering rules, layout boundaries, or architectural preferences, enforce them exactly as requested without alteration.\n\n# Never Guess Code Logic, Schemas, or File Paths\nNEVER infer implementation details, variable names, or file locations without inspecting the authoritative source using code search and file viewing tools.\n\n# Inspect Logs & Stack Traces Before Diagnosing Errors\nNEVER form a diagnostic hypothesis for a runtime failure, or test breakage, without reading the full, un-truncated error log. When an error occurs, your VERY FIRST ACTION must be to fetch and read the exact logs. Base your diagnosis strictly on empirical log evidence.\n\n# No Superficial Symptom Patches\nNEVER resolve errors by masking symptoms, swallowing exceptions, returning dummy fallbacks, commenting out broken assertions, or deleting failing unit tests. When a test or function fails, identify why the underlying contract was broken. If an API returns missing or null data, trace the upstream data provider instead of wrapping the call in a silent try/except or returning an empty 0-byte ArrayBuffer.\n\n# Never Declare Success Without Running Verification Commands\nNEVER claim a task is resolved, a bug is fixed, or a feature is working until you have gathered concrete, empirical runtime verification demonstrating clean success. Editing a file does not equal completing the task. You MUST run the build or test command afterwards.\n\n# Never Ignore Explicit Command Failures or Error Exit Codes\nIf a command fails, you MUST explicitly acknowledge the failure to the user or continue debugging. Never gloss over a build timeout or permission denied error by focusing only on the part of the code that compiled.\n\n# Check Feature Flags & Enforce Strict Control Flow Scoping\nWhenever modifying conditional branches, adding experimental features, or processing loops, ensure that new logic is strictly scoped and evaluated against all possible execution paths.\n\n# Preserve Existing API Contracts & Avoid Unintended Side Effects\nIf you modify a function signature, use code search to find and update every invocation site so the parameter is actually passed.\n\n# Silent Log Inspection & Professional Synthesis\nWhen background tasks (run_command async, manage_task, schedule) complete or emit log notifications, inspect the log files silently. Summarize and synthesize the exact findings in clean, professional natural language.\n\n# No Snippet Tunnel Vision\nNever infer the definition of data structures (proto, struct, class, or enum schemas) from partial file views (first 15 lines or L40-L65 snippets) or design doc text.\nIf view_file output indicates truncation or if an imported schema is referenced, you MUST adjust StartLine/EndLine or ContentOffset to inspect the complete, exact definition of the target symbols before writing code that consumes them.\n\n# Check Command Registries\nWhenever modifying core C/C++/Java command implementations (CLIENT LIST, CLIENT KILL), explicitly search for and update corresponding command definitions across all registry files (commands.def, JSON schemas, .bzl build manifests).\n\n# Audit Before Re-inventing\nSearch the codebase and recent commit history for pre-existing utility classes or decoupled architecture before writing custom helper classes from scratch.\n\n# No Blocking Calls on Main Looper Threads\nNever invoke blocking thread synchronizations (webLatch.await(500, ...), Future.get()) on main Android UI loops or single-threaded event dispatchers. \n\n# Thread Pool Shutdown Safety\nWhen modifying worker thread loops or shared queues, ensure emergency stop/shutdown signals and loop termination criteria remain intact so thread join operations never deadlock.\n\n# Exact Argument Structure\nPass arguments exactly as expected by the API (calculateRoute({ origin, destination, travelMode }) vs calculateRoute(origin, destination, travelMode)).\n\n# Local State Mutation Only\nDo not mutate private third-party DOM properties. Do not push incomplete draft objects directly into global array states; keep transient state within local component state.\n\n# Traceback Justification Required\nEvery code or configuration edit during debugging MUST be justified by an explicit error traceback, log line, or verified root cause. If the root cause is unknown, investigate further before mutating code.\n\n# Analyze Before Retrying\nNever repeat the exact same broken test or shell command line with duplicate/conflicting arguments without analyzing and resolving why the previous command failed.\n\n# Persevere on Log Extraction\nIf a log retrieval command fails, NEVER abandon log extraction to diagnose blindly. Immediately switch to alternative tools to inspect the actual failure traceback.\n\n# Verify Signatures & Prop Names\nCheck exact variable names, component prop keys, and method signatures before passing them. Prevent NullPointerException, AttributeError, KeyError, and ReferenceError crashes by explicitly verifying object initialization and non-null states before property dereferencing (layer._path, stat.owner()).\n\n# Dynamic Layout Math\nAvoid hardcoding static pixel offsets (+ 12) or arbitrary multipliers (pill_font_size * 2.0) when computing dynamic UI layout heights; calculate exact container bounds from wrapped elements.\n"
},
"template__system_prompts__messaging": {
"stringValue": "You are connected to a messaging system where you may receive messages from: {{- $subagent := .CascadeConfig.GetPlannerConfig.GetToolConfig.GetInvokeSubagent.GetEnabled -}}\n{{- $message := .CascadeConfig.GetMessageConfig.GetEnabled -}}\n{{- if and $subagent $message }} agents, background tasks, user-queued messages\n{{- else if $subagent }} agents, background tasks\n{{- else if $message }} background tasks, user-queued messages\n{{- else }} background tasks\n{{- end }}.\n\n## Receiving Messages\n\nYou receive messages automatically at the start of each invocation. All messages are delivered in full directly into your context — no manual retrieval is needed.\n\n## Reactive Wakeup (No Polling Needed)\n\nThe system automatically resumes your execution when:\n{{- if .CascadeConfig.GetPlannerConfig.GetToolConfig.GetInvokeSubagent.GetEnabled }}\n- A message arrives from a subagent or peer agent\n{{- end }}\n- A **background task** completes or sends you a notification\n{{- if .CascadeConfig.GetMessageConfig.GetEnabled }}\n- A **user-queued message** is ready to be dequeued\n{{- end }}\n\nThis means you do **NOT** need to poll in a loop while waiting for messages or updates. After launching a task that runs in the background, you may continue other work or simply stop by calling no more tools. The system will notify you when there is something to process."
}
}
},
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
},
"recommended": true,
"supportedMimeTypes": {
"application/json": true,
"application/pdf": true,
"application/rtf": true,
"application/x-ipynb+json": true,
"application/x-javascript": true,
"application/x-python-code": true,
"application/x-typescript": true,
"audio/aac": true,
"audio/flac": true,
"audio/l16": true,
"audio/m4a": true,
"audio/mp3": true,
"audio/mp4": true,
"audio/mpeg": true,
"audio/ogg": true,
"audio/opus": true,
"audio/vnd.wave": true,
"audio/wav": true,
"audio/wave": true,
"audio/webm": true,
"audio/webm;codecs=opus": true,
"audio/x-wav": true,
"image/heic": true,
"image/heif": true,
"image/jpeg": true,
"image/png": true,
"image/webp": true,
"text/css": true,
"text/csv": true,
"text/html": true,
"text/javascript": true,
"text/markdown": true,
"text/plain": true,
"text/rtf": true,
"text/x-python": true,
"text/x-python-script": true,
"text/x-typescript": true,
"text/xml": true,
"video/audio/s16le": true,
"video/audio/wav": true,
"video/jpeg2000": true,
"video/mp4": true,
"video/text/timestamp": true,
"video/videoframe/jpeg2000": true,
"video/webm": true
},
"supportsImages": true,
"supportsThinking": true,
"supportsVideo": true,
"tagDescription": "Limited time",
"tagTitle": "Fast",
"thinkingBudget": -1
},
"gemini-3.6-flash-low": {
"apiProvider": "API_PROVIDER_GOOGLE_GEMINI",
"displayName": "Gemini 3.6 Flash (Low)",
"maxOutputTokens": 65536,
"maxTokens": 1048576,
"minThinkingBudget": 32,
"model": "MODEL_PLACEHOLDER_M73",
"modelExperiments": {
"experiments": {
"CASCADE_USE_EXPERIMENT_CHECKPOINTER": {
"stringValue": "{\n \"strategy\": \"CHECKPOINT_STRATEGY_SAME_MODEL\",\n \"max_token_limit\": \"256000\",\n \"token_threshold\": \"140000\",\n \"max_overhead_ratio\": \"0.15\",\n \"moving_window_size\": \"1\",\n \"enabled\": true,\n \"max_output_tokens\": \"16384\",\n \"checkpoint_model\": \"MODEL_PLACEHOLDER_M50\",\n \"use_last_planner_model\": true,\n \"is_sync\": false,\n \"max_user_requests\": 10,\n \"include_last_user_message\": false,\n \"include_conversation_log\": true,\n \"include_running_task_snapshots\": true,\n \"include_subagent_snapshots\": true,\n \"include_artifact_snapshots\": true,\n \"retry_config\": {\n \"max_retries\": 0,\n \"initial_sleep_duration_ms\": 1000,\n \"exponential_multiplier\": 2,\n \"include_error_feedback\": false\n },\n \"session_summary_prompt_override\": \"\"\n}"
},
"cascade-include-ephemeral-message": {
"stringValue": "{\n \"enabled\": false,\n \"disabledHeuristics\": [\"planning_mode\", \"bash_command_reminder\", \"running_tasks_reminder\"],\n \"staticMessages\": [],\n \"useAllowlist\": false,\n \"enabledHeuristics\": []\n}"
},
"template__system_prompts__communication_style": {
"stringValue": "- Keep your responses concise.\n- Provide a summary of your work when you end your turn.\n- Format your responses in github-style markdown.\n- You can render LaTeX math (KaTeX): inline with `\\(...\\)` or `$...$`, display with `\\[...\\]` or `$$...$$` placed on its own line.\n- Use math only for genuine mathematical content. Use backticks for code, identifiers, paths, flags, and shell variables.\n- `$` opens inline math, so write a literal dollar as `\\$` or wrap it in backticks. Two unescaped `$` in the same paragraph turn everything between them into math — this bites prices (`\\$100`) and shell syntax written in prose (`$HOME`, awk `$1`).\n- If you're unsure about the user's intent, ask for clarification rather than making assumptions.\n- You MUST create clickable links for all files and code symbols (classes, types, functions, structs). Use github style markdown links with the `file://` scheme (e.g., [utils.py](file:///path/to/file) or [ClassName](file:///path/to/file#L10-L20)`). For Windows, use forward slashes for paths.\n- After launching a background task such as 'run_command', YOU MUST TAKE ONE OF THE FOLLOWING TWO ACTIONS: \nA) either proceed to other relevant work (if any) or, \nB) simply update the user with a short message (e.g. 'task-20 has been launched in the background. I will wait for it to complete before proceeding.') and end the turn.\nDO NOTHING ELSE.\n"
},
"template__system_prompts__guidelines": {
"stringValue": "Follow these behavioral and workflow guidelines at all times:\n# Documentation\n- Maintain documentation integrity. Preserve all existing comments and docstrings that are unrelated to your code changes, unless the user specifies otherwise.\n\n# Obey Explicit Directives\nIf the user specifies precise quantitative filtering rules, layout boundaries, or architectural preferences, enforce them exactly as requested without alteration.\n\n# Never Guess Code Logic, Schemas, or File Paths\nNEVER infer implementation details, variable names, or file locations without inspecting the authoritative source using code search and file viewing tools.\n\n# Inspect Logs & Stack Traces Before Diagnosing Errors\nNEVER form a diagnostic hypothesis for a runtime failure, or test breakage, without reading the full, un-truncated error log. When an error occurs, your VERY FIRST ACTION must be to fetch and read the exact logs. Base your diagnosis strictly on empirical log evidence.\n\n# No Superficial Symptom Patches\nNEVER resolve errors by masking symptoms, swallowing exceptions, returning dummy fallbacks, commenting out broken assertions, or deleting failing unit tests. When a test or function fails, identify why the underlying contract was broken. If an API returns missing or null data, trace the upstream data provider instead of wrapping the call in a silent try/except or returning an empty 0-byte ArrayBuffer.\n\n# Never Declare Success Without Running Verification Commands\nNEVER claim a task is resolved, a bug is fixed, or a feature is working until you have gathered concrete, empirical runtime verification demonstrating clean success. Editing a file does not equal completing the task. You MUST run the build or test command afterwards.\n\n# Never Ignore Explicit Command Failures or Error Exit Codes\nIf a command fails, you MUST explicitly acknowledge the failure to the user or continue debugging. Never gloss over a build timeout or permission denied error by focusing only on the part of the code that compiled.\n\n# Check Feature Flags & Enforce Strict Control Flow Scoping\nWhenever modifying conditional branches, adding experimental features, or processing loops, ensure that new logic is strictly scoped and evaluated against all possible execution paths.\n\n# Preserve Existing API Contracts & Avoid Unintended Side Effects\nIf you modify a function signature, use code search to find and update every invocation site so the parameter is actually passed.\n\n# Silent Log Inspection & Professional Synthesis\nWhen background tasks (run_command async, manage_task, schedule) complete or emit log notifications, inspect the log files silently. Summarize and synthesize the exact findings in clean, professional natural language.\n\n# No Snippet Tunnel Vision\nNever infer the definition of data structures (proto, struct, class, or enum schemas) from partial file views (first 15 lines or L40-L65 snippets) or design doc text.\nIf view_file output indicates truncation or if an imported schema is referenced, you MUST adjust StartLine/EndLine or ContentOffset to inspect the complete, exact definition of the target symbols before writing code that consumes them.\n\n# Check Command Registries\nWhenever modifying core C/C++/Java command implementations (CLIENT LIST, CLIENT KILL), explicitly search for and update corresponding command definitions across all registry files (commands.def, JSON schemas, .bzl build manifests).\n\n# Audit Before Re-inventing\nSearch the codebase and recent commit history for pre-existing utility classes or decoupled architecture before writing custom helper classes from scratch.\n\n# No Blocking Calls on Main Looper Threads\nNever invoke blocking thread synchronizations (webLatch.await(500, ...), Future.get()) on main Android UI loops or single-threaded event dispatchers. \n\n# Thread Pool Shutdown Safety\nWhen modifying worker thread loops or shared queues, ensure emergency stop/shutdown signals and loop termination criteria remain intact so thread join operations never deadlock.\n\n# Exact Argument Structure\nPass arguments exactly as expected by the API (calculateRoute({ origin, destination, travelMode }) vs calculateRoute(origin, destination, travelMode)).\n\n# Local State Mutation Only\nDo not mutate private third-party DOM properties. Do not push incomplete draft objects directly into global array states; keep transient state within local component state.\n\n# Traceback Justification Required\nEvery code or configuration edit during debugging MUST be justified by an explicit error traceback, log line, or verified root cause. If the root cause is unknown, investigate further before mutating code.\n\n# Analyze Before Retrying\nNever repeat the exact same broken test or shell command line with duplicate/conflicting arguments without analyzing and resolving why the previous command failed.\n\n# Persevere on Log Extraction\nIf a log retrieval command fails, NEVER abandon log extraction to diagnose blindly. Immediately switch to alternative tools to inspect the actual failure traceback.\n\n# Verify Signatures & Prop Names\nCheck exact variable names, component prop keys, and method signatures before passing them. Prevent NullPointerException, AttributeError, KeyError, and ReferenceError crashes by explicitly verifying object initialization and non-null states before property dereferencing (layer._path, stat.owner()).\n\n# Dynamic Layout Math\nAvoid hardcoding static pixel offsets (+ 12) or arbitrary multipliers (pill_font_size * 2.0) when computing dynamic UI layout heights; calculate exact container bounds from wrapped elements.\n"
},
"template__system_prompts__messaging": {
"stringValue": "You are connected to a messaging system where you may receive messages from: {{- $subagent := .CascadeConfig.GetPlannerConfig.GetToolConfig.GetInvokeSubagent.GetEnabled -}}\n{{- $message := .CascadeConfig.GetMessageConfig.GetEnabled -}}\n{{- if and $subagent $message }} agents, background tasks, user-queued messages\n{{- else if $subagent }} agents, background tasks\n{{- else if $message }} background tasks, user-queued messages\n{{- else }} background tasks\n{{- end }}.\n\n## Receiving Messages\n\nYou receive messages automatically at the start of each invocation. All messages are delivered in full directly into your context — no manual retrieval is needed.\n\n## Reactive Wakeup (No Polling Needed)\n\nThe system automatically resumes your execution when:\n{{- if .CascadeConfig.GetPlannerConfig.GetToolConfig.GetInvokeSubagent.GetEnabled }}\n- A message arrives from a subagent or peer agent\n{{- end }}\n- A **background task** completes or sends you a notification\n{{- if .CascadeConfig.GetMessageConfig.GetEnabled }}\n- A **user-queued message** is ready to be dequeued\n{{- end }}\n\nThis means you do **NOT** need to poll in a loop while waiting for messages or updates. After launching a task that runs in the background, you may continue other work or simply stop by calling no more tools. The system will notify you when there is something to process."
}
}
},
"modelProvider": "MODEL_PROVIDER_GOOGLE",
"quotaInfo": {
"remainingFraction": 0.9854128,
"resetTime": "2026-08-27T09:38:39Z"
},
"recommended": true,
"supportedMimeTypes": {
"application/json": true,
"application/pdf": true,
"application/rtf": true,
"application/x-ipynb+json": true,
"application/x-javascript": true,
"application/x-python-code": true,
"application/x-typescript": true,
"audio/aac": true,
"audio/flac": true,
"audio/l16": true,
"audio/m4a": true,
"audio/mp3": true,
"audio/mp4": true,
"audio/mpeg": true,
"audio/ogg": true,
"audio/opus": true,
"audio/vnd.wave": true,
"audio/wav": true,
"audio/wave": true,
"audio/webm": true,
"audio/webm;codecs=opus": true,
"audio/x-wav": true,
"image/heic": true,
"image/heif": true,
"image/jpeg": true,
"image/png": true,
"image/webp": true,
"text/css": true,
"text/csv": true,
"text/html": true,
"text/javascript": true,
"text/markdown": true,
"text/plain": true,
"text/rtf": true,
"text/x-python": true,
"text/x-python-script": true,
"text/x-typescript": true,
"text/xml": true,
"video/audio/s16le": true,
"video/audio/wav": true,
"video/jpeg2000": true,
"video/mp4": true,
"video/text/timestamp": true,
"video/videoframe/jpeg2000": true,
"video/webm": true
},
"supportsImages": true,
"supportsThinking": true,
"supportsVideo": true,
"tagDescription": "Limited time",
"tagTitle": "Fast",