-
Notifications
You must be signed in to change notification settings - Fork 410
Expand file tree
/
Copy pathtypes.gen.ts
More file actions
19386 lines (17813 loc) · 402 KB
/
Copy pathtypes.gen.ts
File metadata and controls
19386 lines (17813 loc) · 402 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
// This file is auto-generated by @hey-api/openapi-ts
/**
* Describes a change to an action between two versions.
*/
export type ActionChange = {
action_name: string
change_type: "added" | "removed" | "modified"
interface_changes?: Array<ActionInterfaceChange>
description_changed?: boolean
}
export type change_type = "added" | "removed" | "modified"
export type ActionControlFlow = {
run_if?: string | null
for_each?: string | Array<string> | null
join_strategy?: JoinStrategy
retry_policy?: ActionRetryPolicy
/**
* Delay before starting the action in seconds. If `wait_until` is also provided, the `wait_until` timer will take precedence.
*/
start_delay?: number
/**
* Wait until a specific date and time before starting. Overrides `start_delay` if both are provided.
*/
wait_until?: string | null
/**
* Override environment for this action's execution
*/
environment?: string | null
/**
* If true, redact this action's result in workflow execution API responses while preserving internal workflow data flow between actions.
*/
mask_output?: boolean
}
export type ActionCreate = {
workflow_id: string
type: string
title: string
description?: string
inputs?: string
control_flow?: ActionControlFlow | null
is_interactive?: boolean
interaction?: ResponseInteraction | ApprovalInteraction | null
position_x?: number
position_y?: number
upstream_edges?: Array<ActionEdge>
}
/**
* Represents an incoming edge to an action.
*
* Stored in Action.upstream_edges to represent incoming connections.
*/
export type ActionEdge = {
source_id: string
source_type: "trigger" | "udf"
source_handle?: "success" | "error"
}
export type source_type = "trigger" | "udf"
export type source_handle = "success" | "error"
/**
* Describes a change to an action's interface (expects or returns).
*/
export type ActionInterfaceChange = {
field: "expects" | "returns"
change_type: "added" | "removed" | "modified"
old_value?: {
[key: string]: unknown
} | null
new_value?: {
[key: string]: unknown
} | null
}
export type field = "expects" | "returns"
/**
* Position update for a single action.
*/
export type ActionPositionUpdate = {
action_id: string
position: Position
}
export type ActionRead = {
id: string
type: string
title: string
description: string
status: string
inputs: string
control_flow?: ActionControlFlow
is_interactive: boolean
interaction?: ResponseInteraction | ApprovalInteraction | null
position_x?: number
position_y?: number
upstream_edges?: Array<ActionEdge>
readonly ref: string
}
export type ActionReadMinimal = {
id: string
workflow_id: string
type: string
title: string
description: string
status: string
is_interactive: boolean
}
export type ActionRetryPolicy = {
/**
* Total number of execution attempts. 0 means unlimited, 1 means no retries.
*/
max_attempts?: number
/**
* Timeout for the action in seconds.
*/
timeout?: number
/**
* Retry until a specific condition is met.
*/
retry_until?: string | null
}
export type ActionStatement = {
/**
* Unique reference for the task
*/
ref: string
description?: string
/**
* Action type. Equivalent to the UDF key.
*/
action: string
/**
* Arguments for the action
*/
args?: {
[key: string]: unknown
}
/**
* Task dependencies
*/
depends_on?: Array<string>
/**
* Whether the action is interactive.
*/
interaction?: ResponseInteraction | ApprovalInteraction | null
/**
* Condition to run the task
*/
run_if?: string | null
/**
* Iterate over a list of items and run the task for each item.
*/
for_each?: string | Array<string> | null
/**
* Retry policy for the action.
*/
retry_policy?: ActionRetryPolicy
/**
* Delay before starting the action in seconds. If `wait_until` is also provided, the `wait_until` timer will take precedence.
*/
start_delay?: number
/**
* Wait until a specific date and time before starting. Overrides `start_delay` if both are provided.
*/
wait_until?: string | null
/**
* The strategy to use when joining on this task. By default, all branches must complete successfully before the join task can complete.
*/
join_strategy?: JoinStrategy
/**
* Override environment for this action's execution. Can be a template expression.
*/
environment?: string | null
/**
* If true, redact this action's result in workflow execution API responses while preserving internal workflow data flow between actions.
*/
mask_output?: boolean
}
export type ActionStep = {
/**
* The reference of the step
*/
ref: string
action: string
args: {
[key: string]: unknown
}
}
export type ActionType = {
component_id?: "action-type"
multiple?: boolean
}
export type ActionUpdate = {
title?: string | null
description?: string | null
status?: string | null
inputs?: string
control_flow?: ActionControlFlow | null
is_interactive?: boolean | null
interaction?: ResponseInteraction | ApprovalInteraction | null
position_x?: number | null
position_y?: number | null
upstream_edges?: Array<ActionEdge> | null
}
/**
* Result of validating a registry action's arguments.
*/
export type ActionValidationResult = {
type?: "action"
status: "success" | "error"
msg?: string
detail?: Array<ValidationDetail> | null
ref?: string | null
action_type: string
validated_args?: {
[key: string]: unknown
} | null
}
export type status = "success" | "error"
/**
* Create an organization invitation from the platform admin console.
*/
export type AdminOrgInvitationCreate = {
email: string
role_slug?:
| "organization-owner"
| "organization-admin"
| "organization-member"
}
export type role_slug =
| "organization-owner"
| "organization-admin"
| "organization-member"
/**
* Create response containing the raw invitation token.
*/
export type AdminOrgInvitationCreateResponse = {
id: string
organization_id: string
email: string
role_id: string
role_name: string
role_slug?: string | null
status: InvitationStatus
invited_by: string | null
expires_at: string
created_at: string
accepted_at: string | null
created_by_platform_admin: boolean
token: string
}
/**
* Platform-created organization invitation response.
*/
export type AdminOrgInvitationRead = {
id: string
organization_id: string
email: string
role_id: string
role_name: string
role_slug?: string | null
status: InvitationStatus
invited_by: string | null
expires_at: string
created_at: string
accepted_at: string | null
created_by_platform_admin: boolean
}
/**
* Raw invitation token response.
*/
export type AdminOrgInvitationTokenRead = {
token: string
}
/**
* Create a user from the platform admin control plane.
*/
export type AdminUserCreate = {
email: string
password: string
first_name?: string | null
last_name?: string | null
is_superuser?: boolean
}
/**
* Admin view of a user.
*/
export type AdminUserRead = {
id: string
email: string
first_name?: string | null
last_name?: string | null
role: UserRole
is_active: boolean
is_superuser: boolean
is_verified: boolean
last_login_at?: string | null
}
/**
* Agent preset artifact shown in artifact-capable chat surfaces.
*/
export type AgentArtifact = {
id: string
title: string
scope?: ArtifactScope | null
type?: "agent"
}
/**
* List catalog entries with pagination.
*/
export type AgentCatalogListResponse = {
items: Array<AgentCatalogRead>
next_cursor?: string | null
}
/**
* Single catalog model entry.
*/
export type AgentCatalogRead = {
id: string
custom_provider_id: string | null
organization_id: string | null
model_provider: string
model_name: string
model_metadata: {
[key: string]: unknown
} | null
}
/**
* Request schema for creating an external channel token.
*/
export type AgentChannelTokenCreate = {
/**
* Preset to link this channel token to
*/
agent_preset_id: string
/**
* External channel type
*/
channel_type: ChannelType
/**
* Channel-specific configuration payload
*/
config: SlackChannelTokenConfig
/**
* Whether this token is active
*/
is_active?: boolean
}
/**
* Response schema for an external channel token.
*/
export type AgentChannelTokenRead = {
id: string
workspace_id: string
agent_preset_id: string
channel_type: ChannelType
config: SlackChannelTokenConfig
is_active: boolean
public_token: string
endpoint_url: string
created_at: string
updated_at: string
}
/**
* Request schema for updating an external channel token.
*/
export type AgentChannelTokenUpdate = {
/**
* Updated channel configuration payload
*/
config?: SlackChannelTokenConfig | null
/**
* Activation state
*/
is_active?: boolean | null
}
/**
* Create custom LLM provider.
*/
export type AgentCustomProviderCreate = {
display_name: string
base_url?: string | null
passthrough?: boolean
api_key_header?: string | null
api_key?: string | null
custom_headers?: {
[key: string]: string
} | null
}
/**
* List response with pagination.
*/
export type AgentCustomProviderListResponse = {
items: Array<AgentCustomProviderRead>
next_cursor?: string | null
}
/**
* Read custom provider.
*/
export type AgentCustomProviderRead = {
id: string
organization_id: string
display_name: string
base_url: string | null
passthrough: boolean
api_key_header: string | null
last_refreshed_at: string | null
}
/**
* Update custom provider.
*/
export type AgentCustomProviderUpdate = {
display_name?: string | null
base_url?: string | null
passthrough?: boolean | null
api_key_header?: string | null
api_key?: string | null
custom_headers?: {
[key: string]: string
} | null
}
export type AgentFolderCreate = {
name: string
parent_path?: string
}
export type AgentFolderDelete = {
recursive?: boolean
}
export type AgentFolderDirectoryItem = {
id: string
name: string
path: string
workspace_id: string
created_at: string
updated_at: string
type: "folder"
num_items: number
}
export type AgentFolderMove = {
new_parent_path?: string | null
}
export type AgentFolderRead = {
id: string
name: string
path: string
workspace_id: string
created_at: string
updated_at: string
}
export type AgentFolderUpdate = {
name?: string | null
}
export type AgentModel = {
component_id?: "agent-model"
}
/**
* Enable a model for org or workspace.
*/
export type AgentModelAccessCreate = {
catalog_id: string
workspace_id?: string | null
}
/**
* List accessible models with pagination.
*/
export type AgentModelAccessListResponse = {
items: Array<AgentModelAccessRead>
next_cursor?: string | null
}
/**
* Model access entry.
*/
export type AgentModelAccessRead = {
id: string
organization_id: string
workspace_id: string | null
catalog_id: string
}
export type AgentOutput = {
output: unknown
message_history?: Array<ChatMessage> | null
duration: number
usage?: RunUsage | null
session_id: string
}
export type AgentPreset = {
component_id?: "agent-preset"
}
export type AgentPresetCapability =
| "approvals"
| "subagents"
| "internet_access"
/**
* Payload for creating a new agent preset.
*/
export type AgentPresetCreate = {
instructions?: string | null
model_name: string
model_provider: string
catalog_id?: string | null
base_url?: string | null
output_type?: OutputType | null
actions?: Array<string> | null
namespaces?: Array<string> | null
tool_approvals?: {
[key: string]: boolean
} | null
mcp_integrations?: Array<string> | null
agents?: AgentSubagentsConfig_Input
retries?: number
enable_thinking?: boolean
enable_internet_access?: boolean
description?: string | null
skills?: Array<AgentPresetSkillBindingBase> | null
name: string
slug?: string | null
}
/**
* Agent preset as a directory item.
*/
export type AgentPresetDirectoryItem = {
type: "preset"
id: string
name: string
slug: string
description: string | null
model_provider: string
model_name: string
folder_id: string | null
tags: Array<TagRead>
created_at: string
updated_at: string
}
/**
* Payload for moving an agent preset to a folder.
*/
export type AgentPresetMoveToFolder = {
folder_path?: string | null
}
/**
* API model for reading agent presets.
*/
export type AgentPresetRead = {
instructions?: string | null
model_name: string
model_provider: string
catalog_id?: string | null
base_url?: string | null
output_type?: OutputType | null
actions?: Array<string> | null
namespaces?: Array<string> | null
tool_approvals?: {
[key: string]: boolean
} | null
mcp_integrations?: Array<string> | null
agents?: AgentSubagentsConfig_Output
retries?: number
enable_thinking?: boolean
enable_internet_access?: boolean
id: string
workspace_id: string
name: string
slug: string
description?: string | null
current_version_id?: string | null
skills?: Array<AgentPresetSkillBindingRead>
created_at: string
updated_at: string
}
/**
* Minimal API model for reading agent presets in list endpoints.
*/
export type AgentPresetReadMinimal = {
id: string
workspace_id: string
name: string
slug: string
description: string | null
model_provider: string
model_name: string
folder_id?: string | null
tags?: Array<TagRead>
current_version_id?: string | null
capabilities?: Array<AgentPresetCapability>
current_version_subagent_eligibility?: AgentPresetSubagentEligibility
created_at: string
updated_at: string
}
/**
* Shared fields for preset skill bindings.
*/
export type AgentPresetSkillBindingBase = {
skill_id: string
skill_version_id: string
}
/**
* Diff entry for skill binding changes between preset versions.
*/
export type AgentPresetSkillBindingChange = {
skill_id: string
skill_name: string
old_skill_version_id?: string | null
old_skill_version?: number | null
new_skill_version_id?: string | null
new_skill_version?: number | null
}
/**
* Resolved preset skill binding with metadata.
*/
export type AgentPresetSkillBindingRead = {
skill_id: string
skill_version_id: string
skill_name: string
skill_version: number
}
/**
* Whether a preset version can be attached as a preset-backed subagent.
*/
export type AgentPresetSubagentEligibility = {
eligible?: boolean
reasons?: Array<AgentPresetSubagentEligibilityReason>
message?: string | null
}
export type AgentPresetSubagentEligibilityReason =
| "agents_enabled"
| "tool_approvals"
/**
* Payload for adding a tag to an agent preset.
*/
export type AgentPresetTagCreate = {
tag_id: string
}
/**
* Payload for updating an existing agent preset.
*/
export type AgentPresetUpdate = {
name?: string | null
slug?: string | null
description?: string | null
instructions?: string | null
model_name?: string | null
model_provider?: string | null
catalog_id?: string | null
base_url?: string | null
output_type?: OutputType | null
actions?: Array<string> | null
namespaces?: Array<string> | null
tool_approvals?: {
[key: string]: boolean
} | null
mcp_integrations?: Array<string> | null
agents?: AgentSubagentsConfig_Input | null
retries?: number | null
enable_thinking?: boolean | null
enable_internet_access?: boolean | null
skills?: Array<AgentPresetSkillBindingBase> | null
}
/**
* Structured diff between two preset versions.
*/
export type AgentPresetVersionDiff = {
base_version_id: string
base_version: number
compare_version_id: string
compare_version: number
instructions_changed?: boolean
base_instructions?: string | null
compare_instructions?: string | null
scalar_changes?: Array<ScalarFieldChange>
list_changes?: Array<StringListFieldChange>
tool_approval_changes?: Array<ToolApprovalFieldChange>
skill_changes?: Array<AgentPresetSkillBindingChange>
total_changes?: number
}
/**
* Full response model for an immutable preset version.
*/
export type AgentPresetVersionRead = {
instructions?: string | null
model_name: string
model_provider: string
catalog_id?: string | null
base_url?: string | null
output_type?: OutputType | null
actions?: Array<string> | null
namespaces?: Array<string> | null
tool_approvals?: {
[key: string]: boolean
} | null
mcp_integrations?: Array<string> | null
agents?: AgentSubagentsConfig_Output
retries?: number
enable_thinking?: boolean
enable_internet_access?: boolean
id: string
preset_id: string
workspace_id: string
version: number
capabilities?: Array<AgentPresetCapability>
subagent_eligibility?: AgentPresetSubagentEligibility
skills?: Array<AgentPresetSkillBindingRead>
created_at: string
updated_at: string
}
/**
* Metadata returned when listing immutable preset versions.
*/
export type AgentPresetVersionReadMinimal = {
id: string
preset_id: string
workspace_id: string
version: number
capabilities?: Array<AgentPresetCapability>
subagent_eligibility?: AgentPresetSubagentEligibility
created_at: string
updated_at: string
}
/**
* Response schema for persisted agent session artifacts.
*/
export type AgentSessionArtifactsRead = {
artifacts?: Array<Artifact>
}
/**
* Request schema for creating an agent session.
*/
export type AgentSessionCreate = {
/**
* Session ID. If not provided, service generates one.
*/
id?: string | null
/**
* Human-readable title for the session
*/
title?: string
/**
* User who created this session
*/
created_by?: string | null
/**
* Type of entity this session is associated with
*/
entity_type: AgentSessionEntity
/**
* ID of the associated entity
*/
entity_id: string
/**
* Extra tools added to this session alongside entity defaults
*/
tools?: Array<string> | null
/**
* MCP integration IDs attached to this session
*/
mcp_integrations?: Array<string> | null
/**
* Agent preset used for this session (if any)
*/
agent_preset_id?: string | null
/**
* Pinned preset version used for this session. If null, the session follows the preset's current version.
*/
agent_preset_version_id?: string | null
/**
* Agent harness type
*/
harness_type?: HarnessType
}
/**
* The type of entity associated with an agent session.
*
* Determines the context and behavior of the session:
* - CASE: Chat attached to a Case entity for investigation
* - AGENT_PRESET: Live chat testing a preset configuration
* - AGENT_PRESET_BUILDER: Builder chat for editing/configuring a preset
* - WORKSPACE_CHAT: Workspace-level chat assistant (wire value: copilot)
* - WORKFLOW: Workflow-initiated agent run (from action)
* - APPROVAL: Inbox approval continuation (hidden from main chat list)
* - EXTERNAL_CHANNEL: External channel session (e.g. Slack thread)
*/
export type AgentSessionEntity =
| "case"
| "agent_preset"
| "agent_preset_builder"
| "copilot"
| "workflow"
| "approval"
| "external_channel"
/**
* Request schema for forking an agent session.
*/
export type AgentSessionForkRequest = {
/**
* Override entity type for the forked session. Use 'approval' for inbox forks to hide from main chat list.
*/
entity_type?: AgentSessionEntity | null
}
/**
* Response schema for agent session.
*/
export type AgentSessionRead = {
id: string
workspace_id: string
title: string
created_by: string | null
entity_type: AgentSessionEntity
entity_id: string
channel_context: {
[key: string]: unknown
} | null
tools: Array<string> | null
mcp_integrations: Array<string> | null
agent_preset_id: string | null
agent_preset_version_id: string | null
agents_binding?: ResolvedAgentsConfig | null
harness_type: string | null
last_stream_id?: string | null
artifacts?: Array<Artifact>
parent_session_id?: string | null
created_at: string
updated_at: string
}
/**
* Response schema for agent session with Vercel format messages.
*/
export type AgentSessionReadVercel = {
id: string
workspace_id: string
title: string
created_by: string | null
entity_type: AgentSessionEntity
entity_id: string
channel_context: {
[key: string]: unknown
} | null
tools: Array<string> | null
mcp_integrations: Array<string> | null
agent_preset_id: string | null
agent_preset_version_id: string | null
agents_binding?: ResolvedAgentsConfig | null
harness_type: string | null
last_stream_id?: string | null
artifacts?: Array<Artifact>
parent_session_id?: string | null
created_at: string
updated_at: string
/**
* Session messages in Vercel UI format
*/
messages?: Array<UIMessage>
}
/**
* Response schema for agent session with message history.
*/
export type AgentSessionReadWithMessages = {
id: string
workspace_id: string
title: string
created_by: string | null
entity_type: AgentSessionEntity
entity_id: string
channel_context: {
[key: string]: unknown
} | null
tools: Array<string> | null
mcp_integrations: Array<string> | null
agent_preset_id: string | null
agent_preset_version_id: string | null
agents_binding?: ResolvedAgentsConfig | null
harness_type: string | null
last_stream_id?: string | null
artifacts?: Array<Artifact>
parent_session_id?: string | null
created_at: string
updated_at: string
/**
* Session messages
*/
messages?: Array<unknown>
}
/**
* Request schema for updating an agent session.
*/
export type AgentSessionUpdate = {
/**
* Session title
*/
title?: string | null
/**
* Extra tools added to this session alongside entity defaults
*/
tools?: Array<string> | null
/**
* MCP integration IDs attached to this session
*/
mcp_integrations?: Array<string> | null
/**
* Agent preset to use for this session
*/
agent_preset_id?: string | null
/**
* Pinned preset version to use for this session. Set null to follow the preset's current version.
*/
agent_preset_version_id?: string | null
/**
* Agent harness type
*/
harness_type?: HarnessType | null
}
export type AgentSettingsRead = {
agent_default_model: string | null
agent_fixed_args: string | null
agent_case_chat_prompt: string
agent_case_chat_inject_content: boolean
}
export type AgentSettingsUpdate = {
/**
* The default AI model to use for agent operations.
*/
agent_default_model?: string | null
/**
* Fixed arguments for agent tools as a JSON string. Format: {'tool_name': {'arg': 'value'}}
*/
agent_fixed_args?: string | null
/**
* Additional instructions for case chat agent; prepended to UI-provided instructions.
*/
agent_case_chat_prompt?: string
/**
* Whether to automatically inject case content into agent prompts when a case_id is available.