forked from dirac-run/dirac
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdescriptor_set.pb
More file actions
2054 lines (1901 loc) · 65.8 KB
/
Copy pathdescriptor_set.pb
File metadata and controls
2054 lines (1901 loc) · 65.8 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
�
cline/common.protocline"
Metadata"
EmptyRequest"
Empty"%
StringRequest
value ( Rvalue"*
StringArrayRequest
value ( Rvalue"
String
value ( Rvalue"$
Int64Request
value (Rvalue"
Int64
value (Rvalue"$
BytesRequest
value (Rvalue"
Bytes
value (Rvalue"&
BooleanRequest
value (Rvalue"
Boolean
value (Rvalue"'
BooleanResponse
value (Rvalue"%
StringArray
values ( Rvalues"B
StringArrays
values1 ( Rvalues1
values2 ( Rvalues2"6
KeyValuePair
key ( Rkey
value ( Rvalue"c
FileDiagnostics
file_path ( RfilePath3
diagnostics (2.cline.DiagnosticRdiagnostics"�
Diagnostic
message ( Rmessage,
range (2.cline.DiagnosticRangeRrange5
severity (2.cline.DiagnosticSeverityRseverity
source ( H Rsource�B
_source"o
DiagnosticRange/
start (2.cline.DiagnosticPositionRstart+
end (2.cline.DiagnosticPositionRend"F
DiagnosticPosition
line (Rline
character (R character*s
DiagnosticSeverity
DIAGNOSTIC_ERROR
DIAGNOSTIC_WARNING
DIAGNOSTIC_INFORMATION
DIAGNOSTIC_HINTB
bot.cline.protoPbproto3
�
cline/account.protoclinecline/common.proto"k
AuthStateChangedRequest+
metadata (2.cline.MetadataRmetadata#
user (2.cline.UserInfoRuser">
AuthState(
user (2.cline.UserInfoH Ruser�B
_user"�
UserInfo
uid ( Ruid&
display_name ( H RdisplayName�
email ( HRemail�
photo_url ( HRphotoUrl�%
app_base_url ( HR
appBaseUrl�B
_display_nameB
_emailB
_photo_urlB
_app_base_url"�
UserOrganization
active (Ractive
member_id ( RmemberId
name ( Rname'
organization_id ( RorganizationId
roles ( Rroles"Z
UserOrganizationsResponse=
organizations (2.cline.UserOrganizationRorganizations"a
UserOrganizationUpdateRequest,
organization_id ( H RorganizationId�B
_organization_id"�
UserCreditsData3
balance (2.cline.UserCreditsBalanceRbalanceF
usage_transactions (2.cline.UsageTransactionRusageTransactionsL
payment_transactions (2.cline.PaymentTransactionRpaymentTransactions"H
GetOrganizationCreditsRequest'
organization_id ( RorganizationId"�
OrganizationCreditsData3
balance (2.cline.UserCreditsBalanceRbalance'
organization_id ( RorganizationIdR
usage_transactions (2#.cline.OrganizationUsageTransactionRusageTransactions"=
UserCreditsBalance'
current_balance (RcurrentBalance"�
UsageTransaction;
ai_inference_provider_name ( RaiInferenceProviderName"
ai_model_name ( RaiModelName+
ai_model_type_name ( RaiModelTypeName+
completion_tokens (RcompletionTokens
cost_usd (RcostUsd
created_at ( R createdAt!
credits_used (RcreditsUsed#
generation_id ( RgenerationId'
organization_id ( RorganizationId#
prompt_tokens
(RpromptTokens!
total_tokens (RtotalTokens
user_id ( RuserId"�
PaymentTransaction
paid_at ( RpaidAt
creator_id ( R creatorId!
amount_cents (RamountCents
credits (Rcredits"�
OrganizationUsageTransaction;
ai_inference_provider_name ( RaiInferenceProviderName"
ai_model_name ( RaiModelName+
ai_model_type_name ( RaiModelTypeName+
completion_tokens (RcompletionTokens
cost_usd (RcostUsd
created_at ( R createdAt!
credits_used (RcreditsUsed#
generation_id ( RgenerationId'
organization_id ( RorganizationId#
prompt_tokens
(RpromptTokens!
total_tokens (RtotalTokens
user_id ( RuserId2�
AccountService9
accountLoginClicked.cline.EmptyRequest.cline.String9
accountLogoutClicked.cline.EmptyRequest.cline.EmptyF
subscribeToAuthStatusUpdate.cline.EmptyRequest.cline.AuthState0D
authStateChanged.cline.AuthStateChangedRequest.cline.AuthState=
getUserCredits.cline.EmptyRequest.cline.UserCreditsData^
getOrganizationCredits$.cline.GetOrganizationCreditsRequest.cline.OrganizationCreditsDataM
getUserOrganizations.cline.EmptyRequest .cline.UserOrganizationsResponseI
setUserOrganization$.cline.UserOrganizationUpdateRequest.cline.Empty:
openrouterAuthClicked.cline.EmptyRequest.cline.Empty4
getRedirectUrl.cline.EmptyRequest.cline.StringB
bot.cline.protoPbproto3
��
cline/models.protoclinecline/common.proto"O
VsCodeLmModelsArray8
models (2 .cline.LanguageModelChatSelectorRmodels"�
LanguageModelChatSelector
vendor ( H Rvendor�
family ( HRfamily�
version ( HRversion�
id ( HRid�B
_vendorB
_familyB
_versionB
_id"B
PriceTier
token_limit (R
tokenLimit
price (Rprice"�
ThinkingConfig"
max_budget (H R maxBudget�&
output_price (HRoutputPrice�>
output_price_tiers (2.cline.PriceTierRoutputPriceTiersB
_max_budgetB
_output_price"�
ModelTier%
context_window (RcontextWindow$
input_price (H R
inputPrice�&
output_price (HRoutputPrice�1
cache_writes_price (HRcacheWritesPrice�/
cache_reads_price (HRcacheReadsPrice�B
_input_priceB
_output_priceB
_cache_writes_priceB
_cache_reads_price"�
OpenRouterModelInfo"
max_tokens (H R maxTokens�*
context_window (HRcontextWindow�,
supports_images (HRsupportsImages�2
supports_prompt_cache (RsupportsPromptCache$
input_price (HR
inputPrice�&
output_price (HRoutputPrice�1
cache_writes_price (HRcacheWritesPrice�/
cache_reads_price (HRcacheReadsPrice�%
description ( HRdescription�C
thinking_config
(2.cline.ThinkingConfigHRthinkingConfig�=
supports_global_endpoint (H RsupportsGlobalEndpoint�&
tiers (2.cline.ModelTierRtiersB
_max_tokensB
_context_windowB
_supports_imagesB
_input_priceB
_output_priceB
_cache_writes_priceB
_cache_reads_priceB
_descriptionB
_thinking_configB
_supports_global_endpoint"�
OpenRouterCompatibleModelInfoH
models (20.cline.OpenRouterCompatibleModelInfo.ModelsEntryRmodelsU
ModelsEntry
key ( Rkey0
value (2.cline.OpenRouterModelInfoRvalue:8"v
OpenAiModelsRequest+
metadata (2.cline.MetadataRmetadata
base_url ( RbaseUrl
api_key ( RapiKey"�
SapAiCoreModelsRequest+
metadata (2.cline.MetadataRmetadata
client_id ( RclientId#
client_secret ( RclientSecret
base_url ( RbaseUrl
token_url ( RtokenUrl%
resource_group ( RresourceGroup"^
SapAiCoreModelDeployment
model_name ( R modelName#
deployment_id ( RdeploymentId"�
SapAiCoreModelsResponseA
deployments (2.cline.SapAiCoreModelDeploymentRdeployments7
orchestration_available (RorchestrationAvailable"�
UpdateApiConfigurationRequest+
metadata (2.cline.MetadataRmetadataJ
api_configuration (2.cline.ModelsApiConfigurationRapiConfiguration"�
OpenAiCompatibleModelInfo"
max_tokens (H R maxTokens�*
context_window (HRcontextWindow�,
supports_images (HRsupportsImages�2
supports_prompt_cache (RsupportsPromptCache$
input_price (HR
inputPrice�&
output_price (HRoutputPrice�C
thinking_config (2.cline.ThinkingConfigHRthinkingConfig�=
supports_global_endpoint (HRsupportsGlobalEndpoint�1
cache_writes_price (HRcacheWritesPrice�/
cache_reads_price
(HRcacheReadsPrice�%
description ( H Rdescription�&
tiers (2.cline.ModelTierRtiers%
temperature (H
Rtemperature�6
is_r1_format_required (HRisR1FormatRequired�B
_max_tokensB
_context_windowB
_supports_imagesB
_input_priceB
_output_priceB
_thinking_configB
_supports_global_endpointB
_cache_writes_priceB
_cache_reads_priceB
_descriptionB
_temperatureB
_is_r1_format_required"�
LiteLLMModelInfo"
max_tokens (H R maxTokens�*
context_window (HRcontextWindow�,
supports_images (HRsupportsImages�2
supports_prompt_cache (RsupportsPromptCache$
input_price (HR
inputPrice�&
output_price (HRoutputPrice�C
thinking_config (2.cline.ThinkingConfigHRthinkingConfig�=
supports_global_endpoint (HRsupportsGlobalEndpoint�1
cache_writes_price (HRcacheWritesPrice�/
cache_reads_price
(HRcacheReadsPrice�%
description ( H Rdescription�&
tiers (2.cline.ModelTierRtiers%
temperature (H
Rtemperature�B
_max_tokensB
_context_windowB
_supports_imagesB
_input_priceB
_output_priceB
_thinking_configB
_supports_global_endpointB
_cache_writes_priceB
_cache_reads_priceB
_descriptionB
_temperature"�a
ModelsApiConfiguration
api_key ( H RapiKey�'
cline_api_key ( HRclineApiKey�
ulid ( HRulid�.
lite_llm_base_url ( HRliteLlmBaseUrl�,
lite_llm_api_key ( HRliteLlmApiKey�=
lite_llm_use_prompt_cache (HRliteLlmUsePromptCache�X
open_ai_headers (20.cline.ModelsApiConfiguration.OpenAiHeadersEntryRopenAiHeaders1
anthropic_base_url ( HRanthropicBaseUrl�2
open_router_api_key ( HRopenRouterApiKey�D
open_router_provider_sorting
( HRopenRouterProviderSorting�)
aws_access_key ( H RawsAccessKey�)
aws_secret_key ( H
RawsSecretKey�/
aws_session_token ( HRawsSessionToken�"
aws_region ( HR awsRegion�G
aws_use_cross_region_inference (HRawsUseCrossRegionInference�C
aws_bedrock_use_prompt_cache (HRawsBedrockUsePromptCache�+
aws_use_profile (HRawsUseProfile�$
aws_profile ( HR
awsProfile�5
aws_bedrock_endpoint ( HRawsBedrockEndpoint�-
claude_code_path ( HRclaudeCodePath�/
vertex_project_id ( HRvertexProjectId�(
vertex_region ( HRvertexRegion�,
open_ai_base_url ( HRopenAiBaseUrl�*
open_ai_api_key ( HRopenAiApiKey�+
ollama_base_url ( HRollamaBaseUrl�?
ollama_api_options_ctx_num ( HRollamaApiOptionsCtxNum�0
lm_studio_base_url ( HRlmStudioBaseUrl�)
gemini_api_key ( HRgeminiApiKey�+
gemini_base_url ( HRgeminiBaseUrl�7
open_ai_native_api_key ( HRopenAiNativeApiKey�.
deep_seek_api_key ( HRdeepSeekApiKey�-
requesty_api_key ( HRrequestyApiKey�/
requesty_base_url! ( HRrequestyBaseUrl�-
together_api_key" ( H RtogetherApiKey�/
fireworks_api_key# ( H!RfireworksApiKey�U
%fireworks_model_max_completion_tokens$ (H"R!fireworksModelMaxCompletionTokens�@
fireworks_model_max_tokens% (H#RfireworksModelMaxTokens�%
qwen_api_key& ( H$R
qwenApiKey�)
doubao_api_key' ( H%RdoubaoApiKey�+
mistral_api_key( ( H&RmistralApiKey�/
azure_api_version) ( H'RazureApiVersion�'
qwen_api_line* ( H(RqwenApiLine�)
nebius_api_key+ ( H)RnebiusApiKey�+
asksage_api_url, ( H*RasksageApiUrl�+
asksage_api_key- ( H+RasksageApiKey�#
xai_api_key. ( H,R xaiApiKey�/
sambanova_api_key/ ( H-RsambanovaApiKey�-
cerebras_api_key0 ( H.RcerebrasApiKey�1
request_timeout_ms1 (H/RrequestTimeoutMs�5
sap_ai_core_client_id2 ( H0RsapAiCoreClientId�=
sap_ai_core_client_secret3 ( H1RsapAiCoreClientSecret�6
sap_ai_resource_group4 ( H2RsapAiResourceGroup�5
sap_ai_core_token_url5 ( H3RsapAiCoreTokenUrl�3
sap_ai_core_base_url6 ( H4RsapAiCoreBaseUrl�N
"sap_ai_core_use_orchestration_mode7 (H5RsapAiCoreUseOrchestrationMode�-
moonshot_api_key8 ( H6RmoonshotApiKey�/
moonshot_api_line9 ( H7RmoonshotApiLine�2
aws_authentication: ( H8RawsAuthentication�2
aws_bedrock_api_key; ( H9RawsBedrockApiKey�-
cline_account_id< ( H:RclineAccountId�%
groq_api_key= ( H;R
groqApiKey�4
hugging_face_api_key> ( H<RhuggingFaceApiKey�=
huawei_cloud_maas_api_key? ( H=RhuaweiCloudMaasApiKey�+
baseten_api_key@ ( H>RbasetenApiKey�)
ollama_api_keyA ( H?RollamaApiKey�#
zai_api_keyB ( H@R zaiApiKey�%
zai_api_lineC ( HAR
zaiApiLine�4
lm_studio_max_tokensD ( HBRlmStudioMaxTokens�=
vercel_ai_gateway_api_keyE ( HCRvercelAiGatewayApiKey�4
qwen_code_oauth_pathF ( HDRqwenCodeOauthPath�%
dify_api_keyG ( HER
difyApiKey�'
dify_base_urlH ( HFRdifyBaseUrl�L
plan_mode_api_providerd (2.cline.ApiProviderHGRplanModeApiProvider�7
plan_mode_api_model_ide ( HHRplanModeApiModelId�K
plan_mode_thinking_budget_tokensf (HIRplanModeThinkingBudgetTokens�@
plan_mode_reasoning_effortg ( HJRplanModeReasoningEffort�q
#plan_mode_vs_code_lm_model_selectorh (2 .cline.LanguageModelChatSelectorHKRplanModeVsCodeLmModelSelector�T
%plan_mode_aws_bedrock_custom_selectedi (HLR planModeAwsBedrockCustomSelected�\
*plan_mode_aws_bedrock_custom_model_base_idj ( HMR#planModeAwsBedrockCustomModelBaseId�F
plan_mode_open_router_model_idk ( HNRplanModeOpenRouterModelId�f
plan_mode_open_router_model_infol (2.cline.OpenRouterModelInfoHORplanModeOpenRouterModelInfo�>
plan_mode_open_ai_model_idm ( HPRplanModeOpenAiModelId�d
plan_mode_open_ai_model_infon (2 .cline.OpenAiCompatibleModelInfoHQRplanModeOpenAiModelInfo�=
plan_mode_ollama_model_ido ( HRRplanModeOllamaModelId�B
plan_mode_lm_studio_model_idp ( HSRplanModeLmStudioModelId�@
plan_mode_lite_llm_model_idq ( HTRplanModeLiteLlmModelId�]
plan_mode_lite_llm_model_infor (2.cline.LiteLLMModelInfoHURplanModeLiteLlmModelInfo�A
plan_mode_requesty_model_ids ( HVRplanModeRequestyModelId�a
plan_mode_requesty_model_infot (2.cline.OpenRouterModelInfoHWRplanModeRequestyModelInfo�A
plan_mode_together_model_idu ( HXRplanModeTogetherModelId�C
plan_mode_fireworks_model_idv ( HYRplanModeFireworksModelId�E
plan_mode_sap_ai_core_model_idw ( HZRplanModeSapAiCoreModelId�O
#plan_mode_sap_ai_core_deployment_idx ( H[RplanModeSapAiCoreDeploymentId�9
plan_mode_groq_model_idy ( H\RplanModeGroqModelId�Y
plan_mode_groq_model_infoz (2.cline.OpenRouterModelInfoH]RplanModeGroqModelInfo�H
plan_mode_hugging_face_model_id{ ( H^RplanModeHuggingFaceModelId�h
!plan_mode_hugging_face_model_info| (2.cline.OpenRouterModelInfoH_RplanModeHuggingFaceModelInfo�Q
$plan_mode_huawei_cloud_maas_model_id} ( H`RplanModeHuaweiCloudMaasModelId�q
&plan_mode_huawei_cloud_maas_model_info~ (2.cline.OpenRouterModelInfoHaR planModeHuaweiCloudMaasModelInfo�?
plan_mode_baseten_model_id ( HbRplanModeBasetenModelId�`
plan_mode_baseten_model_info� (2.cline.OpenRouterModelInfoHcRplanModeBasetenModelInfo�R
$plan_mode_vercel_ai_gateway_model_id� ( HdRplanModeVercelAiGatewayModelId�r
&plan_mode_vercel_ai_gateway_model_info� (2.cline.OpenRouterModelInfoHeR planModeVercelAiGatewayModelInfo�K
act_mode_api_provider� (2.cline.ApiProviderHfRactModeApiProvider�6
act_mode_api_model_id� ( HgRactModeApiModelId�J
act_mode_thinking_budget_tokens� (HhRactModeThinkingBudgetTokens�?
act_mode_reasoning_effort� ( HiRactModeReasoningEffort�p
"act_mode_vs_code_lm_model_selector� (2 .cline.LanguageModelChatSelectorHjRactModeVsCodeLmModelSelector�S
$act_mode_aws_bedrock_custom_selected� (HkRactModeAwsBedrockCustomSelected�[
)act_mode_aws_bedrock_custom_model_base_id� ( HlR"actModeAwsBedrockCustomModelBaseId�E
act_mode_open_router_model_id� ( HmRactModeOpenRouterModelId�e
act_mode_open_router_model_info� (2.cline.OpenRouterModelInfoHnRactModeOpenRouterModelInfo�=
act_mode_open_ai_model_id� ( HoRactModeOpenAiModelId�c
act_mode_open_ai_model_info� (2 .cline.OpenAiCompatibleModelInfoHpRactModeOpenAiModelInfo�<
act_mode_ollama_model_id� ( HqRactModeOllamaModelId�A
act_mode_lm_studio_model_id� ( HrRactModeLmStudioModelId�?
act_mode_lite_llm_model_id� ( HsRactModeLiteLlmModelId�\
act_mode_lite_llm_model_info� (2.cline.LiteLLMModelInfoHtRactModeLiteLlmModelInfo�@
act_mode_requesty_model_id� ( HuRactModeRequestyModelId�`
act_mode_requesty_model_info� (2.cline.OpenRouterModelInfoHvRactModeRequestyModelInfo�@
act_mode_together_model_id� ( HwRactModeTogetherModelId�B
act_mode_fireworks_model_id� ( HxRactModeFireworksModelId�D
act_mode_sap_ai_core_model_id� ( HyRactModeSapAiCoreModelId�N
"act_mode_sap_ai_core_deployment_id� ( HzRactModeSapAiCoreDeploymentId�8
act_mode_groq_model_id� ( H{RactModeGroqModelId�X
act_mode_groq_model_info� (2.cline.OpenRouterModelInfoH|RactModeGroqModelInfo�G
act_mode_hugging_face_model_id� ( H}RactModeHuggingFaceModelId�g
act_mode_hugging_face_model_info� (2.cline.OpenRouterModelInfoH~RactModeHuggingFaceModelInfo�P
#act_mode_huawei_cloud_maas_model_id� ( HRactModeHuaweiCloudMaasModelId�q
%act_mode_huawei_cloud_maas_model_info� (2.cline.OpenRouterModelInfoH�RactModeHuaweiCloudMaasModelInfo�?
act_mode_baseten_model_id� ( H�RactModeBasetenModelId�_
act_mode_baseten_model_info� (2.cline.OpenRouterModelInfoH�RactModeBasetenModelInfo�Q
#act_mode_vercel_ai_gateway_model_id� ( H�RactModeVercelAiGatewayModelId�q
%act_mode_vercel_ai_gateway_model_info� (2.cline.OpenRouterModelInfoH�RactModeVercelAiGatewayModelInfo�@
OpenAiHeadersEntry
key ( Rkey
value ( Rvalue:8B
_api_keyB
_cline_api_keyB
_ulidB
_lite_llm_base_urlB
_lite_llm_api_keyB
_lite_llm_use_prompt_cacheB
_anthropic_base_urlB
_open_router_api_keyB
_open_router_provider_sortingB
_aws_access_keyB
_aws_secret_keyB
_aws_session_tokenB
_aws_regionB!
_aws_use_cross_region_inferenceB
_aws_bedrock_use_prompt_cacheB
_aws_use_profileB
_aws_profileB
_aws_bedrock_endpointB
_claude_code_pathB
_vertex_project_idB
_vertex_regionB
_open_ai_base_urlB
_open_ai_api_keyB
_ollama_base_urlB
_ollama_api_options_ctx_numB
_lm_studio_base_urlB
_gemini_api_keyB
_gemini_base_urlB
_open_ai_native_api_keyB
_deep_seek_api_keyB
_requesty_api_keyB
_requesty_base_urlB
_together_api_keyB
_fireworks_api_keyB(
&_fireworks_model_max_completion_tokensB
_fireworks_model_max_tokensB
_qwen_api_keyB
_doubao_api_keyB
_mistral_api_keyB
_azure_api_versionB
_qwen_api_lineB
_nebius_api_keyB
_asksage_api_urlB
_asksage_api_keyB
_xai_api_keyB
_sambanova_api_keyB
_cerebras_api_keyB
_request_timeout_msB
_sap_ai_core_client_idB
_sap_ai_core_client_secretB
_sap_ai_resource_groupB
_sap_ai_core_token_urlB
_sap_ai_core_base_urlB%
#_sap_ai_core_use_orchestration_modeB
_moonshot_api_keyB
_moonshot_api_lineB
_aws_authenticationB
_aws_bedrock_api_keyB
_cline_account_idB
_groq_api_keyB
_hugging_face_api_keyB
_huawei_cloud_maas_api_keyB
_baseten_api_keyB
_ollama_api_keyB
_zai_api_keyB
_zai_api_lineB
_lm_studio_max_tokensB
_vercel_ai_gateway_api_keyB
_qwen_code_oauth_pathB
_dify_api_keyB
_dify_base_urlB
_plan_mode_api_providerB
_plan_mode_api_model_idB#
!_plan_mode_thinking_budget_tokensB
_plan_mode_reasoning_effortB&
$_plan_mode_vs_code_lm_model_selectorB(
&_plan_mode_aws_bedrock_custom_selectedB-
+_plan_mode_aws_bedrock_custom_model_base_idB!
_plan_mode_open_router_model_idB#
!_plan_mode_open_router_model_infoB
_plan_mode_open_ai_model_idB
_plan_mode_open_ai_model_infoB
_plan_mode_ollama_model_idB
_plan_mode_lm_studio_model_idB
_plan_mode_lite_llm_model_idB
_plan_mode_lite_llm_model_infoB
_plan_mode_requesty_model_idB
_plan_mode_requesty_model_infoB
_plan_mode_together_model_idB
_plan_mode_fireworks_model_idB!
_plan_mode_sap_ai_core_model_idB&
$_plan_mode_sap_ai_core_deployment_idB
_plan_mode_groq_model_idB
_plan_mode_groq_model_infoB"
_plan_mode_hugging_face_model_idB$
"_plan_mode_hugging_face_model_infoB'
%_plan_mode_huawei_cloud_maas_model_idB)
'_plan_mode_huawei_cloud_maas_model_infoB
_plan_mode_baseten_model_idB
_plan_mode_baseten_model_infoB'
%_plan_mode_vercel_ai_gateway_model_idB)
'_plan_mode_vercel_ai_gateway_model_infoB
_act_mode_api_providerB
_act_mode_api_model_idB"
_act_mode_thinking_budget_tokensB
_act_mode_reasoning_effortB%
#_act_mode_vs_code_lm_model_selectorB'
%_act_mode_aws_bedrock_custom_selectedB,
*_act_mode_aws_bedrock_custom_model_base_idB
_act_mode_open_router_model_idB"
_act_mode_open_router_model_infoB
_act_mode_open_ai_model_idB
_act_mode_open_ai_model_infoB
_act_mode_ollama_model_idB
_act_mode_lm_studio_model_idB
_act_mode_lite_llm_model_idB
_act_mode_lite_llm_model_infoB
_act_mode_requesty_model_idB
_act_mode_requesty_model_infoB
_act_mode_together_model_idB
_act_mode_fireworks_model_idB
_act_mode_sap_ai_core_model_idB%
#_act_mode_sap_ai_core_deployment_idB
_act_mode_groq_model_idB
_act_mode_groq_model_infoB!
_act_mode_hugging_face_model_idB#
!_act_mode_hugging_face_model_infoB&
$_act_mode_huawei_cloud_maas_model_idB(
&_act_mode_huawei_cloud_maas_model_infoB
_act_mode_baseten_model_idB
_act_mode_baseten_model_infoB&
$_act_mode_vercel_ai_gateway_model_idB(
&_act_mode_vercel_ai_gateway_model_info*�
ApiProvider
ANTHROPIC
OPENROUTER
BEDROCK
VERTEX
OPENAI
OLLAMA
LMSTUDIO
GEMINI
OPENAI_NATIVE
REQUESTY
TOGETHER
DEEPSEEK
QWEN
DOUBAO
MISTRAL
VSCODE_LM
CLINE
LITELLM
NEBIUS
FIREWORKS
ASKSAGE
XAI
SAMBANOVA
CEREBRAS
GROQ
SAPAICORE
CLAUDE_CODE
MOONSHOT
HUGGINGFACE
HUAWEI_CLOUD_MAAS
BASETEN
ZAI
VERCEL_AI_GATEWAY
QWEN_CODE!
DIFY"2�
ModelsService;
getOllamaModels.cline.StringRequest.cline.StringArray=
getLmStudioModels.cline.StringRequest.cline.StringArrayD
getVsCodeLmModels.cline.EmptyRequest.cline.VsCodeLmModelsArrayT
refreshOpenRouterModels.cline.EmptyRequest$.cline.OpenRouterCompatibleModelInfoU
refreshHuggingFaceModels.cline.EmptyRequest$.cline.OpenRouterCompatibleModelInfoE
refreshOpenAiModels.cline.OpenAiModelsRequest.cline.StringArrayY
refreshVercelAiGatewayModels.cline.EmptyRequest$.cline.OpenRouterCompatibleModelInfoR
refreshRequestyModels.cline.EmptyRequest$.cline.OpenRouterCompatibleModelInfoZ
subscribeToOpenRouterModels.cline.EmptyRequest$.cline.OpenRouterCompatibleModelInfo0Q
updateApiConfigurationProto$.cline.UpdateApiConfigurationRequest.cline.EmptyN
refreshGroqModels.cline.EmptyRequest$.cline.OpenRouterCompatibleModelInfoQ
refreshBasetenModels.cline.EmptyRequest$.cline.OpenRouterCompatibleModelInfoS
getSapAiCoreModels.cline.SapAiCoreModelsRequest.cline.SapAiCoreModelsResponseB
bot.cline.protoPbproto3
�}
cline/state.protoclinecline/common.protocline/models.proto"&
State
state_json ( R stateJson"F
TerminalProfiles2
profiles (2.cline.TerminalProfileRprofiles"�
TerminalProfile
id ( Rid
name ( Rname
path ( H Rpath�%
description ( HRdescription�B
_pathB
_description"�
TerminalProfileUpdateResponse!
closed_count (RclosedCount0
busy_terminals_count (RbusyTerminalsCount,
has_busy_terminals (RhasBusyTerminals"�
TogglePlanActModeRequest+
metadata (2.cline.MetadataRmetadata&
mode (2.cline.PlanActModeRmode:
chat_content (2.cline.ChatContentH RchatContent�B
_chat_content"f
ChatContent
message ( H Rmessage�
images ( Rimages
files ( RfilesB
_message"h
ResetStateRequest+
metadata (2.cline.MetadataRmetadata
global (H Rglobal�B
_global"�
AutoApprovalSettingsRequest+
metadata (2.cline.MetadataRmetadata
version (Rversion
enabled (RenabledD
actions (2*.cline.AutoApprovalSettingsRequest.ActionsRactions!
max_requests (RmaxRequests1
enable_notifications (RenableNotifications
favorites ( R favorites�
Actions
read_files (R readFiles2
read_files_externally (RreadFilesExternally
edit_files (R editFiles2
edit_files_externally (ReditFilesExternally2
execute_safe_commands (RexecuteSafeCommands0
execute_all_commands (RexecuteAllCommands
use_browser (R
useBrowser
use_mcp (RuseMcp"}
TelemetrySettingRequest+
metadata (2.cline.MetadataRmetadata5
setting (2.cline.TelemetrySettingEnumRsetting"�
BrowserSettingsUpdate0
viewport (2.cline.ViewportH Rviewport�3
remote_browser_host ( HRremoteBrowserHost�9
remote_browser_enabled (HRremoteBrowserEnabled�9
chrome_executable_path ( HRchromeExecutablePath�-
disable_tool_use (HRdisableToolUse�$
custom_args ( HR
customArgs�B
_viewportB
_remote_browser_hostB
_remote_browser_enabledB
_chrome_executable_pathB
_disable_tool_useB
_custom_args"�
UpdateSettingsRequest+
metadata (2.cline.MetadataRmetadataI
api_configuration (2.cline.ApiConfigurationH RapiConfiguration�0
telemetry_setting ( HRtelemetrySetting�K
plan_act_separate_models_setting (HRplanActSeparateModelsSetting�A
enable_checkpoints_setting (HRenableCheckpointsSetting�;
mcp_marketplace_enabled (HRmcpMarketplaceEnabled�?
shell_integration_timeout (HRshellIntegrationTimeout�9
terminal_reuse_enabled (HRterminalReuseEnabled�;
mcp_responses_collapsed
(HRmcpResponsesCollapsed�D
mcp_display_mode (2.cline.McpDisplayModeHRmcpDisplayMode�@
terminal_output_line_limit (H RterminalOutputLineLimit�+
mode (2.cline.PlanActModeH
Rmode�2
preferred_language ( HRpreferredLanguage�Y
openai_reasoning_effort (2.cline.OpenaiReasoningEffortHRopenaiReasoningEffort�<
strict_plan_mode_enabled (HRstrictPlanModeEnabled�P
focus_chain_settings (2.cline.FocusChainSettingsHRfocusChainSettings�/
use_auto_condense (HRuseAutoCondense�(
custom_prompt ( HRcustomPrompt�L
browser_settings (2.cline.BrowserSettingsUpdateHRbrowserSettings�=
default_terminal_profile ( HRdefaultTerminalProfile�/
yolo_mode_toggled (HRyoloModeToggled�B
_api_configurationB
_telemetry_settingB#
!_plan_act_separate_models_settingB
_enable_checkpoints_settingB
_mcp_marketplace_enabledB
_shell_integration_timeoutB
_terminal_reuse_enabledB
_mcp_responses_collapsedB
_mcp_display_modeB
_terminal_output_line_limitB
_modeB
_preferred_languageB
_openai_reasoning_effortB
_strict_plan_mode_enabledB
_focus_chain_settingsB
_use_auto_condenseB
_custom_promptB
_browser_settingsB
_default_terminal_profileB
_yolo_mode_toggled"�R
ApiConfiguration
api_key ( H RapiKey�'
cline_api_key ( HRclineApiKey�
ulid ( HRulid�.
lite_llm_base_url ( HRliteLlmBaseUrl�,
lite_llm_api_key ( HRliteLlmApiKey�=
lite_llm_use_prompt_cache (HRliteLlmUsePromptCache�R
open_ai_headers (2*.cline.ApiConfiguration.OpenAiHeadersEntryRopenAiHeaders1
anthropic_base_url ( HRanthropicBaseUrl�2
open_router_api_key ( HRopenRouterApiKey�D
open_router_provider_sorting
( HRopenRouterProviderSorting�)
aws_access_key ( H RawsAccessKey�)
aws_secret_key ( H
RawsSecretKey�/
aws_session_token ( HRawsSessionToken�"
aws_region ( HR awsRegion�G
aws_use_cross_region_inference (HRawsUseCrossRegionInference�C
aws_bedrock_use_prompt_cache (HRawsBedrockUsePromptCache�+
aws_use_profile (HRawsUseProfile�$
aws_profile ( HR
awsProfile�5
aws_bedrock_endpoint ( HRawsBedrockEndpoint�-
claude_code_path ( HRclaudeCodePath�/
vertex_project_id ( HRvertexProjectId�(
vertex_region ( HRvertexRegion�,
open_ai_base_url ( HRopenAiBaseUrl�*
open_ai_api_key ( HRopenAiApiKey�+
ollama_base_url ( HRollamaBaseUrl�?
ollama_api_options_ctx_num ( HRollamaApiOptionsCtxNum�0
lm_studio_base_url ( HRlmStudioBaseUrl�)
gemini_api_key ( HRgeminiApiKey�+
gemini_base_url ( HRgeminiBaseUrl�7
open_ai_native_api_key ( HRopenAiNativeApiKey�.
deep_seek_api_key ( HRdeepSeekApiKey�-
requesty_api_key ( HRrequestyApiKey�/
requesty_base_url! ( HRrequestyBaseUrl�-
together_api_key" ( H RtogetherApiKey�/
fireworks_api_key# ( H!RfireworksApiKey�U
%fireworks_model_max_completion_tokens$ (H"R!fireworksModelMaxCompletionTokens�@
fireworks_model_max_tokens% (H#RfireworksModelMaxTokens�%
qwen_api_key& ( H$R
qwenApiKey�)
doubao_api_key' ( H%RdoubaoApiKey�+
mistral_api_key( ( H&RmistralApiKey�/
azure_api_version) ( H'RazureApiVersion�'
qwen_api_line* ( H(RqwenApiLine�)
nebius_api_key+ ( H)RnebiusApiKey�+
asksage_api_url, ( H*RasksageApiUrl�+
asksage_api_key- ( H+RasksageApiKey�#
xai_api_key. ( H,R xaiApiKey�/
sambanova_api_key/ ( H-RsambanovaApiKey�-
cerebras_api_key0 ( H.RcerebrasApiKey�1
request_timeout_ms1 (H/RrequestTimeoutMs�5
sap_ai_core_client_id2 ( H0RsapAiCoreClientId�=
sap_ai_core_client_secret3 ( H1RsapAiCoreClientSecret�6
sap_ai_resource_group4 ( H2RsapAiResourceGroup�5
sap_ai_core_token_url5 ( H3RsapAiCoreTokenUrl�3
sap_ai_core_base_url6 ( H4RsapAiCoreBaseUrl�-
moonshot_api_key7 ( H5RmoonshotApiKey�/
moonshot_api_line8 ( H6RmoonshotApiLine�=
huawei_cloud_maas_api_key9 ( H7RhuaweiCloudMaasApiKey�)
ollama_api_key: ( H8RollamaApiKey�#
zai_api_key; ( H9R zaiApiKey�%
zai_api_line< ( H:R
zaiApiLine�4
lm_studio_max_tokens= ( H;RlmStudioMaxTokens�=
vercel_ai_gateway_api_key> ( H<RvercelAiGatewayApiKey�4
qwen_code_oauth_path? ( H=RqwenCodeOauthPath�%
dify_api_key@ ( H>R
difyApiKey�'
dify_base_urlA ( H?RdifyBaseUrl�L
plan_mode_api_providerd (2.cline.ApiProviderH@RplanModeApiProvider�7
plan_mode_api_model_ide ( HARplanModeApiModelId�K
plan_mode_thinking_budget_tokensf (HBRplanModeThinkingBudgetTokens�@
plan_mode_reasoning_effortg ( HCRplanModeReasoningEffort�q
#plan_mode_vs_code_lm_model_selectorh (2 .cline.LanguageModelChatSelectorHDRplanModeVsCodeLmModelSelector�T
%plan_mode_aws_bedrock_custom_selectedi (HER planModeAwsBedrockCustomSelected�\
*plan_mode_aws_bedrock_custom_model_base_idj ( HFR#planModeAwsBedrockCustomModelBaseId�F
plan_mode_open_router_model_idk ( HGRplanModeOpenRouterModelId�f
plan_mode_open_router_model_infol (2.cline.OpenRouterModelInfoHHRplanModeOpenRouterModelInfo�>
plan_mode_open_ai_model_idm ( HIRplanModeOpenAiModelId�d
plan_mode_open_ai_model_infon (2 .cline.OpenAiCompatibleModelInfoHJRplanModeOpenAiModelInfo�=
plan_mode_ollama_model_ido ( HKRplanModeOllamaModelId�B
plan_mode_lm_studio_model_idp ( HLRplanModeLmStudioModelId�@
plan_mode_lite_llm_model_idq ( HMRplanModeLiteLlmModelId�]
plan_mode_lite_llm_model_infor (2.cline.LiteLLMModelInfoHNRplanModeLiteLlmModelInfo�A
plan_mode_requesty_model_ids ( HORplanModeRequestyModelId�a
plan_mode_requesty_model_infot (2.cline.OpenRouterModelInfoHPRplanModeRequestyModelInfo�A
plan_mode_together_model_idu ( HQRplanModeTogetherModelId�C
plan_mode_fireworks_model_idv ( HRRplanModeFireworksModelId�E
plan_mode_sap_ai_core_model_idw ( HSRplanModeSapAiCoreModelId�Q
$plan_mode_huawei_cloud_maas_model_idx ( HTRplanModeHuaweiCloudMaasModelId�q
&plan_mode_huawei_cloud_maas_model_infoy (2.cline.OpenRouterModelInfoHUR planModeHuaweiCloudMaasModelInfo�Q
$plan_mode_vercel_ai_gateway_model_idz ( HVRplanModeVercelAiGatewayModelId�q
&plan_mode_vercel_ai_gateway_model_info{ (2.cline.OpenRouterModelInfoHWR planModeVercelAiGatewayModelInfo�K
act_mode_api_provider� (2.cline.ApiProviderHXRactModeApiProvider�6
act_mode_api_model_id� ( HYRactModeApiModelId�J
act_mode_thinking_budget_tokens� (HZRactModeThinkingBudgetTokens�?
act_mode_reasoning_effort� ( H[RactModeReasoningEffort�p
"act_mode_vs_code_lm_model_selector� (2 .cline.LanguageModelChatSelectorH\RactModeVsCodeLmModelSelector�S
$act_mode_aws_bedrock_custom_selected� (H]RactModeAwsBedrockCustomSelected�[
)act_mode_aws_bedrock_custom_model_base_id� ( H^R"actModeAwsBedrockCustomModelBaseId�E
act_mode_open_router_model_id� ( H_RactModeOpenRouterModelId�e
act_mode_open_router_model_info� (2.cline.OpenRouterModelInfoH`RactModeOpenRouterModelInfo�=
act_mode_open_ai_model_id� ( HaRactModeOpenAiModelId�c
act_mode_open_ai_model_info� (2 .cline.OpenAiCompatibleModelInfoHbRactModeOpenAiModelInfo�<
act_mode_ollama_model_id� ( HcRactModeOllamaModelId�A
act_mode_lm_studio_model_id� ( HdRactModeLmStudioModelId�?
act_mode_lite_llm_model_id� ( HeRactModeLiteLlmModelId�\
act_mode_lite_llm_model_info� (2.cline.LiteLLMModelInfoHfRactModeLiteLlmModelInfo�@
act_mode_requesty_model_id� ( HgRactModeRequestyModelId�`
act_mode_requesty_model_info� (2.cline.OpenRouterModelInfoHhRactModeRequestyModelInfo�@
act_mode_together_model_id� ( HiRactModeTogetherModelId�B
act_mode_fireworks_model_id� ( HjRactModeFireworksModelId�D
act_mode_sap_ai_core_model_id� ( HkRactModeSapAiCoreModelId�P
#act_mode_huawei_cloud_maas_model_id� ( HlRactModeHuaweiCloudMaasModelId�p
%act_mode_huawei_cloud_maas_model_info� (2.cline.OpenRouterModelInfoHmRactModeHuaweiCloudMaasModelInfo�P
#act_mode_vercel_ai_gateway_model_id� ( HnRactModeVercelAiGatewayModelId�p
%act_mode_vercel_ai_gateway_model_info� (2.cline.OpenRouterModelInfoHoRactModeVercelAiGatewayModelInfo�3
aws_authentication� ( HpRawsAuthentication�3
aws_bedrock_api_key� ( HqRawsBedrockApiKey�.
cline_account_id� ( HrRclineAccountId�@
OpenAiHeadersEntry
key ( Rkey
value ( Rvalue:8B
_api_keyB
_cline_api_keyB
_ulidB
_lite_llm_base_urlB
_lite_llm_api_keyB
_lite_llm_use_prompt_cacheB
_anthropic_base_urlB
_open_router_api_keyB
_open_router_provider_sortingB
_aws_access_keyB
_aws_secret_keyB
_aws_session_tokenB
_aws_regionB!
_aws_use_cross_region_inferenceB
_aws_bedrock_use_prompt_cacheB
_aws_use_profileB
_aws_profileB
_aws_bedrock_endpointB
_claude_code_pathB
_vertex_project_idB
_vertex_regionB
_open_ai_base_urlB
_open_ai_api_keyB
_ollama_base_urlB
_ollama_api_options_ctx_numB
_lm_studio_base_urlB
_gemini_api_keyB
_gemini_base_urlB
_open_ai_native_api_keyB
_deep_seek_api_keyB
_requesty_api_keyB
_requesty_base_urlB
_together_api_keyB
_fireworks_api_keyB(
&_fireworks_model_max_completion_tokensB
_fireworks_model_max_tokensB
_qwen_api_keyB
_doubao_api_keyB
_mistral_api_keyB
_azure_api_versionB
_qwen_api_lineB
_nebius_api_keyB
_asksage_api_urlB
_asksage_api_keyB
_xai_api_keyB
_sambanova_api_keyB
_cerebras_api_keyB
_request_timeout_msB
_sap_ai_core_client_idB
_sap_ai_core_client_secretB
_sap_ai_resource_groupB
_sap_ai_core_token_urlB
_sap_ai_core_base_urlB
_moonshot_api_keyB
_moonshot_api_lineB
_huawei_cloud_maas_api_keyB
_ollama_api_keyB
_zai_api_keyB
_zai_api_lineB
_lm_studio_max_tokensB
_vercel_ai_gateway_api_keyB
_qwen_code_oauth_pathB
_dify_api_keyB
_dify_base_urlB
_plan_mode_api_providerB
_plan_mode_api_model_idB#
!_plan_mode_thinking_budget_tokensB
_plan_mode_reasoning_effortB&
$_plan_mode_vs_code_lm_model_selectorB(
&_plan_mode_aws_bedrock_custom_selectedB-
+_plan_mode_aws_bedrock_custom_model_base_idB!
_plan_mode_open_router_model_idB#
!_plan_mode_open_router_model_infoB
_plan_mode_open_ai_model_idB
_plan_mode_open_ai_model_infoB
_plan_mode_ollama_model_idB
_plan_mode_lm_studio_model_idB
_plan_mode_lite_llm_model_idB
_plan_mode_lite_llm_model_infoB
_plan_mode_requesty_model_idB
_plan_mode_requesty_model_infoB
_plan_mode_together_model_idB
_plan_mode_fireworks_model_idB!
_plan_mode_sap_ai_core_model_idB'
%_plan_mode_huawei_cloud_maas_model_idB)
'_plan_mode_huawei_cloud_maas_model_infoB'
%_plan_mode_vercel_ai_gateway_model_idB)
'_plan_mode_vercel_ai_gateway_model_infoB
_act_mode_api_providerB
_act_mode_api_model_idB"
_act_mode_thinking_budget_tokensB
_act_mode_reasoning_effortB%
#_act_mode_vs_code_lm_model_selectorB'
%_act_mode_aws_bedrock_custom_selectedB,
*_act_mode_aws_bedrock_custom_model_base_idB
_act_mode_open_router_model_idB"
_act_mode_open_router_model_infoB
_act_mode_open_ai_model_idB
_act_mode_open_ai_model_infoB
_act_mode_ollama_model_idB
_act_mode_lm_studio_model_idB
_act_mode_lite_llm_model_idB
_act_mode_lite_llm_model_infoB
_act_mode_requesty_model_idB
_act_mode_requesty_model_infoB
_act_mode_together_model_idB
_act_mode_fireworks_model_idB
_act_mode_sap_ai_core_model_idB&
$_act_mode_huawei_cloud_maas_model_idB(
&_act_mode_huawei_cloud_maas_model_infoB&
$_act_mode_vercel_ai_gateway_model_idB(
&_act_mode_vercel_ai_gateway_model_infoB
_aws_authenticationB
_aws_bedrock_api_keyB
_cline_account_id"[
&UpdateTerminalConnectionTimeoutRequest"
timeout_ms (H R timeoutMs�B
_timeout_ms"b
FocusChainSettings
enabled (Renabled2
remind_cline_interval (RremindClineInterval"8
Viewport