@soat/sdk 0.13.19 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +108 -4
- package/dist/index.d.cts +577 -104
- package/dist/index.d.mts +577 -104
- package/dist/index.mjs +108 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -401,7 +401,7 @@ type Agent = {
|
|
|
401
401
|
*/
|
|
402
402
|
tools?: Array<CreateToolRequest> | null;
|
|
403
403
|
/**
|
|
404
|
-
* Maximum
|
|
404
|
+
* Maximum agent loop steps before stopping
|
|
405
405
|
*/
|
|
406
406
|
max_steps?: number | null;
|
|
407
407
|
/**
|
|
@@ -470,7 +470,6 @@ type Agent = {
|
|
|
470
470
|
prompt?: string;
|
|
471
471
|
};
|
|
472
472
|
} | null;
|
|
473
|
-
reasoning?: ReasoningConfig;
|
|
474
473
|
/**
|
|
475
474
|
* JSON Schema describing the structured object the model must return. When set, non-streaming generations use the AI SDK to constrain output to this schema; the parsed value is returned as `output.object` in the generation response. See the Structured Output section in the Agents module docs.
|
|
476
475
|
*/
|
|
@@ -488,83 +487,6 @@ type Agent = {
|
|
|
488
487
|
created_at?: Date;
|
|
489
488
|
updated_at?: Date;
|
|
490
489
|
};
|
|
491
|
-
type ReasoningBranch = {
|
|
492
|
-
/**
|
|
493
|
-
* Label used for transcript/observability and as the `{transcript}` turn attribution; falls back to the step name.
|
|
494
|
-
*/
|
|
495
|
-
name?: string;
|
|
496
|
-
/**
|
|
497
|
-
* Prompt template for this branch, supporting `{question}`, `{draft}`, `{steps.<name>}`, `{steps.<name>.last}`, and `{transcript}`. Falls back to the step-level `prompt` when omitted.
|
|
498
|
-
*/
|
|
499
|
-
prompt?: string;
|
|
500
|
-
/**
|
|
501
|
-
* AI provider override for this branch. Must belong to the agent's project.
|
|
502
|
-
*/
|
|
503
|
-
ai_provider_id?: string;
|
|
504
|
-
/**
|
|
505
|
-
* Model override for this branch.
|
|
506
|
-
*/
|
|
507
|
-
model?: string;
|
|
508
|
-
/**
|
|
509
|
-
* Sampling temperature override for this branch.
|
|
510
|
-
*/
|
|
511
|
-
temperature?: number;
|
|
512
|
-
};
|
|
513
|
-
type ReasoningStep = {
|
|
514
|
-
/**
|
|
515
|
-
* Unique step name; referenced as `{steps.<name>}` / `{steps.<name>.last}`. Must not contain '.'.
|
|
516
|
-
*/
|
|
517
|
-
name: string;
|
|
518
|
-
/**
|
|
519
|
-
* Prompt template supporting `{question}`, `{draft}`, `{steps.<name>}`, `{steps.<name>.last}`, and `{transcript}`. Required unless every branch supplies its own prompt.
|
|
520
|
-
*/
|
|
521
|
-
prompt?: string;
|
|
522
|
-
/**
|
|
523
|
-
* Branches to run for this step (1–5 entries). Omit for a single implicit branch (today’s "completion").
|
|
524
|
-
*/
|
|
525
|
-
branches?: Array<ReasoningBranch>;
|
|
526
|
-
/**
|
|
527
|
-
* Rounds of branch turns (default 1). A value greater than 1 requires a branch (or step, used as fallback) prompt that references `{transcript}` — otherwise the rounds would be provably redundant, identical-config samples.
|
|
528
|
-
*/
|
|
529
|
-
rounds?: number;
|
|
530
|
-
/**
|
|
531
|
-
* Step-level AI provider default for branches that omit their own.
|
|
532
|
-
*/
|
|
533
|
-
ai_provider_id?: string;
|
|
534
|
-
/**
|
|
535
|
-
* Step-level model default for branches that omit their own.
|
|
536
|
-
*/
|
|
537
|
-
model?: string;
|
|
538
|
-
/**
|
|
539
|
-
* Step-level sampling temperature default for branches that omit their own.
|
|
540
|
-
*/
|
|
541
|
-
temperature?: number;
|
|
542
|
-
/**
|
|
543
|
-
* Marks the step whose output is the final answer (else the last step).
|
|
544
|
-
*/
|
|
545
|
-
output?: boolean;
|
|
546
|
-
/**
|
|
547
|
-
* Single-branch steps only. If the step output equals this string, halt the pipeline and keep the draft.
|
|
548
|
-
*/
|
|
549
|
-
halt_if_equals?: string;
|
|
550
|
-
};
|
|
551
|
-
/**
|
|
552
|
-
* Deep-thinking configuration. `effort` forwards provider-native reasoning; `mode: pipeline` runs an ordered list of reasoning steps after the base draft, each step running 1..N branches over 1..R rounds. reflect, debate, and best-of-N are expressed as pipelines over this primitive — see the Agents module docs and the deep-thinking tutorial. As a per-generation override (in the generate request body), this replaces the agent's stored reasoning config entirely (object replace, not merge).
|
|
553
|
-
*/
|
|
554
|
-
type ReasoningConfig = {
|
|
555
|
-
/**
|
|
556
|
-
* Provider-native reasoning effort, forwarded to providers that support it (OpenAI reasoning models, Anthropic extended thinking, Google thinking budgets). Ignored elsewhere. Composes with any `mode`.
|
|
557
|
-
*/
|
|
558
|
-
effort?: 'low' | 'medium' | 'high';
|
|
559
|
-
/**
|
|
560
|
-
* Orchestrated reasoning strategy. `pipeline` runs an ordered list of reasoning steps after the base draft. Applies to non-streaming completed generations only.
|
|
561
|
-
*/
|
|
562
|
-
mode?: 'none' | 'pipeline';
|
|
563
|
-
/**
|
|
564
|
-
* Pipeline only — ordered reasoning steps run after the base draft. The output step (`output: true`, else the last) produces the final answer.
|
|
565
|
-
*/
|
|
566
|
-
steps?: Array<ReasoningStep>;
|
|
567
|
-
} | null;
|
|
568
490
|
type CreateAgentRequest = {
|
|
569
491
|
/**
|
|
570
492
|
* Public ID of the project
|
|
@@ -631,7 +553,6 @@ type CreateAgentRequest = {
|
|
|
631
553
|
prompt?: string;
|
|
632
554
|
};
|
|
633
555
|
};
|
|
634
|
-
reasoning?: ReasoningConfig;
|
|
635
556
|
/**
|
|
636
557
|
* JSON Schema describing the structured object the model must return. When set, non-streaming generations use the AI SDK to constrain output to this schema; the parsed value is returned as `output.object` in the generation response. See the Structured Output section in the Agents module docs.
|
|
637
558
|
*/
|
|
@@ -706,7 +627,6 @@ type UpdateAgentRequest = {
|
|
|
706
627
|
prompt?: string;
|
|
707
628
|
};
|
|
708
629
|
} | null;
|
|
709
|
-
reasoning?: ReasoningConfig;
|
|
710
630
|
/**
|
|
711
631
|
* JSON Schema describing the structured object the model must return. When set, non-streaming generations use the AI SDK to constrain output to this schema; the parsed value is returned as `output.object` in the generation response. See the Structured Output section in the Agents module docs.
|
|
712
632
|
*/
|
|
@@ -764,7 +684,6 @@ type CreateAgentGenerationRequest = {
|
|
|
764
684
|
min_score?: number;
|
|
765
685
|
limit?: number;
|
|
766
686
|
} | null;
|
|
767
|
-
reasoning?: ReasoningConfig;
|
|
768
687
|
};
|
|
769
688
|
type ToolOutputMessageContent = {
|
|
770
689
|
type: 'tool_output';
|
|
@@ -1097,6 +1016,97 @@ type GenerateConversationMessageResponse = ({
|
|
|
1097
1016
|
} & GenerateConversationMessageCompleted) | ({
|
|
1098
1017
|
status: 'requires_action';
|
|
1099
1018
|
} & GenerateConversationMessageRequiresAction);
|
|
1019
|
+
/**
|
|
1020
|
+
* Override for the final synthesis pass that weighs the deliberation into a single outcome.
|
|
1021
|
+
*/
|
|
1022
|
+
type SynthesisConfig = {
|
|
1023
|
+
ai_provider_id?: string;
|
|
1024
|
+
model?: string;
|
|
1025
|
+
/**
|
|
1026
|
+
* Synthesis prompt template. Supports {steps.deliberation} and {topic}.
|
|
1027
|
+
*/
|
|
1028
|
+
prompt?: string;
|
|
1029
|
+
/**
|
|
1030
|
+
* Provider-native reasoning effort for the synthesis completion.
|
|
1031
|
+
*/
|
|
1032
|
+
effort?: 'low' | 'medium' | 'high';
|
|
1033
|
+
} | null;
|
|
1034
|
+
/**
|
|
1035
|
+
* A participant in the deliberation.
|
|
1036
|
+
*/
|
|
1037
|
+
type ParticipantInput = {
|
|
1038
|
+
/**
|
|
1039
|
+
* Display label used for transcript attribution.
|
|
1040
|
+
*/
|
|
1041
|
+
name?: string | null;
|
|
1042
|
+
/**
|
|
1043
|
+
* Persona prompt for this participant.
|
|
1044
|
+
*/
|
|
1045
|
+
prompt?: string | null;
|
|
1046
|
+
/**
|
|
1047
|
+
* Turn order (defaults to array index).
|
|
1048
|
+
*/
|
|
1049
|
+
position?: number;
|
|
1050
|
+
/**
|
|
1051
|
+
* Durable actor identity to attribute this participant's turns to.
|
|
1052
|
+
*/
|
|
1053
|
+
actor_id?: string | null;
|
|
1054
|
+
ai_provider_id?: string | null;
|
|
1055
|
+
model?: string | null;
|
|
1056
|
+
temperature?: number | null;
|
|
1057
|
+
/**
|
|
1058
|
+
* Provider-native reasoning effort for this participant's turns.
|
|
1059
|
+
*/
|
|
1060
|
+
effort?: 'low' | 'medium' | 'high';
|
|
1061
|
+
};
|
|
1062
|
+
type ParticipantRecord = {
|
|
1063
|
+
id?: string;
|
|
1064
|
+
name?: string | null;
|
|
1065
|
+
prompt?: string | null;
|
|
1066
|
+
position?: number;
|
|
1067
|
+
actor_id?: string | null;
|
|
1068
|
+
ai_provider_id?: string | null;
|
|
1069
|
+
model?: string | null;
|
|
1070
|
+
temperature?: number | null;
|
|
1071
|
+
effort?: string | null;
|
|
1072
|
+
};
|
|
1073
|
+
type DiscussionRecord = {
|
|
1074
|
+
id?: string;
|
|
1075
|
+
project_id?: string;
|
|
1076
|
+
name?: string;
|
|
1077
|
+
description?: string | null;
|
|
1078
|
+
max_rounds?: number;
|
|
1079
|
+
ai_provider_id?: string | null;
|
|
1080
|
+
model?: string | null;
|
|
1081
|
+
synthesis?: SynthesisConfig;
|
|
1082
|
+
tags?: {
|
|
1083
|
+
[key: string]: string;
|
|
1084
|
+
};
|
|
1085
|
+
participants?: Array<ParticipantRecord>;
|
|
1086
|
+
created_at?: Date;
|
|
1087
|
+
updated_at?: Date;
|
|
1088
|
+
};
|
|
1089
|
+
type DiscussionRunRecord = {
|
|
1090
|
+
id?: string;
|
|
1091
|
+
discussion_id?: string;
|
|
1092
|
+
project_id?: string;
|
|
1093
|
+
topic?: string;
|
|
1094
|
+
status?: 'pending' | 'running' | 'completed' | 'failed';
|
|
1095
|
+
/**
|
|
1096
|
+
* The synthesized outcome text (the tool-result contract).
|
|
1097
|
+
*/
|
|
1098
|
+
outcome?: string | null;
|
|
1099
|
+
conversation_id?: string | null;
|
|
1100
|
+
outcome_document_id?: string | null;
|
|
1101
|
+
started_by?: {
|
|
1102
|
+
[key: string]: unknown;
|
|
1103
|
+
} | null;
|
|
1104
|
+
initiator_generation_id?: string | null;
|
|
1105
|
+
trace_id?: string | null;
|
|
1106
|
+
completed_at?: Date | null;
|
|
1107
|
+
created_at?: Date;
|
|
1108
|
+
updated_at?: Date;
|
|
1109
|
+
};
|
|
1100
1110
|
type DocumentRecord = {
|
|
1101
1111
|
/**
|
|
1102
1112
|
* Document ID
|
|
@@ -1509,7 +1519,6 @@ type AgentResourceProperties = {
|
|
|
1509
1519
|
prompt?: string;
|
|
1510
1520
|
};
|
|
1511
1521
|
} | null;
|
|
1512
|
-
reasoning?: ReasoningConfig;
|
|
1513
1522
|
/**
|
|
1514
1523
|
* JSON Schema describing the structured object the model must return. Non-streaming generations are constrained to this schema; the parsed value is returned as `output.object`.
|
|
1515
1524
|
*/
|
|
@@ -1799,6 +1808,40 @@ type ConversationResourceProperties = {
|
|
|
1799
1808
|
*/
|
|
1800
1809
|
actor_id?: string | null;
|
|
1801
1810
|
};
|
|
1811
|
+
/**
|
|
1812
|
+
* Declares a discussion (deliberation config) within the formation's project. Providing participants replaces the full set on update.
|
|
1813
|
+
*/
|
|
1814
|
+
type DiscussionResourceProperties = {
|
|
1815
|
+
/**
|
|
1816
|
+
* Display name of the discussion
|
|
1817
|
+
*/
|
|
1818
|
+
name: string;
|
|
1819
|
+
description?: string | null;
|
|
1820
|
+
/**
|
|
1821
|
+
* Default AI provider participants and synthesis fall back to
|
|
1822
|
+
*/
|
|
1823
|
+
ai_provider_id: string;
|
|
1824
|
+
/**
|
|
1825
|
+
* Default model (falls back to the provider's default_model)
|
|
1826
|
+
*/
|
|
1827
|
+
model?: string | null;
|
|
1828
|
+
/**
|
|
1829
|
+
* Rounds of deliberation (1–3, default 1)
|
|
1830
|
+
*/
|
|
1831
|
+
max_rounds?: number | null;
|
|
1832
|
+
/**
|
|
1833
|
+
* Override for the final synthesis pass
|
|
1834
|
+
*/
|
|
1835
|
+
synthesis?: {
|
|
1836
|
+
[key: string]: unknown;
|
|
1837
|
+
} | null;
|
|
1838
|
+
/**
|
|
1839
|
+
* The deliberation participants (max 5)
|
|
1840
|
+
*/
|
|
1841
|
+
participants?: Array<{
|
|
1842
|
+
[key: string]: unknown;
|
|
1843
|
+
}>;
|
|
1844
|
+
};
|
|
1802
1845
|
/**
|
|
1803
1846
|
* Registers a file record within the formation's project.
|
|
1804
1847
|
*/
|
|
@@ -1986,7 +2029,7 @@ type ResourceDeclaration = {
|
|
|
1986
2029
|
* Resource properties. Values may use `{ "ref": "logicalId" }` to reference physical IDs of other resources in the template, `{ "param": "ParamName" }` to substitute a parameter value, or `{ "sub": "text ${ParamName}" }` to interpolate parameter values into a string.
|
|
1987
2030
|
*
|
|
1988
2031
|
*/
|
|
1989
|
-
properties: AgentResourceProperties | ActorResourceProperties | AiProviderResourceProperties | ToolResourceProperties | ApiKeyResourceProperties | ChatResourceProperties | ConversationResourceProperties | DocumentResourceProperties | FileResourceProperties | IngestionRuleResourceProperties | MemoryResourceProperties | MemoryEntryResourceProperties | OrchestrationResourceProperties | PolicyResourceProperties | SecretResourceProperties | SessionResourceProperties | WebhookResourceProperties;
|
|
2032
|
+
properties: AgentResourceProperties | ActorResourceProperties | AiProviderResourceProperties | ToolResourceProperties | ApiKeyResourceProperties | ChatResourceProperties | ConversationResourceProperties | DiscussionResourceProperties | DocumentResourceProperties | FileResourceProperties | IngestionRuleResourceProperties | MemoryResourceProperties | MemoryEntryResourceProperties | OrchestrationResourceProperties | PolicyResourceProperties | SecretResourceProperties | SessionResourceProperties | WebhookResourceProperties;
|
|
1990
2033
|
/**
|
|
1991
2034
|
* Explicit dependency list. In addition to implicit `ref` dependencies.
|
|
1992
2035
|
*/
|
|
@@ -2121,7 +2164,7 @@ type Generation = {
|
|
|
2121
2164
|
*/
|
|
2122
2165
|
trace_id?: string;
|
|
2123
2166
|
/**
|
|
2124
|
-
* Public ID of the generation that triggered this one. Set for
|
|
2167
|
+
* Public ID of the generation that triggered this one. Set for sub-agent invocations. Null for top-level generations.
|
|
2125
2168
|
*
|
|
2126
2169
|
*/
|
|
2127
2170
|
initiator_generation_id?: string | null;
|
|
@@ -2256,7 +2299,7 @@ type DocumentKnowledgeResult = {
|
|
|
2256
2299
|
*/
|
|
2257
2300
|
title?: string;
|
|
2258
2301
|
/**
|
|
2259
|
-
* Arbitrary metadata attached to the document
|
|
2302
|
+
* Arbitrary metadata attached to the document, returned verbatim in the casing it was written with at create/update time (e.g. a key written as `strapiDocumentId` is returned as `strapiDocumentId`, not `strapi_document_id`) — it is not converted between snake_case and camelCase like other response fields.
|
|
2260
2303
|
*/
|
|
2261
2304
|
metadata?: {
|
|
2262
2305
|
[key: string]: unknown;
|
|
@@ -2457,6 +2500,33 @@ type OrchestrationNode = {
|
|
|
2457
2500
|
*
|
|
2458
2501
|
*/
|
|
2459
2502
|
max_iterations?: number;
|
|
2503
|
+
/**
|
|
2504
|
+
* Retry-on-failure policy. When the node throws a transient error (unexpected/infrastructure errors and upstream 5xx) and attempts remain, the run parks as `sleeping` and re-executes the node after the backoff delay. Terminal errors (4xx business errors) fail immediately. Absent or `max_attempts <= 1` means fail-fast.
|
|
2505
|
+
*
|
|
2506
|
+
*/
|
|
2507
|
+
retry?: {
|
|
2508
|
+
/**
|
|
2509
|
+
* Total attempts including the first (default 1, ceiling 20).
|
|
2510
|
+
*
|
|
2511
|
+
*/
|
|
2512
|
+
max_attempts?: number;
|
|
2513
|
+
backoff?: {
|
|
2514
|
+
/**
|
|
2515
|
+
* `fixed` waits `delay_ms` between every attempt; `exponential` doubles per prior attempt. Default `fixed`.
|
|
2516
|
+
*
|
|
2517
|
+
*/
|
|
2518
|
+
strategy?: 'fixed' | 'exponential';
|
|
2519
|
+
/**
|
|
2520
|
+
* Base delay between attempts in ms (default 1000).
|
|
2521
|
+
*/
|
|
2522
|
+
delay_ms?: number;
|
|
2523
|
+
/**
|
|
2524
|
+
* Cap on the computed backoff delay in ms (default 300000).
|
|
2525
|
+
*
|
|
2526
|
+
*/
|
|
2527
|
+
max_delay_ms?: number;
|
|
2528
|
+
};
|
|
2529
|
+
};
|
|
2460
2530
|
};
|
|
2461
2531
|
/**
|
|
2462
2532
|
* A directed connection between two nodes.
|
|
@@ -2561,7 +2631,10 @@ type OrchestrationRun = {
|
|
|
2561
2631
|
* Public ID of the owning project.
|
|
2562
2632
|
*/
|
|
2563
2633
|
project_id: string;
|
|
2564
|
-
|
|
2634
|
+
/**
|
|
2635
|
+
* Run lifecycle state. `queued` awaits a worker; `running` is actively executing; `sleeping` is parked on a delay/poll wait (no worker); `awaiting_input` is parked on a human node; `succeeded`/`failed`/ `cancelled` are terminal; `expired` is a wait that passed its deadline.
|
|
2636
|
+
*/
|
|
2637
|
+
status: 'queued' | 'running' | 'sleeping' | 'awaiting_input' | 'succeeded' | 'failed' | 'cancelled' | 'expired';
|
|
2565
2638
|
/**
|
|
2566
2639
|
* Current accumulated state.
|
|
2567
2640
|
*/
|
|
@@ -2592,7 +2665,7 @@ type OrchestrationRun = {
|
|
|
2592
2665
|
[key: string]: unknown;
|
|
2593
2666
|
} | null;
|
|
2594
2667
|
/**
|
|
2595
|
-
* Terminal node artifact(s) when
|
|
2668
|
+
* Terminal node artifact(s) when the run has succeeded.
|
|
2596
2669
|
*/
|
|
2597
2670
|
output?: {
|
|
2598
2671
|
[key: string]: unknown;
|
|
@@ -2619,6 +2692,11 @@ type NodeExecution = {
|
|
|
2619
2692
|
* Type of the executed node (e.g. agent, transform).
|
|
2620
2693
|
*/
|
|
2621
2694
|
node_type?: string | null;
|
|
2695
|
+
/**
|
|
2696
|
+
* 1-based attempt number. A node with a retry policy produces one record per attempt (failed attempts followed by a final record).
|
|
2697
|
+
*
|
|
2698
|
+
*/
|
|
2699
|
+
attempt: number;
|
|
2622
2700
|
status: 'completed' | 'failed' | 'requires_action' | 'skipped';
|
|
2623
2701
|
/**
|
|
2624
2702
|
* Resolved input_mapping the node received.
|
|
@@ -2643,7 +2721,7 @@ type NodeExecution = {
|
|
|
2643
2721
|
created_at: Date;
|
|
2644
2722
|
};
|
|
2645
2723
|
/**
|
|
2646
|
-
* Details for
|
|
2724
|
+
* Details for an awaiting_input run waiting for human input.
|
|
2647
2725
|
*/
|
|
2648
2726
|
type RequiredAction = {
|
|
2649
2727
|
/**
|
|
@@ -2681,7 +2759,7 @@ type StartRunRequest = {
|
|
|
2681
2759
|
[key: string]: unknown;
|
|
2682
2760
|
};
|
|
2683
2761
|
/**
|
|
2684
|
-
* When true, block until the run reaches a terminal (
|
|
2762
|
+
* When true, block until the run reaches a terminal (succeeded/failed) or awaiting_input state and return the settled run. When false (default), return immediately with status "running" and execute the run in the background.
|
|
2685
2763
|
*/
|
|
2686
2764
|
wait?: boolean;
|
|
2687
2765
|
};
|
|
@@ -2972,7 +3050,7 @@ type Tool = {
|
|
|
2972
3050
|
/**
|
|
2973
3051
|
* Tool type
|
|
2974
3052
|
*/
|
|
2975
|
-
type?: 'http' | 'client' | 'mcp' | 'soat' | 'pipeline';
|
|
3053
|
+
type?: 'http' | 'client' | 'mcp' | 'soat' | 'pipeline' | 'discussion';
|
|
2976
3054
|
/**
|
|
2977
3055
|
* What the tool does (sent to the model)
|
|
2978
3056
|
*/
|
|
@@ -3012,6 +3090,12 @@ type Tool = {
|
|
|
3012
3090
|
pipeline?: {
|
|
3013
3091
|
[key: string]: unknown;
|
|
3014
3092
|
} | null;
|
|
3093
|
+
/**
|
|
3094
|
+
* Discussion config for `discussion` tools: `{ discussion_id }` referencing a discussion in the tool's project. Calling the tool with a `topic` runs that discussion synchronously and returns its outcome + run id as the tool result.
|
|
3095
|
+
*/
|
|
3096
|
+
discussion?: {
|
|
3097
|
+
discussion_id?: string;
|
|
3098
|
+
} | null;
|
|
3015
3099
|
/**
|
|
3016
3100
|
* Universal JSON Logic mapping applied to the tool's raw result, for every tool type (`http`, `mcp`, `soat`, `pipeline`, `client`). Evaluated over `{ output: <raw result> }`, so `{ "var": "output.text" }` extracts a bare scalar field instead of requiring a wrapping `pipeline` tool. For `pipeline` tools this runs *after* the pipeline's own `output` mapping, over that mapping's result.
|
|
3017
3101
|
*/
|
|
@@ -3033,7 +3117,7 @@ type CreateToolRequest = {
|
|
|
3033
3117
|
/**
|
|
3034
3118
|
* Tool type (default http)
|
|
3035
3119
|
*/
|
|
3036
|
-
type?: 'http' | 'client' | 'mcp' | 'soat' | 'pipeline';
|
|
3120
|
+
type?: 'http' | 'client' | 'mcp' | 'soat' | 'pipeline' | 'discussion';
|
|
3037
3121
|
/**
|
|
3038
3122
|
* What the tool does
|
|
3039
3123
|
*/
|
|
@@ -3073,6 +3157,12 @@ type CreateToolRequest = {
|
|
|
3073
3157
|
pipeline?: {
|
|
3074
3158
|
[key: string]: unknown;
|
|
3075
3159
|
};
|
|
3160
|
+
/**
|
|
3161
|
+
* Discussion config for `discussion` tools: `{ discussion_id }`. See the `discussion` field on the Tool schema for details.
|
|
3162
|
+
*/
|
|
3163
|
+
discussion?: {
|
|
3164
|
+
discussion_id?: string;
|
|
3165
|
+
};
|
|
3076
3166
|
/**
|
|
3077
3167
|
* Universal JSON Logic mapping applied to the tool's raw result. See the `output_mapping` field on the Tool schema for details.
|
|
3078
3168
|
*/
|
|
@@ -3110,6 +3200,12 @@ type UpdateToolRequest = {
|
|
|
3110
3200
|
pipeline?: {
|
|
3111
3201
|
[key: string]: unknown;
|
|
3112
3202
|
} | null;
|
|
3203
|
+
/**
|
|
3204
|
+
* Discussion config for `discussion` tools: `{ discussion_id }`. See the `discussion` field on the Tool schema for details.
|
|
3205
|
+
*/
|
|
3206
|
+
discussion?: {
|
|
3207
|
+
discussion_id?: string;
|
|
3208
|
+
} | null;
|
|
3113
3209
|
/**
|
|
3114
3210
|
* Universal JSON Logic mapping applied to the tool's raw result. See the `output_mapping` field on the Tool schema for details.
|
|
3115
3211
|
*/
|
|
@@ -3202,7 +3298,7 @@ type TraceTreeNode = {
|
|
|
3202
3298
|
*/
|
|
3203
3299
|
children?: Array<TraceTreeNode>;
|
|
3204
3300
|
/**
|
|
3205
|
-
* Generations that belong to this trace node. Only present when `include=generations` is requested. Includes top-level generations and
|
|
3301
|
+
* Generations that belong to this trace node. Only present when `include=generations` is requested. Includes top-level generations and sub-agent child generations linked via `initiator_generation_id`.
|
|
3206
3302
|
*
|
|
3207
3303
|
*/
|
|
3208
3304
|
generations?: Array<Generation>;
|
|
@@ -5043,6 +5139,327 @@ type ReplaceConversationTagsResponses = {
|
|
|
5043
5139
|
};
|
|
5044
5140
|
};
|
|
5045
5141
|
type ReplaceConversationTagsResponse = ReplaceConversationTagsResponses[keyof ReplaceConversationTagsResponses];
|
|
5142
|
+
type ListDiscussionsData = {
|
|
5143
|
+
body?: never;
|
|
5144
|
+
path?: never;
|
|
5145
|
+
query?: {
|
|
5146
|
+
/**
|
|
5147
|
+
* Project ID (optional)
|
|
5148
|
+
*/
|
|
5149
|
+
project_id?: string;
|
|
5150
|
+
/**
|
|
5151
|
+
* Maximum number of results to return
|
|
5152
|
+
*/
|
|
5153
|
+
limit?: number;
|
|
5154
|
+
/**
|
|
5155
|
+
* Number of results to skip
|
|
5156
|
+
*/
|
|
5157
|
+
offset?: number;
|
|
5158
|
+
};
|
|
5159
|
+
url: '/api/v1/discussions';
|
|
5160
|
+
};
|
|
5161
|
+
type ListDiscussionsErrors = {
|
|
5162
|
+
/**
|
|
5163
|
+
* Unauthorized
|
|
5164
|
+
*/
|
|
5165
|
+
401: ErrorResponse;
|
|
5166
|
+
/**
|
|
5167
|
+
* Forbidden
|
|
5168
|
+
*/
|
|
5169
|
+
403: ErrorResponse;
|
|
5170
|
+
};
|
|
5171
|
+
type ListDiscussionsError = ListDiscussionsErrors[keyof ListDiscussionsErrors];
|
|
5172
|
+
type ListDiscussionsResponses = {
|
|
5173
|
+
/**
|
|
5174
|
+
* List of discussions
|
|
5175
|
+
*/
|
|
5176
|
+
200: {
|
|
5177
|
+
data?: Array<DiscussionRecord>;
|
|
5178
|
+
total?: number;
|
|
5179
|
+
limit?: number;
|
|
5180
|
+
offset?: number;
|
|
5181
|
+
};
|
|
5182
|
+
};
|
|
5183
|
+
type ListDiscussionsResponse = ListDiscussionsResponses[keyof ListDiscussionsResponses];
|
|
5184
|
+
type CreateDiscussionData = {
|
|
5185
|
+
body: {
|
|
5186
|
+
/**
|
|
5187
|
+
* Project ID. Required for JWT auth; omit when using a project key.
|
|
5188
|
+
*/
|
|
5189
|
+
project_id?: string;
|
|
5190
|
+
name: string;
|
|
5191
|
+
description?: string | null;
|
|
5192
|
+
/**
|
|
5193
|
+
* Default AI provider participants and synthesis fall back to.
|
|
5194
|
+
*/
|
|
5195
|
+
ai_provider_id: string;
|
|
5196
|
+
/**
|
|
5197
|
+
* Default model (falls back to the provider's default_model).
|
|
5198
|
+
*/
|
|
5199
|
+
model?: string | null;
|
|
5200
|
+
max_rounds?: number;
|
|
5201
|
+
synthesis?: SynthesisConfig;
|
|
5202
|
+
tags?: {
|
|
5203
|
+
[key: string]: string;
|
|
5204
|
+
};
|
|
5205
|
+
participants?: Array<ParticipantInput>;
|
|
5206
|
+
};
|
|
5207
|
+
path?: never;
|
|
5208
|
+
query?: never;
|
|
5209
|
+
url: '/api/v1/discussions';
|
|
5210
|
+
};
|
|
5211
|
+
type CreateDiscussionErrors = {
|
|
5212
|
+
/**
|
|
5213
|
+
* Invalid request body
|
|
5214
|
+
*/
|
|
5215
|
+
400: ErrorResponse;
|
|
5216
|
+
/**
|
|
5217
|
+
* Unauthorized
|
|
5218
|
+
*/
|
|
5219
|
+
401: ErrorResponse;
|
|
5220
|
+
/**
|
|
5221
|
+
* Forbidden
|
|
5222
|
+
*/
|
|
5223
|
+
403: ErrorResponse;
|
|
5224
|
+
};
|
|
5225
|
+
type CreateDiscussionError = CreateDiscussionErrors[keyof CreateDiscussionErrors];
|
|
5226
|
+
type CreateDiscussionResponses = {
|
|
5227
|
+
/**
|
|
5228
|
+
* Discussion created
|
|
5229
|
+
*/
|
|
5230
|
+
201: DiscussionRecord;
|
|
5231
|
+
};
|
|
5232
|
+
type CreateDiscussionResponse = CreateDiscussionResponses[keyof CreateDiscussionResponses];
|
|
5233
|
+
type GetDiscussionRunData = {
|
|
5234
|
+
body?: never;
|
|
5235
|
+
path: {
|
|
5236
|
+
/**
|
|
5237
|
+
* Discussion run ID
|
|
5238
|
+
*/
|
|
5239
|
+
run_id: string;
|
|
5240
|
+
};
|
|
5241
|
+
query?: never;
|
|
5242
|
+
url: '/api/v1/discussions/runs/{run_id}';
|
|
5243
|
+
};
|
|
5244
|
+
type GetDiscussionRunErrors = {
|
|
5245
|
+
/**
|
|
5246
|
+
* Unauthorized
|
|
5247
|
+
*/
|
|
5248
|
+
401: ErrorResponse;
|
|
5249
|
+
/**
|
|
5250
|
+
* Forbidden
|
|
5251
|
+
*/
|
|
5252
|
+
403: ErrorResponse;
|
|
5253
|
+
/**
|
|
5254
|
+
* Discussion run not found
|
|
5255
|
+
*/
|
|
5256
|
+
404: ErrorResponse;
|
|
5257
|
+
};
|
|
5258
|
+
type GetDiscussionRunError = GetDiscussionRunErrors[keyof GetDiscussionRunErrors];
|
|
5259
|
+
type GetDiscussionRunResponses = {
|
|
5260
|
+
/**
|
|
5261
|
+
* Discussion run found
|
|
5262
|
+
*/
|
|
5263
|
+
200: DiscussionRunRecord;
|
|
5264
|
+
};
|
|
5265
|
+
type GetDiscussionRunResponse = GetDiscussionRunResponses[keyof GetDiscussionRunResponses];
|
|
5266
|
+
type DeleteDiscussionData = {
|
|
5267
|
+
body?: never;
|
|
5268
|
+
path: {
|
|
5269
|
+
/**
|
|
5270
|
+
* Discussion ID
|
|
5271
|
+
*/
|
|
5272
|
+
discussion_id: string;
|
|
5273
|
+
};
|
|
5274
|
+
query?: never;
|
|
5275
|
+
url: '/api/v1/discussions/{discussion_id}';
|
|
5276
|
+
};
|
|
5277
|
+
type DeleteDiscussionErrors = {
|
|
5278
|
+
/**
|
|
5279
|
+
* Unauthorized
|
|
5280
|
+
*/
|
|
5281
|
+
401: ErrorResponse;
|
|
5282
|
+
/**
|
|
5283
|
+
* Forbidden
|
|
5284
|
+
*/
|
|
5285
|
+
403: ErrorResponse;
|
|
5286
|
+
/**
|
|
5287
|
+
* Discussion not found
|
|
5288
|
+
*/
|
|
5289
|
+
404: ErrorResponse;
|
|
5290
|
+
};
|
|
5291
|
+
type DeleteDiscussionError = DeleteDiscussionErrors[keyof DeleteDiscussionErrors];
|
|
5292
|
+
type DeleteDiscussionResponses = {
|
|
5293
|
+
/**
|
|
5294
|
+
* Discussion deleted
|
|
5295
|
+
*/
|
|
5296
|
+
204: void;
|
|
5297
|
+
};
|
|
5298
|
+
type DeleteDiscussionResponse = DeleteDiscussionResponses[keyof DeleteDiscussionResponses];
|
|
5299
|
+
type GetDiscussionData = {
|
|
5300
|
+
body?: never;
|
|
5301
|
+
path: {
|
|
5302
|
+
/**
|
|
5303
|
+
* Discussion ID
|
|
5304
|
+
*/
|
|
5305
|
+
discussion_id: string;
|
|
5306
|
+
};
|
|
5307
|
+
query?: never;
|
|
5308
|
+
url: '/api/v1/discussions/{discussion_id}';
|
|
5309
|
+
};
|
|
5310
|
+
type GetDiscussionErrors = {
|
|
5311
|
+
/**
|
|
5312
|
+
* Unauthorized
|
|
5313
|
+
*/
|
|
5314
|
+
401: ErrorResponse;
|
|
5315
|
+
/**
|
|
5316
|
+
* Forbidden
|
|
5317
|
+
*/
|
|
5318
|
+
403: ErrorResponse;
|
|
5319
|
+
/**
|
|
5320
|
+
* Discussion not found
|
|
5321
|
+
*/
|
|
5322
|
+
404: ErrorResponse;
|
|
5323
|
+
};
|
|
5324
|
+
type GetDiscussionError = GetDiscussionErrors[keyof GetDiscussionErrors];
|
|
5325
|
+
type GetDiscussionResponses = {
|
|
5326
|
+
/**
|
|
5327
|
+
* Discussion found
|
|
5328
|
+
*/
|
|
5329
|
+
200: DiscussionRecord;
|
|
5330
|
+
};
|
|
5331
|
+
type GetDiscussionResponse = GetDiscussionResponses[keyof GetDiscussionResponses];
|
|
5332
|
+
type UpdateDiscussionData = {
|
|
5333
|
+
body: {
|
|
5334
|
+
name?: string;
|
|
5335
|
+
description?: string | null;
|
|
5336
|
+
ai_provider_id?: string;
|
|
5337
|
+
model?: string | null;
|
|
5338
|
+
max_rounds?: number;
|
|
5339
|
+
synthesis?: SynthesisConfig;
|
|
5340
|
+
tags?: {
|
|
5341
|
+
[key: string]: string;
|
|
5342
|
+
};
|
|
5343
|
+
participants?: Array<ParticipantInput>;
|
|
5344
|
+
};
|
|
5345
|
+
path: {
|
|
5346
|
+
/**
|
|
5347
|
+
* Discussion ID
|
|
5348
|
+
*/
|
|
5349
|
+
discussion_id: string;
|
|
5350
|
+
};
|
|
5351
|
+
query?: never;
|
|
5352
|
+
url: '/api/v1/discussions/{discussion_id}';
|
|
5353
|
+
};
|
|
5354
|
+
type UpdateDiscussionErrors = {
|
|
5355
|
+
/**
|
|
5356
|
+
* Invalid request body
|
|
5357
|
+
*/
|
|
5358
|
+
400: ErrorResponse;
|
|
5359
|
+
/**
|
|
5360
|
+
* Unauthorized
|
|
5361
|
+
*/
|
|
5362
|
+
401: ErrorResponse;
|
|
5363
|
+
/**
|
|
5364
|
+
* Forbidden
|
|
5365
|
+
*/
|
|
5366
|
+
403: ErrorResponse;
|
|
5367
|
+
/**
|
|
5368
|
+
* Discussion not found
|
|
5369
|
+
*/
|
|
5370
|
+
404: ErrorResponse;
|
|
5371
|
+
};
|
|
5372
|
+
type UpdateDiscussionError = UpdateDiscussionErrors[keyof UpdateDiscussionErrors];
|
|
5373
|
+
type UpdateDiscussionResponses = {
|
|
5374
|
+
/**
|
|
5375
|
+
* Discussion updated
|
|
5376
|
+
*/
|
|
5377
|
+
200: DiscussionRecord;
|
|
5378
|
+
};
|
|
5379
|
+
type UpdateDiscussionResponse = UpdateDiscussionResponses[keyof UpdateDiscussionResponses];
|
|
5380
|
+
type ListDiscussionRunsData = {
|
|
5381
|
+
body?: never;
|
|
5382
|
+
path: {
|
|
5383
|
+
/**
|
|
5384
|
+
* Discussion ID
|
|
5385
|
+
*/
|
|
5386
|
+
discussion_id: string;
|
|
5387
|
+
};
|
|
5388
|
+
query?: {
|
|
5389
|
+
limit?: number;
|
|
5390
|
+
offset?: number;
|
|
5391
|
+
};
|
|
5392
|
+
url: '/api/v1/discussions/{discussion_id}/runs';
|
|
5393
|
+
};
|
|
5394
|
+
type ListDiscussionRunsErrors = {
|
|
5395
|
+
/**
|
|
5396
|
+
* Unauthorized
|
|
5397
|
+
*/
|
|
5398
|
+
401: ErrorResponse;
|
|
5399
|
+
/**
|
|
5400
|
+
* Forbidden
|
|
5401
|
+
*/
|
|
5402
|
+
403: ErrorResponse;
|
|
5403
|
+
/**
|
|
5404
|
+
* Discussion not found
|
|
5405
|
+
*/
|
|
5406
|
+
404: ErrorResponse;
|
|
5407
|
+
};
|
|
5408
|
+
type ListDiscussionRunsError = ListDiscussionRunsErrors[keyof ListDiscussionRunsErrors];
|
|
5409
|
+
type ListDiscussionRunsResponses = {
|
|
5410
|
+
/**
|
|
5411
|
+
* List of runs
|
|
5412
|
+
*/
|
|
5413
|
+
200: {
|
|
5414
|
+
data?: Array<DiscussionRunRecord>;
|
|
5415
|
+
total?: number;
|
|
5416
|
+
limit?: number;
|
|
5417
|
+
offset?: number;
|
|
5418
|
+
};
|
|
5419
|
+
};
|
|
5420
|
+
type ListDiscussionRunsResponse = ListDiscussionRunsResponses[keyof ListDiscussionRunsResponses];
|
|
5421
|
+
type CreateDiscussionRunData = {
|
|
5422
|
+
body: {
|
|
5423
|
+
/**
|
|
5424
|
+
* The question or subject the participants deliberate on.
|
|
5425
|
+
*/
|
|
5426
|
+
topic: string;
|
|
5427
|
+
};
|
|
5428
|
+
path: {
|
|
5429
|
+
/**
|
|
5430
|
+
* Discussion ID
|
|
5431
|
+
*/
|
|
5432
|
+
discussion_id: string;
|
|
5433
|
+
};
|
|
5434
|
+
query?: never;
|
|
5435
|
+
url: '/api/v1/discussions/{discussion_id}/runs';
|
|
5436
|
+
};
|
|
5437
|
+
type CreateDiscussionRunErrors = {
|
|
5438
|
+
/**
|
|
5439
|
+
* Invalid request body
|
|
5440
|
+
*/
|
|
5441
|
+
400: ErrorResponse;
|
|
5442
|
+
/**
|
|
5443
|
+
* Unauthorized
|
|
5444
|
+
*/
|
|
5445
|
+
401: ErrorResponse;
|
|
5446
|
+
/**
|
|
5447
|
+
* Forbidden
|
|
5448
|
+
*/
|
|
5449
|
+
403: ErrorResponse;
|
|
5450
|
+
/**
|
|
5451
|
+
* Discussion not found
|
|
5452
|
+
*/
|
|
5453
|
+
404: ErrorResponse;
|
|
5454
|
+
};
|
|
5455
|
+
type CreateDiscussionRunError = CreateDiscussionRunErrors[keyof CreateDiscussionRunErrors];
|
|
5456
|
+
type CreateDiscussionRunResponses = {
|
|
5457
|
+
/**
|
|
5458
|
+
* Discussion run completed
|
|
5459
|
+
*/
|
|
5460
|
+
201: DiscussionRunRecord;
|
|
5461
|
+
};
|
|
5462
|
+
type CreateDiscussionRunResponse = CreateDiscussionRunResponses[keyof CreateDiscussionRunResponses];
|
|
5046
5463
|
type ListDocumentsData = {
|
|
5047
5464
|
body?: never;
|
|
5048
5465
|
path?: never;
|
|
@@ -5089,7 +5506,7 @@ type CreateDocumentData = {
|
|
|
5089
5506
|
*/
|
|
5090
5507
|
title?: string;
|
|
5091
5508
|
/**
|
|
5092
|
-
* Arbitrary metadata object
|
|
5509
|
+
* Arbitrary metadata object. Unlike other body fields, keys are stored and returned verbatim in the casing supplied — they are not converted between snake_case and camelCase.
|
|
5093
5510
|
*/
|
|
5094
5511
|
metadata?: {
|
|
5095
5512
|
[key: string]: unknown;
|
|
@@ -5292,7 +5709,7 @@ type UpdateDocumentData = {
|
|
|
5292
5709
|
*/
|
|
5293
5710
|
path?: string | null;
|
|
5294
5711
|
/**
|
|
5295
|
-
* Arbitrary metadata object
|
|
5712
|
+
* Arbitrary metadata object. Unlike other body fields, keys are stored and returned verbatim in the casing supplied — they are not converted between snake_case and camelCase.
|
|
5296
5713
|
*/
|
|
5297
5714
|
metadata?: {
|
|
5298
5715
|
[key: string]: unknown;
|
|
@@ -6448,7 +6865,7 @@ type ListGenerationsData = {
|
|
|
6448
6865
|
*/
|
|
6449
6866
|
trace_id?: string;
|
|
6450
6867
|
/**
|
|
6451
|
-
* Filter by the public ID of the parent generation. Returns all generations triggered by that generation —
|
|
6868
|
+
* Filter by the public ID of the parent generation. Returns all generations triggered by that generation — sub-agent invocations. Null-initiated (top-level) generations are not returned.
|
|
6452
6869
|
*
|
|
6453
6870
|
*/
|
|
6454
6871
|
initiator_generation_id?: string;
|
|
@@ -7523,7 +7940,7 @@ type SubmitHumanInputErrors = {
|
|
|
7523
7940
|
*/
|
|
7524
7941
|
404: unknown;
|
|
7525
7942
|
/**
|
|
7526
|
-
* Run is not
|
|
7943
|
+
* Run is not awaiting input
|
|
7527
7944
|
*/
|
|
7528
7945
|
409: unknown;
|
|
7529
7946
|
};
|
|
@@ -7559,7 +7976,7 @@ type ResumeOrchestrationRunErrors = {
|
|
|
7559
7976
|
*/
|
|
7560
7977
|
404: unknown;
|
|
7561
7978
|
/**
|
|
7562
|
-
* Run is not
|
|
7979
|
+
* Run is not awaiting input
|
|
7563
7980
|
*/
|
|
7564
7981
|
409: unknown;
|
|
7565
7982
|
};
|
|
@@ -8736,6 +9153,11 @@ type CallToolErrors = {
|
|
|
8736
9153
|
* Unprocessable — tool type cannot be invoked server-side
|
|
8737
9154
|
*/
|
|
8738
9155
|
422: ErrorResponse;
|
|
9156
|
+
/**
|
|
9157
|
+
* Upstream tool target error (TOOL_HTTP_ERROR). Returned when an `http`-type tool's target responds with a non-2xx status. The error `meta` carries the real upstream `tool_status_code`, `tool_response_body`, `tool_url`, and `tool_method`.
|
|
9158
|
+
*
|
|
9159
|
+
*/
|
|
9160
|
+
502: ErrorResponse;
|
|
8739
9161
|
};
|
|
8740
9162
|
type CallToolError = CallToolErrors[keyof CallToolErrors];
|
|
8741
9163
|
type CallToolResponses = {
|
|
@@ -8832,7 +9254,7 @@ type GetTraceTreeData = {
|
|
|
8832
9254
|
};
|
|
8833
9255
|
query?: {
|
|
8834
9256
|
/**
|
|
8835
|
-
* Comma-separated list of related resources to embed on each node. Supported value: `generations` — attaches all generations that belong to each trace node (including
|
|
9257
|
+
* Comma-separated list of related resources to embed on each node. Supported value: `generations` — attaches all generations that belong to each trace node (including sub-agent generations linked via `initiator_generation_id`).
|
|
8836
9258
|
*
|
|
8837
9259
|
*/
|
|
8838
9260
|
include?: string;
|
|
@@ -9645,6 +10067,57 @@ declare class Conversations {
|
|
|
9645
10067
|
*/
|
|
9646
10068
|
static replaceConversationTags<ThrowOnError extends boolean = false>(options: Options<ReplaceConversationTagsData, ThrowOnError>): RequestResult<ReplaceConversationTagsResponses, ReplaceConversationTagsErrors, ThrowOnError>;
|
|
9647
10069
|
}
|
|
10070
|
+
declare class Discussions {
|
|
10071
|
+
/**
|
|
10072
|
+
* List discussions
|
|
10073
|
+
*
|
|
10074
|
+
* Returns all discussions the caller has access to. If project_id is provided, returns only discussions in that project.
|
|
10075
|
+
*/
|
|
10076
|
+
static listDiscussions<ThrowOnError extends boolean = false>(options?: Options<ListDiscussionsData, ThrowOnError>): RequestResult<ListDiscussionsResponses, ListDiscussionsErrors, ThrowOnError>;
|
|
10077
|
+
/**
|
|
10078
|
+
* Create a discussion
|
|
10079
|
+
*
|
|
10080
|
+
* Creates a new discussion config. project keys infer the project from the key's scope; JWT callers must supply project_id.
|
|
10081
|
+
*/
|
|
10082
|
+
static createDiscussion<ThrowOnError extends boolean = false>(options: Options<CreateDiscussionData, ThrowOnError>): RequestResult<CreateDiscussionResponses, CreateDiscussionErrors, ThrowOnError>;
|
|
10083
|
+
/**
|
|
10084
|
+
* Get a discussion run by ID
|
|
10085
|
+
*
|
|
10086
|
+
* Returns a single discussion run, including its outcome, transcript conversation, and outcome document.
|
|
10087
|
+
*/
|
|
10088
|
+
static getDiscussionRun<ThrowOnError extends boolean = false>(options: Options<GetDiscussionRunData, ThrowOnError>): RequestResult<GetDiscussionRunResponses, GetDiscussionRunErrors, ThrowOnError>;
|
|
10089
|
+
/**
|
|
10090
|
+
* Delete a discussion
|
|
10091
|
+
*
|
|
10092
|
+
* Deletes a discussion config and its participants.
|
|
10093
|
+
*/
|
|
10094
|
+
static deleteDiscussion<ThrowOnError extends boolean = false>(options: Options<DeleteDiscussionData, ThrowOnError>): RequestResult<DeleteDiscussionResponses, DeleteDiscussionErrors, ThrowOnError>;
|
|
10095
|
+
/**
|
|
10096
|
+
* Get a discussion by ID
|
|
10097
|
+
*
|
|
10098
|
+
* Returns a discussion config with its participants.
|
|
10099
|
+
*/
|
|
10100
|
+
static getDiscussion<ThrowOnError extends boolean = false>(options: Options<GetDiscussionData, ThrowOnError>): RequestResult<GetDiscussionResponses, GetDiscussionErrors, ThrowOnError>;
|
|
10101
|
+
/**
|
|
10102
|
+
* Update a discussion
|
|
10103
|
+
*
|
|
10104
|
+
* Updates a discussion. Providing participants replaces the full set (not merged).
|
|
10105
|
+
*/
|
|
10106
|
+
static updateDiscussion<ThrowOnError extends boolean = false>(options: Options<UpdateDiscussionData, ThrowOnError>): RequestResult<UpdateDiscussionResponses, UpdateDiscussionErrors, ThrowOnError>;
|
|
10107
|
+
/**
|
|
10108
|
+
* List a discussion's runs
|
|
10109
|
+
*
|
|
10110
|
+
* Returns the run history of a discussion, most recent first.
|
|
10111
|
+
*/
|
|
10112
|
+
static listDiscussionRuns<ThrowOnError extends boolean = false>(options: Options<ListDiscussionRunsData, ThrowOnError>): RequestResult<ListDiscussionRunsResponses, ListDiscussionRunsErrors, ThrowOnError>;
|
|
10113
|
+
/**
|
|
10114
|
+
* Invoke a discussion
|
|
10115
|
+
*
|
|
10116
|
+
* Runs the discussion synchronously over the given topic and returns the completed run, whose outcome inlines the synthesized text. The run's transcript is persisted as a conversation and the outcome as a document.
|
|
10117
|
+
*
|
|
10118
|
+
*/
|
|
10119
|
+
static createDiscussionRun<ThrowOnError extends boolean = false>(options: Options<CreateDiscussionRunData, ThrowOnError>): RequestResult<CreateDiscussionRunResponses, CreateDiscussionRunErrors, ThrowOnError>;
|
|
10120
|
+
}
|
|
9648
10121
|
declare class Documents {
|
|
9649
10122
|
/**
|
|
9650
10123
|
* List documents
|
|
@@ -10065,25 +10538,25 @@ declare class Orchestrations {
|
|
|
10065
10538
|
/**
|
|
10066
10539
|
* Start an orchestration run
|
|
10067
10540
|
*
|
|
10068
|
-
* Creates a new run for the orchestration named by orchestration_id. By default the run executes durably in the background: the response returns immediately with status "running" and progress is observed via get-orchestration-run or run lifecycle webhook events (orchestration_runs.started/
|
|
10541
|
+
* Creates a new run for the orchestration named by orchestration_id. By default the run executes durably in the background: the response returns immediately with status "running" and progress is observed via get-orchestration-run or run lifecycle webhook events (orchestration_runs.started/awaiting_input/succeeded/failed). Delay and poll waits park the run as "sleeping" and are woken by a background scheduler, surviving restarts. Pass wait=true to block until the run reaches a terminal or awaiting_input state (the legacy synchronous behaviour).
|
|
10069
10542
|
*/
|
|
10070
10543
|
static startOrchestrationRun<ThrowOnError extends boolean = false>(options: Options<StartOrchestrationRunData, ThrowOnError>): RequestResult<StartOrchestrationRunResponses, StartOrchestrationRunErrors, ThrowOnError>;
|
|
10071
10544
|
/**
|
|
10072
10545
|
* Cancel an orchestration run
|
|
10073
10546
|
*
|
|
10074
|
-
* Cancels a
|
|
10547
|
+
* Cancels a run that has not yet reached a terminal state.
|
|
10075
10548
|
*/
|
|
10076
10549
|
static cancelOrchestrationRun<ThrowOnError extends boolean = false>(options: Options<CancelOrchestrationRunData, ThrowOnError>): RequestResult<CancelOrchestrationRunResponses, CancelOrchestrationRunErrors, ThrowOnError>;
|
|
10077
10550
|
/**
|
|
10078
10551
|
* Submit human input
|
|
10079
10552
|
*
|
|
10080
|
-
* Provides human input to a
|
|
10553
|
+
* Provides human input to a run that is awaiting_input at a human node.
|
|
10081
10554
|
*/
|
|
10082
10555
|
static submitHumanInput<ThrowOnError extends boolean = false>(options: Options<SubmitHumanInputData, ThrowOnError>): RequestResult<SubmitHumanInputResponses, SubmitHumanInputErrors, ThrowOnError>;
|
|
10083
10556
|
/**
|
|
10084
10557
|
* Resume an orchestration run
|
|
10085
10558
|
*
|
|
10086
|
-
* Resumes
|
|
10559
|
+
* Resumes an awaiting_input orchestration run from its last checkpoint.
|
|
10087
10560
|
*/
|
|
10088
10561
|
static resumeOrchestrationRun<ThrowOnError extends boolean = false>(options: Options<ResumeOrchestrationRunData, ThrowOnError>): RequestResult<ResumeOrchestrationRunResponses, ResumeOrchestrationRunErrors, ThrowOnError>;
|
|
10089
10562
|
/**
|
|
@@ -10503,4 +10976,4 @@ declare class SoatClient {
|
|
|
10503
10976
|
}?: SoatClientOptions);
|
|
10504
10977
|
}
|
|
10505
10978
|
//#endregion
|
|
10506
|
-
export { type ActorRecord, type ActorResourceProperties, Actors, type AddConversationMessageData, type AddConversationMessageError, type AddConversationMessageErrors, type AddConversationMessageResponse, type AddConversationMessageResponses, type AddSessionMessageData, type AddSessionMessageError, type AddSessionMessageErrors, type AddSessionMessageRequest, type AddSessionMessageResponse, type AddSessionMessageResponse2, type AddSessionMessageResponses, type AddSessionMessageSaved, type Agent, type AgentGenerationResponse, type AgentResourceProperties, Agents, type AiProviderResourceProperties, AiProviders, type ApiKeyCreated, type ApiKeyRecord, type ApiKeyResourceProperties, ApiKeys, type AttachUserPoliciesData, type AttachUserPoliciesError, type AttachUserPoliciesErrors, type AttachUserPoliciesResponse, type AttachUserPoliciesResponses, type BootstrapUserData, type BootstrapUserError, type BootstrapUserErrors, type BootstrapUserResponse, type BootstrapUserResponses, type CallToolData, type CallToolError, type CallToolErrors, type CallToolRequest, type CallToolResponse, type CallToolResponses, type CancelOrchestrationRunData, type CancelOrchestrationRunErrors, type CancelOrchestrationRunResponse, type CancelOrchestrationRunResponses, type Chat, type ChatCompletionChoice, type ChatCompletionForChatRequest, type ChatCompletionRequest, type ChatCompletionResponse, type ChatCompletionResponseMessage, type ChatMessage, type ChatMessageInput, type ChatResourceProperties, Chats, type ClientOptions, type CompleteIngestionCallbackData, type CompleteIngestionCallbackError, type CompleteIngestionCallbackErrors, type CompleteIngestionCallbackResponse, type CompleteIngestionCallbackResponses, type ConversationMessageRecord, type ConversationRecord, type ConversationResourceProperties, Conversations, type CreateActorData, type CreateActorError, type CreateActorErrors, type CreateActorResponse, type CreateActorResponses, type CreateAgentData, type CreateAgentError, type CreateAgentErrors, type CreateAgentGenerationData, type CreateAgentGenerationError, type CreateAgentGenerationErrors, type CreateAgentGenerationRequest, type CreateAgentGenerationResponse, type CreateAgentGenerationResponses, type CreateAgentRequest, type CreateAgentResponse, type CreateAgentResponses, type CreateAiProviderData, type CreateAiProviderErrors, type CreateAiProviderResponse, type CreateAiProviderResponses, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyErrors, type CreateApiKeyResponse, type CreateApiKeyResponses, type CreateChatCompletionData, type CreateChatCompletionError, type CreateChatCompletionErrors, type CreateChatCompletionForChatData, type CreateChatCompletionForChatError, type CreateChatCompletionForChatErrors, type CreateChatCompletionForChatResponse, type CreateChatCompletionForChatResponses, type CreateChatCompletionResponse, type CreateChatCompletionResponses, type CreateChatData, type CreateChatError, type CreateChatErrors, type CreateChatRequest, type CreateChatResponse, type CreateChatResponses, type CreateConversationData, type CreateConversationError, type CreateConversationErrors, type CreateConversationResponse, type CreateConversationResponses, type CreateDocumentData, type CreateDocumentError, type CreateDocumentErrors, type CreateDocumentResponse, type CreateDocumentResponses, type CreateEmbeddingsData, type CreateEmbeddingsError, type CreateEmbeddingsErrors, type CreateEmbeddingsResponse, type CreateEmbeddingsResponses, type CreateFileData, type CreateFileError, type CreateFileErrors, type CreateFileResponse, type CreateFileResponses, type CreateFormationData, type CreateFormationErrors, type CreateFormationResponse, type CreateFormationResponses, type CreateIngestionRuleData, type CreateIngestionRuleErrors, type CreateIngestionRuleResponse, type CreateIngestionRuleResponses, type CreateMemoryData, type CreateMemoryEntryData, type CreateMemoryEntryErrors, type CreateMemoryEntryResponse, type CreateMemoryEntryResponses, type CreateMemoryErrors, type CreateMemoryResponse, type CreateMemoryResponses, type CreateOrchestrationData, type CreateOrchestrationErrors, type CreateOrchestrationRequest, type CreateOrchestrationResponse, type CreateOrchestrationResponses, type CreatePolicyData, type CreatePolicyError, type CreatePolicyErrors, type CreatePolicyResponse, type CreatePolicyResponses, type CreatePresignedUrlData, type CreatePresignedUrlError, type CreatePresignedUrlErrors, type CreatePresignedUrlResponse, type CreatePresignedUrlResponses, type CreateProjectData, type CreateProjectErrors, type CreateProjectResponse, type CreateProjectResponses, type CreateSecretData, type CreateSecretErrors, type CreateSecretResponse, type CreateSecretResponses, type CreateSessionData, type CreateSessionError, type CreateSessionErrors, type CreateSessionRequest, type CreateSessionResponse, type CreateSessionResponses, type CreateToolData, type CreateToolError, type CreateToolErrors, type CreateToolRequest, type CreateToolResponse, type CreateToolResponses, type CreateUserData, type CreateUserError, type CreateUserErrors, type CreateUserResponse, type CreateUserResponses, type CreateWebhookData, type CreateWebhookErrors, type CreateWebhookRequest, type CreateWebhookResponse, type CreateWebhookResponses, type DeleteActorData, type DeleteActorError, type DeleteActorErrors, type DeleteActorResponse, type DeleteActorResponses, type DeleteAgentData, type DeleteAgentError, type DeleteAgentErrors, type DeleteAgentResponse, type DeleteAgentResponses, type DeleteAiProviderData, type DeleteAiProviderErrors, type DeleteAiProviderResponses, type DeleteApiKeyData, type DeleteApiKeyErrors, type DeleteApiKeyResponse, type DeleteApiKeyResponses, type DeleteChatData, type DeleteChatError, type DeleteChatErrors, type DeleteChatResponse, type DeleteChatResponses, type DeleteConversationData, type DeleteConversationError, type DeleteConversationErrors, type DeleteConversationResponse, type DeleteConversationResponses, type DeleteDocumentData, type DeleteDocumentError, type DeleteDocumentErrors, type DeleteDocumentResponse, type DeleteDocumentResponses, type DeleteFileData, type DeleteFileError, type DeleteFileErrors, type DeleteFileResponse, type DeleteFileResponses, type DeleteFormationData, type DeleteFormationErrors, type DeleteFormationResponse, type DeleteFormationResponses, type DeleteIngestionRuleData, type DeleteIngestionRuleErrors, type DeleteIngestionRuleResponse, type DeleteIngestionRuleResponses, type DeleteMemoryData, type DeleteMemoryEntryData, type DeleteMemoryEntryErrors, type DeleteMemoryEntryResponse, type DeleteMemoryEntryResponses, type DeleteMemoryErrors, type DeleteMemoryResponse, type DeleteMemoryResponses, type DeleteOrchestrationData, type DeleteOrchestrationErrors, type DeleteOrchestrationResponse, type DeleteOrchestrationResponses, type DeletePolicyData, type DeletePolicyErrors, type DeletePolicyResponse, type DeletePolicyResponses, type DeleteProjectData, type DeleteProjectError, type DeleteProjectErrors, type DeleteProjectResponse, type DeleteProjectResponses, type DeleteSecretData, type DeleteSecretErrors, type DeleteSecretResponses, type DeleteSessionData, type DeleteSessionError, type DeleteSessionErrors, type DeleteSessionResponse, type DeleteSessionResponses, type DeleteToolData, type DeleteToolError, type DeleteToolErrors, type DeleteToolResponse, type DeleteToolResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserResponse, type DeleteUserResponses, type DeleteWebhookData, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type Delivery, type DeliveryListResponse, type DocumentKnowledgeResult, type DocumentMessageContent, type DocumentRecord, type DocumentResourceProperties, type DocumentStatusRecord, Documents, type DownloadFileBase64Data, type DownloadFileBase64Error, type DownloadFileBase64Errors, type DownloadFileBase64Response, type DownloadFileBase64Responses, type DownloadFileData, type DownloadFileError, type DownloadFileErrors, type DownloadFileResponse, type DownloadFileResponses, Embeddings, type EmbeddingsResponse, type ErrorResponse, type FileRecord, type FileRecordWritable, type FileResourceProperties, Files, type Formation, type FormationEvent, type FormationOperation, type FormationResource, type FormationTemplate, type FormationTemplateInput, Formations, type GenerateConversationMessageCompleted, type GenerateConversationMessageData, type GenerateConversationMessageError, type GenerateConversationMessageErrors, type GenerateConversationMessageRequiresAction, type GenerateConversationMessageResponse, type GenerateConversationMessageResponse2, type GenerateConversationMessageResponses, type GenerateSessionRequest, type GenerateSessionResponse, type GenerateSessionResponseData, type GenerateSessionResponseError, type GenerateSessionResponseErrors, type GenerateSessionResponseResponse, type GenerateSessionResponseResponses, type Generation, Generations, type GetActorData, type GetActorError, type GetActorErrors, type GetActorResponse, type GetActorResponses, type GetActorTagsData, type GetActorTagsError, type GetActorTagsErrors, type GetActorTagsResponse, type GetActorTagsResponses, type GetAgentData, type GetAgentError, type GetAgentErrors, type GetAgentResponse, type GetAgentResponses, type GetAiProviderData, type GetAiProviderErrors, type GetAiProviderResponse, type GetAiProviderResponses, type GetApiKeyData, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetChatData, type GetChatError, type GetChatErrors, type GetChatResponse, type GetChatResponses, type GetConversationData, type GetConversationError, type GetConversationErrors, type GetConversationResponse, type GetConversationResponses, type GetConversationTagsData, type GetConversationTagsError, type GetConversationTagsErrors, type GetConversationTagsResponse, type GetConversationTagsResponses, type GetCurrentUserData, type GetCurrentUserError, type GetCurrentUserErrors, type GetCurrentUserResponse, type GetCurrentUserResponses, type GetDocumentData, type GetDocumentError, type GetDocumentErrors, type GetDocumentResponse, type GetDocumentResponses, type GetDocumentStatusData, type GetDocumentStatusError, type GetDocumentStatusErrors, type GetDocumentStatusResponse, type GetDocumentStatusResponses, type GetDocumentTagsData, type GetDocumentTagsError, type GetDocumentTagsErrors, type GetDocumentTagsResponse, type GetDocumentTagsResponses, type GetFileData, type GetFileError, type GetFileErrors, type GetFileResponse, type GetFileResponses, type GetFileTagsData, type GetFileTagsError, type GetFileTagsErrors, type GetFileTagsResponse, type GetFileTagsResponses, type GetFormationData, type GetFormationErrors, type GetFormationResponse, type GetFormationResponses, type GetGenerationData, type GetGenerationError, type GetGenerationErrors, type GetGenerationResponse, type GetGenerationResponses, type GetIngestionRuleData, type GetIngestionRuleErrors, type GetIngestionRuleResponse, type GetIngestionRuleResponses, type GetMemoryData, type GetMemoryEntryData, type GetMemoryEntryErrors, type GetMemoryEntryResponse, type GetMemoryEntryResponses, type GetMemoryErrors, type GetMemoryResponse, type GetMemoryResponses, type GetOrchestrationData, type GetOrchestrationErrors, type GetOrchestrationResponse, type GetOrchestrationResponses, type GetOrchestrationRunData, type GetOrchestrationRunErrors, type GetOrchestrationRunResponse, type GetOrchestrationRunResponses, type GetPolicyData, type GetPolicyErrors, type GetPolicyResponse, type GetPolicyResponses, type GetProjectData, type GetProjectErrors, type GetProjectResponse, type GetProjectResponses, type GetSecretData, type GetSecretErrors, type GetSecretResponse, type GetSecretResponses, type GetSessionData, type GetSessionError, type GetSessionErrors, type GetSessionResponse, type GetSessionResponses, type GetSessionTagsData, type GetSessionTagsError, type GetSessionTagsErrors, type GetSessionTagsResponse, type GetSessionTagsResponses, type GetToolData, type GetToolError, type GetToolErrors, type GetToolResponse, type GetToolResponses, type GetTraceData, type GetTraceError, type GetTraceErrors, type GetTraceResponse, type GetTraceResponses, type GetTraceTreeData, type GetTraceTreeError, type GetTraceTreeErrors, type GetTraceTreeResponse, type GetTraceTreeResponses, type GetUserData, type GetUserError, type GetUserErrors, type GetUserResponse, type GetUserResponses, type GetWebhookData, type GetWebhookDeliveryData, type GetWebhookDeliveryErrors, type GetWebhookDeliveryResponse, type GetWebhookDeliveryResponses, type GetWebhookErrors, type GetWebhookResponse, type GetWebhookResponses, type GetWebhookSecretData, type GetWebhookSecretErrors, type GetWebhookSecretResponse, type GetWebhookSecretResponses, type HumanInputRequest, type IngestDocumentData, type IngestDocumentError, type IngestDocumentErrors, type IngestDocumentResponse, type IngestDocumentResponses, type IngestedDocumentRecord, type IngestionRule, type IngestionRuleResourceProperties, IngestionRules, Knowledge, type KnowledgeResult, type ListActorsData, type ListActorsError, type ListActorsErrors, type ListActorsResponse, type ListActorsResponses, type ListAgentsData, type ListAgentsError, type ListAgentsErrors, type ListAgentsResponse, type ListAgentsResponses, type ListAiProvidersData, type ListAiProvidersErrors, type ListAiProvidersResponse, type ListAiProvidersResponses, type ListApiKeysData, type ListApiKeysErrors, type ListApiKeysResponse, type ListApiKeysResponses, type ListChatsData, type ListChatsError, type ListChatsErrors, type ListChatsResponse, type ListChatsResponses, type ListConversationMessagesData, type ListConversationMessagesError, type ListConversationMessagesErrors, type ListConversationMessagesResponse, type ListConversationMessagesResponses, type ListConversationsData, type ListConversationsError, type ListConversationsErrors, type ListConversationsResponse, type ListConversationsResponses, type ListDocumentsData, type ListDocumentsError, type ListDocumentsErrors, type ListDocumentsResponse, type ListDocumentsResponses, type ListFilesData, type ListFilesError, type ListFilesErrors, type ListFilesResponse, type ListFilesResponses, type ListFormationEventsData, type ListFormationEventsErrors, type ListFormationEventsResponse, type ListFormationEventsResponses, type ListFormationsData, type ListFormationsErrors, type ListFormationsResponse, type ListFormationsResponses, type ListGenerationsData, type ListGenerationsError, type ListGenerationsErrors, type ListGenerationsResponse, type ListGenerationsResponses, type ListIngestionRulesData, type ListIngestionRulesErrors, type ListIngestionRulesResponse, type ListIngestionRulesResponses, type ListMemoriesData, type ListMemoriesErrors, type ListMemoriesResponse, type ListMemoriesResponses, type ListMemoryEntriesData, type ListMemoryEntriesErrors, type ListMemoryEntriesResponse, type ListMemoryEntriesResponses, type ListOrchestrationRunsData, type ListOrchestrationRunsErrors, type ListOrchestrationRunsResponse, type ListOrchestrationRunsResponses, type ListOrchestrationsData, type ListOrchestrationsErrors, type ListOrchestrationsResponse, type ListOrchestrationsResponses, type ListPoliciesData, type ListPoliciesErrors, type ListPoliciesResponse, type ListPoliciesResponses, type ListProjectsData, type ListProjectsErrors, type ListProjectsResponse, type ListProjectsResponses, type ListSecretsData, type ListSecretsErrors, type ListSecretsResponse, type ListSecretsResponses, type ListSessionsData, type ListSessionsError, type ListSessionsErrors, type ListSessionsResponse, type ListSessionsResponses, type ListToolsData, type ListToolsError, type ListToolsErrors, type ListToolsResponse, type ListToolsResponses, type ListTracesData, type ListTracesError, type ListTracesErrors, type ListTracesResponse, type ListTracesResponses, type ListUsersData, type ListUsersError, type ListUsersErrors, type ListUsersResponse, type ListUsersResponses, type ListWebhookDeliveriesData, type ListWebhookDeliveriesErrors, type ListWebhookDeliveriesResponse, type ListWebhookDeliveriesResponses, type ListWebhooksData, type ListWebhooksErrors, type ListWebhooksResponse, type ListWebhooksResponses, type LoginResponse, type LoginUserData, type LoginUserError, type LoginUserErrors, type LoginUserResponse, type LoginUserResponses, Memories, type Memory, MemoryEntries, type MemoryEntry, type MemoryEntryResourceProperties, type MemoryEntryWriteResult, type MemoryKnowledgeResult, type MemoryResourceProperties, type MergeActorTagsData, type MergeActorTagsError, type MergeActorTagsErrors, type MergeActorTagsResponse, type MergeActorTagsResponses, type MergeConversationTagsData, type MergeConversationTagsError, type MergeConversationTagsErrors, type MergeConversationTagsResponse, type MergeConversationTagsResponses, type MergeDocumentTagsData, type MergeDocumentTagsError, type MergeDocumentTagsErrors, type MergeDocumentTagsResponse, type MergeDocumentTagsResponses, type MergeFileTagsData, type MergeFileTagsError, type MergeFileTagsErrors, type MergeFileTagsResponse, type MergeFileTagsResponses, type MergeSessionTagsData, type MergeSessionTagsError, type MergeSessionTagsErrors, type MergeSessionTagsResponse, type MergeSessionTagsResponses, type NodeExecution, type Options, type Orchestration, type OrchestrationEdge, type OrchestrationId, type OrchestrationNode, type OrchestrationResourceProperties, type OrchestrationRun, Orchestrations, type ParameterDeclaration, type PatchAgentData, type PatchAgentError, type PatchAgentErrors, type PatchAgentResponse, type PatchAgentResponses, type PlanChange, type PlanFormationData, type PlanFormationErrors, type PlanFormationResponse, type PlanFormationResponses, type PlanResult, Policies, type PolicyDocument, type PolicyRecord, type PolicyResourceProperties, type PolicyStatement, type PresignedUrlRequest, type PresignedUrlResponse, type ProjectRecord, Projects, type ReasoningBranch, type ReasoningConfig, type ReasoningStep, type ReingestDocumentData, type ReingestDocumentError, type ReingestDocumentErrors, type ReingestDocumentResponse, type ReingestDocumentResponses, type RemoveConversationMessageData, type RemoveConversationMessageError, type RemoveConversationMessageErrors, type RemoveConversationMessageResponse, type RemoveConversationMessageResponses, type ReplaceActorTagsData, type ReplaceActorTagsError, type ReplaceActorTagsErrors, type ReplaceActorTagsResponse, type ReplaceActorTagsResponses, type ReplaceConversationTagsData, type ReplaceConversationTagsError, type ReplaceConversationTagsErrors, type ReplaceConversationTagsResponse, type ReplaceConversationTagsResponses, type ReplaceDocumentTagsData, type ReplaceDocumentTagsError, type ReplaceDocumentTagsErrors, type ReplaceDocumentTagsResponse, type ReplaceDocumentTagsResponses, type ReplaceFileTagsData, type ReplaceFileTagsError, type ReplaceFileTagsErrors, type ReplaceFileTagsResponse, type ReplaceFileTagsResponses, type ReplaceSessionTagsData, type ReplaceSessionTagsError, type ReplaceSessionTagsErrors, type ReplaceSessionTagsResponse, type ReplaceSessionTagsResponses, type RequiredAction, type ResourceDeclaration, type ResumeOrchestrationRunData, type ResumeOrchestrationRunErrors, type ResumeOrchestrationRunResponse, type ResumeOrchestrationRunResponses, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type RunId, type SearchKnowledgeData, type SearchKnowledgeError, type SearchKnowledgeErrors, type SearchKnowledgeResponse, type SearchKnowledgeResponses, type SecretResourceProperties, Secrets, type SendSessionMessageResponse, type SessionId, type SessionRecord, type SessionResourceProperties, Sessions, SoatClient, type SoatClientOptions, type StartOrchestrationRunData, type StartOrchestrationRunErrors, type StartOrchestrationRunResponse, type StartOrchestrationRunResponses, type StartRunRequest, type SubmitAgentToolOutputsData, type SubmitAgentToolOutputsError, type SubmitAgentToolOutputsErrors, type SubmitAgentToolOutputsResponse, type SubmitAgentToolOutputsResponses, type SubmitHumanInputData, type SubmitHumanInputErrors, type SubmitHumanInputResponse, type SubmitHumanInputResponses, type SubmitSessionToolOutputsData, type SubmitSessionToolOutputsError, type SubmitSessionToolOutputsErrors, type SubmitSessionToolOutputsRequest, type SubmitSessionToolOutputsResponse, type SubmitSessionToolOutputsResponses, type SubmitToolOutputsRequest, type Tool, type ToolOutputMessageContent, type ToolResourceProperties, Tools, type Trace, type TraceTreeNode, Traces, type UpdateActorData, type UpdateActorError, type UpdateActorErrors, type UpdateActorResponse, type UpdateActorResponses, type UpdateAgentData, type UpdateAgentError, type UpdateAgentErrors, type UpdateAgentRequest, type UpdateAgentResponse, type UpdateAgentResponses, type UpdateAiProviderData, type UpdateAiProviderErrors, type UpdateAiProviderResponses, type UpdateApiKeyData, type UpdateApiKeyError, type UpdateApiKeyErrors, type UpdateApiKeyResponse, type UpdateApiKeyResponses, type UpdateConversationData, type UpdateConversationError, type UpdateConversationErrors, type UpdateConversationResponse, type UpdateConversationResponses, type UpdateDocumentData, type UpdateDocumentError, type UpdateDocumentErrors, type UpdateDocumentResponse, type UpdateDocumentResponses, type UpdateFileMetadataData, type UpdateFileMetadataError, type UpdateFileMetadataErrors, type UpdateFileMetadataResponse, type UpdateFileMetadataResponses, type UpdateFormationData, type UpdateFormationErrors, type UpdateFormationResponse, type UpdateFormationResponses, type UpdateIngestionRuleData, type UpdateIngestionRuleErrors, type UpdateIngestionRuleResponse, type UpdateIngestionRuleResponses, type UpdateMemoryData, type UpdateMemoryEntryData, type UpdateMemoryEntryErrors, type UpdateMemoryEntryResponse, type UpdateMemoryEntryResponses, type UpdateMemoryErrors, type UpdateMemoryResponse, type UpdateMemoryResponses, type UpdateOrchestrationData, type UpdateOrchestrationErrors, type UpdateOrchestrationRequest, type UpdateOrchestrationResponse, type UpdateOrchestrationResponses, type UpdatePolicyData, type UpdatePolicyError, type UpdatePolicyErrors, type UpdatePolicyResponse, type UpdatePolicyResponses, type UpdateProjectData, type UpdateProjectErrors, type UpdateProjectResponse, type UpdateProjectResponses, type UpdateSecretData, type UpdateSecretErrors, type UpdateSecretResponses, type UpdateSessionData, type UpdateSessionError, type UpdateSessionErrors, type UpdateSessionRequest, type UpdateSessionResponse, type UpdateSessionResponses, type UpdateToolData, type UpdateToolError, type UpdateToolErrors, type UpdateToolRequest, type UpdateToolResponse, type UpdateToolResponses, type UpdateWebhookData, type UpdateWebhookErrors, type UpdateWebhookRequest, type UpdateWebhookResponse, type UpdateWebhookResponses, type UploadFileBase64Data, type UploadFileBase64Error, type UploadFileBase64Errors, type UploadFileBase64Request, type UploadFileBase64Response, type UploadFileBase64Responses, type UploadFileData, type UploadFileError, type UploadFileErrors, type UploadFileResponse, type UploadFileResponses, type UploadFileWithTokenData, type UploadFileWithTokenError, type UploadFileWithTokenErrors, type UploadFileWithTokenRequest, type UploadFileWithTokenResponse, type UploadFileWithTokenResponses, type UserRecord, Users, type ValidateFormationData, type ValidateFormationErrors, type ValidateFormationResponse, type ValidateFormationResponses, type ValidateOrchestrationData, type ValidateOrchestrationErrors, type ValidateOrchestrationRequest, type ValidateOrchestrationResponse, type ValidateOrchestrationResponses, type ValidationError, type ValidationResult, type Webhook, type WebhookResourceProperties, type WebhookSecretResponse, type WebhookWithSecret, Webhooks, createClient, createConfig };
|
|
10979
|
+
export { type ActorRecord, type ActorResourceProperties, Actors, type AddConversationMessageData, type AddConversationMessageError, type AddConversationMessageErrors, type AddConversationMessageResponse, type AddConversationMessageResponses, type AddSessionMessageData, type AddSessionMessageError, type AddSessionMessageErrors, type AddSessionMessageRequest, type AddSessionMessageResponse, type AddSessionMessageResponse2, type AddSessionMessageResponses, type AddSessionMessageSaved, type Agent, type AgentGenerationResponse, type AgentResourceProperties, Agents, type AiProviderResourceProperties, AiProviders, type ApiKeyCreated, type ApiKeyRecord, type ApiKeyResourceProperties, ApiKeys, type AttachUserPoliciesData, type AttachUserPoliciesError, type AttachUserPoliciesErrors, type AttachUserPoliciesResponse, type AttachUserPoliciesResponses, type BootstrapUserData, type BootstrapUserError, type BootstrapUserErrors, type BootstrapUserResponse, type BootstrapUserResponses, type CallToolData, type CallToolError, type CallToolErrors, type CallToolRequest, type CallToolResponse, type CallToolResponses, type CancelOrchestrationRunData, type CancelOrchestrationRunErrors, type CancelOrchestrationRunResponse, type CancelOrchestrationRunResponses, type Chat, type ChatCompletionChoice, type ChatCompletionForChatRequest, type ChatCompletionRequest, type ChatCompletionResponse, type ChatCompletionResponseMessage, type ChatMessage, type ChatMessageInput, type ChatResourceProperties, Chats, type ClientOptions, type CompleteIngestionCallbackData, type CompleteIngestionCallbackError, type CompleteIngestionCallbackErrors, type CompleteIngestionCallbackResponse, type CompleteIngestionCallbackResponses, type ConversationMessageRecord, type ConversationRecord, type ConversationResourceProperties, Conversations, type CreateActorData, type CreateActorError, type CreateActorErrors, type CreateActorResponse, type CreateActorResponses, type CreateAgentData, type CreateAgentError, type CreateAgentErrors, type CreateAgentGenerationData, type CreateAgentGenerationError, type CreateAgentGenerationErrors, type CreateAgentGenerationRequest, type CreateAgentGenerationResponse, type CreateAgentGenerationResponses, type CreateAgentRequest, type CreateAgentResponse, type CreateAgentResponses, type CreateAiProviderData, type CreateAiProviderErrors, type CreateAiProviderResponse, type CreateAiProviderResponses, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyErrors, type CreateApiKeyResponse, type CreateApiKeyResponses, type CreateChatCompletionData, type CreateChatCompletionError, type CreateChatCompletionErrors, type CreateChatCompletionForChatData, type CreateChatCompletionForChatError, type CreateChatCompletionForChatErrors, type CreateChatCompletionForChatResponse, type CreateChatCompletionForChatResponses, type CreateChatCompletionResponse, type CreateChatCompletionResponses, type CreateChatData, type CreateChatError, type CreateChatErrors, type CreateChatRequest, type CreateChatResponse, type CreateChatResponses, type CreateConversationData, type CreateConversationError, type CreateConversationErrors, type CreateConversationResponse, type CreateConversationResponses, type CreateDiscussionData, type CreateDiscussionError, type CreateDiscussionErrors, type CreateDiscussionResponse, type CreateDiscussionResponses, type CreateDiscussionRunData, type CreateDiscussionRunError, type CreateDiscussionRunErrors, type CreateDiscussionRunResponse, type CreateDiscussionRunResponses, type CreateDocumentData, type CreateDocumentError, type CreateDocumentErrors, type CreateDocumentResponse, type CreateDocumentResponses, type CreateEmbeddingsData, type CreateEmbeddingsError, type CreateEmbeddingsErrors, type CreateEmbeddingsResponse, type CreateEmbeddingsResponses, type CreateFileData, type CreateFileError, type CreateFileErrors, type CreateFileResponse, type CreateFileResponses, type CreateFormationData, type CreateFormationErrors, type CreateFormationResponse, type CreateFormationResponses, type CreateIngestionRuleData, type CreateIngestionRuleErrors, type CreateIngestionRuleResponse, type CreateIngestionRuleResponses, type CreateMemoryData, type CreateMemoryEntryData, type CreateMemoryEntryErrors, type CreateMemoryEntryResponse, type CreateMemoryEntryResponses, type CreateMemoryErrors, type CreateMemoryResponse, type CreateMemoryResponses, type CreateOrchestrationData, type CreateOrchestrationErrors, type CreateOrchestrationRequest, type CreateOrchestrationResponse, type CreateOrchestrationResponses, type CreatePolicyData, type CreatePolicyError, type CreatePolicyErrors, type CreatePolicyResponse, type CreatePolicyResponses, type CreatePresignedUrlData, type CreatePresignedUrlError, type CreatePresignedUrlErrors, type CreatePresignedUrlResponse, type CreatePresignedUrlResponses, type CreateProjectData, type CreateProjectErrors, type CreateProjectResponse, type CreateProjectResponses, type CreateSecretData, type CreateSecretErrors, type CreateSecretResponse, type CreateSecretResponses, type CreateSessionData, type CreateSessionError, type CreateSessionErrors, type CreateSessionRequest, type CreateSessionResponse, type CreateSessionResponses, type CreateToolData, type CreateToolError, type CreateToolErrors, type CreateToolRequest, type CreateToolResponse, type CreateToolResponses, type CreateUserData, type CreateUserError, type CreateUserErrors, type CreateUserResponse, type CreateUserResponses, type CreateWebhookData, type CreateWebhookErrors, type CreateWebhookRequest, type CreateWebhookResponse, type CreateWebhookResponses, type DeleteActorData, type DeleteActorError, type DeleteActorErrors, type DeleteActorResponse, type DeleteActorResponses, type DeleteAgentData, type DeleteAgentError, type DeleteAgentErrors, type DeleteAgentResponse, type DeleteAgentResponses, type DeleteAiProviderData, type DeleteAiProviderErrors, type DeleteAiProviderResponses, type DeleteApiKeyData, type DeleteApiKeyErrors, type DeleteApiKeyResponse, type DeleteApiKeyResponses, type DeleteChatData, type DeleteChatError, type DeleteChatErrors, type DeleteChatResponse, type DeleteChatResponses, type DeleteConversationData, type DeleteConversationError, type DeleteConversationErrors, type DeleteConversationResponse, type DeleteConversationResponses, type DeleteDiscussionData, type DeleteDiscussionError, type DeleteDiscussionErrors, type DeleteDiscussionResponse, type DeleteDiscussionResponses, type DeleteDocumentData, type DeleteDocumentError, type DeleteDocumentErrors, type DeleteDocumentResponse, type DeleteDocumentResponses, type DeleteFileData, type DeleteFileError, type DeleteFileErrors, type DeleteFileResponse, type DeleteFileResponses, type DeleteFormationData, type DeleteFormationErrors, type DeleteFormationResponse, type DeleteFormationResponses, type DeleteIngestionRuleData, type DeleteIngestionRuleErrors, type DeleteIngestionRuleResponse, type DeleteIngestionRuleResponses, type DeleteMemoryData, type DeleteMemoryEntryData, type DeleteMemoryEntryErrors, type DeleteMemoryEntryResponse, type DeleteMemoryEntryResponses, type DeleteMemoryErrors, type DeleteMemoryResponse, type DeleteMemoryResponses, type DeleteOrchestrationData, type DeleteOrchestrationErrors, type DeleteOrchestrationResponse, type DeleteOrchestrationResponses, type DeletePolicyData, type DeletePolicyErrors, type DeletePolicyResponse, type DeletePolicyResponses, type DeleteProjectData, type DeleteProjectError, type DeleteProjectErrors, type DeleteProjectResponse, type DeleteProjectResponses, type DeleteSecretData, type DeleteSecretErrors, type DeleteSecretResponses, type DeleteSessionData, type DeleteSessionError, type DeleteSessionErrors, type DeleteSessionResponse, type DeleteSessionResponses, type DeleteToolData, type DeleteToolError, type DeleteToolErrors, type DeleteToolResponse, type DeleteToolResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserResponse, type DeleteUserResponses, type DeleteWebhookData, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type Delivery, type DeliveryListResponse, type DiscussionRecord, type DiscussionResourceProperties, type DiscussionRunRecord, Discussions, type DocumentKnowledgeResult, type DocumentMessageContent, type DocumentRecord, type DocumentResourceProperties, type DocumentStatusRecord, Documents, type DownloadFileBase64Data, type DownloadFileBase64Error, type DownloadFileBase64Errors, type DownloadFileBase64Response, type DownloadFileBase64Responses, type DownloadFileData, type DownloadFileError, type DownloadFileErrors, type DownloadFileResponse, type DownloadFileResponses, Embeddings, type EmbeddingsResponse, type ErrorResponse, type FileRecord, type FileRecordWritable, type FileResourceProperties, Files, type Formation, type FormationEvent, type FormationOperation, type FormationResource, type FormationTemplate, type FormationTemplateInput, Formations, type GenerateConversationMessageCompleted, type GenerateConversationMessageData, type GenerateConversationMessageError, type GenerateConversationMessageErrors, type GenerateConversationMessageRequiresAction, type GenerateConversationMessageResponse, type GenerateConversationMessageResponse2, type GenerateConversationMessageResponses, type GenerateSessionRequest, type GenerateSessionResponse, type GenerateSessionResponseData, type GenerateSessionResponseError, type GenerateSessionResponseErrors, type GenerateSessionResponseResponse, type GenerateSessionResponseResponses, type Generation, Generations, type GetActorData, type GetActorError, type GetActorErrors, type GetActorResponse, type GetActorResponses, type GetActorTagsData, type GetActorTagsError, type GetActorTagsErrors, type GetActorTagsResponse, type GetActorTagsResponses, type GetAgentData, type GetAgentError, type GetAgentErrors, type GetAgentResponse, type GetAgentResponses, type GetAiProviderData, type GetAiProviderErrors, type GetAiProviderResponse, type GetAiProviderResponses, type GetApiKeyData, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetChatData, type GetChatError, type GetChatErrors, type GetChatResponse, type GetChatResponses, type GetConversationData, type GetConversationError, type GetConversationErrors, type GetConversationResponse, type GetConversationResponses, type GetConversationTagsData, type GetConversationTagsError, type GetConversationTagsErrors, type GetConversationTagsResponse, type GetConversationTagsResponses, type GetCurrentUserData, type GetCurrentUserError, type GetCurrentUserErrors, type GetCurrentUserResponse, type GetCurrentUserResponses, type GetDiscussionData, type GetDiscussionError, type GetDiscussionErrors, type GetDiscussionResponse, type GetDiscussionResponses, type GetDiscussionRunData, type GetDiscussionRunError, type GetDiscussionRunErrors, type GetDiscussionRunResponse, type GetDiscussionRunResponses, type GetDocumentData, type GetDocumentError, type GetDocumentErrors, type GetDocumentResponse, type GetDocumentResponses, type GetDocumentStatusData, type GetDocumentStatusError, type GetDocumentStatusErrors, type GetDocumentStatusResponse, type GetDocumentStatusResponses, type GetDocumentTagsData, type GetDocumentTagsError, type GetDocumentTagsErrors, type GetDocumentTagsResponse, type GetDocumentTagsResponses, type GetFileData, type GetFileError, type GetFileErrors, type GetFileResponse, type GetFileResponses, type GetFileTagsData, type GetFileTagsError, type GetFileTagsErrors, type GetFileTagsResponse, type GetFileTagsResponses, type GetFormationData, type GetFormationErrors, type GetFormationResponse, type GetFormationResponses, type GetGenerationData, type GetGenerationError, type GetGenerationErrors, type GetGenerationResponse, type GetGenerationResponses, type GetIngestionRuleData, type GetIngestionRuleErrors, type GetIngestionRuleResponse, type GetIngestionRuleResponses, type GetMemoryData, type GetMemoryEntryData, type GetMemoryEntryErrors, type GetMemoryEntryResponse, type GetMemoryEntryResponses, type GetMemoryErrors, type GetMemoryResponse, type GetMemoryResponses, type GetOrchestrationData, type GetOrchestrationErrors, type GetOrchestrationResponse, type GetOrchestrationResponses, type GetOrchestrationRunData, type GetOrchestrationRunErrors, type GetOrchestrationRunResponse, type GetOrchestrationRunResponses, type GetPolicyData, type GetPolicyErrors, type GetPolicyResponse, type GetPolicyResponses, type GetProjectData, type GetProjectErrors, type GetProjectResponse, type GetProjectResponses, type GetSecretData, type GetSecretErrors, type GetSecretResponse, type GetSecretResponses, type GetSessionData, type GetSessionError, type GetSessionErrors, type GetSessionResponse, type GetSessionResponses, type GetSessionTagsData, type GetSessionTagsError, type GetSessionTagsErrors, type GetSessionTagsResponse, type GetSessionTagsResponses, type GetToolData, type GetToolError, type GetToolErrors, type GetToolResponse, type GetToolResponses, type GetTraceData, type GetTraceError, type GetTraceErrors, type GetTraceResponse, type GetTraceResponses, type GetTraceTreeData, type GetTraceTreeError, type GetTraceTreeErrors, type GetTraceTreeResponse, type GetTraceTreeResponses, type GetUserData, type GetUserError, type GetUserErrors, type GetUserResponse, type GetUserResponses, type GetWebhookData, type GetWebhookDeliveryData, type GetWebhookDeliveryErrors, type GetWebhookDeliveryResponse, type GetWebhookDeliveryResponses, type GetWebhookErrors, type GetWebhookResponse, type GetWebhookResponses, type GetWebhookSecretData, type GetWebhookSecretErrors, type GetWebhookSecretResponse, type GetWebhookSecretResponses, type HumanInputRequest, type IngestDocumentData, type IngestDocumentError, type IngestDocumentErrors, type IngestDocumentResponse, type IngestDocumentResponses, type IngestedDocumentRecord, type IngestionRule, type IngestionRuleResourceProperties, IngestionRules, Knowledge, type KnowledgeResult, type ListActorsData, type ListActorsError, type ListActorsErrors, type ListActorsResponse, type ListActorsResponses, type ListAgentsData, type ListAgentsError, type ListAgentsErrors, type ListAgentsResponse, type ListAgentsResponses, type ListAiProvidersData, type ListAiProvidersErrors, type ListAiProvidersResponse, type ListAiProvidersResponses, type ListApiKeysData, type ListApiKeysErrors, type ListApiKeysResponse, type ListApiKeysResponses, type ListChatsData, type ListChatsError, type ListChatsErrors, type ListChatsResponse, type ListChatsResponses, type ListConversationMessagesData, type ListConversationMessagesError, type ListConversationMessagesErrors, type ListConversationMessagesResponse, type ListConversationMessagesResponses, type ListConversationsData, type ListConversationsError, type ListConversationsErrors, type ListConversationsResponse, type ListConversationsResponses, type ListDiscussionRunsData, type ListDiscussionRunsError, type ListDiscussionRunsErrors, type ListDiscussionRunsResponse, type ListDiscussionRunsResponses, type ListDiscussionsData, type ListDiscussionsError, type ListDiscussionsErrors, type ListDiscussionsResponse, type ListDiscussionsResponses, type ListDocumentsData, type ListDocumentsError, type ListDocumentsErrors, type ListDocumentsResponse, type ListDocumentsResponses, type ListFilesData, type ListFilesError, type ListFilesErrors, type ListFilesResponse, type ListFilesResponses, type ListFormationEventsData, type ListFormationEventsErrors, type ListFormationEventsResponse, type ListFormationEventsResponses, type ListFormationsData, type ListFormationsErrors, type ListFormationsResponse, type ListFormationsResponses, type ListGenerationsData, type ListGenerationsError, type ListGenerationsErrors, type ListGenerationsResponse, type ListGenerationsResponses, type ListIngestionRulesData, type ListIngestionRulesErrors, type ListIngestionRulesResponse, type ListIngestionRulesResponses, type ListMemoriesData, type ListMemoriesErrors, type ListMemoriesResponse, type ListMemoriesResponses, type ListMemoryEntriesData, type ListMemoryEntriesErrors, type ListMemoryEntriesResponse, type ListMemoryEntriesResponses, type ListOrchestrationRunsData, type ListOrchestrationRunsErrors, type ListOrchestrationRunsResponse, type ListOrchestrationRunsResponses, type ListOrchestrationsData, type ListOrchestrationsErrors, type ListOrchestrationsResponse, type ListOrchestrationsResponses, type ListPoliciesData, type ListPoliciesErrors, type ListPoliciesResponse, type ListPoliciesResponses, type ListProjectsData, type ListProjectsErrors, type ListProjectsResponse, type ListProjectsResponses, type ListSecretsData, type ListSecretsErrors, type ListSecretsResponse, type ListSecretsResponses, type ListSessionsData, type ListSessionsError, type ListSessionsErrors, type ListSessionsResponse, type ListSessionsResponses, type ListToolsData, type ListToolsError, type ListToolsErrors, type ListToolsResponse, type ListToolsResponses, type ListTracesData, type ListTracesError, type ListTracesErrors, type ListTracesResponse, type ListTracesResponses, type ListUsersData, type ListUsersError, type ListUsersErrors, type ListUsersResponse, type ListUsersResponses, type ListWebhookDeliveriesData, type ListWebhookDeliveriesErrors, type ListWebhookDeliveriesResponse, type ListWebhookDeliveriesResponses, type ListWebhooksData, type ListWebhooksErrors, type ListWebhooksResponse, type ListWebhooksResponses, type LoginResponse, type LoginUserData, type LoginUserError, type LoginUserErrors, type LoginUserResponse, type LoginUserResponses, Memories, type Memory, MemoryEntries, type MemoryEntry, type MemoryEntryResourceProperties, type MemoryEntryWriteResult, type MemoryKnowledgeResult, type MemoryResourceProperties, type MergeActorTagsData, type MergeActorTagsError, type MergeActorTagsErrors, type MergeActorTagsResponse, type MergeActorTagsResponses, type MergeConversationTagsData, type MergeConversationTagsError, type MergeConversationTagsErrors, type MergeConversationTagsResponse, type MergeConversationTagsResponses, type MergeDocumentTagsData, type MergeDocumentTagsError, type MergeDocumentTagsErrors, type MergeDocumentTagsResponse, type MergeDocumentTagsResponses, type MergeFileTagsData, type MergeFileTagsError, type MergeFileTagsErrors, type MergeFileTagsResponse, type MergeFileTagsResponses, type MergeSessionTagsData, type MergeSessionTagsError, type MergeSessionTagsErrors, type MergeSessionTagsResponse, type MergeSessionTagsResponses, type NodeExecution, type Options, type Orchestration, type OrchestrationEdge, type OrchestrationId, type OrchestrationNode, type OrchestrationResourceProperties, type OrchestrationRun, Orchestrations, type ParameterDeclaration, type ParticipantInput, type ParticipantRecord, type PatchAgentData, type PatchAgentError, type PatchAgentErrors, type PatchAgentResponse, type PatchAgentResponses, type PlanChange, type PlanFormationData, type PlanFormationErrors, type PlanFormationResponse, type PlanFormationResponses, type PlanResult, Policies, type PolicyDocument, type PolicyRecord, type PolicyResourceProperties, type PolicyStatement, type PresignedUrlRequest, type PresignedUrlResponse, type ProjectRecord, Projects, type ReingestDocumentData, type ReingestDocumentError, type ReingestDocumentErrors, type ReingestDocumentResponse, type ReingestDocumentResponses, type RemoveConversationMessageData, type RemoveConversationMessageError, type RemoveConversationMessageErrors, type RemoveConversationMessageResponse, type RemoveConversationMessageResponses, type ReplaceActorTagsData, type ReplaceActorTagsError, type ReplaceActorTagsErrors, type ReplaceActorTagsResponse, type ReplaceActorTagsResponses, type ReplaceConversationTagsData, type ReplaceConversationTagsError, type ReplaceConversationTagsErrors, type ReplaceConversationTagsResponse, type ReplaceConversationTagsResponses, type ReplaceDocumentTagsData, type ReplaceDocumentTagsError, type ReplaceDocumentTagsErrors, type ReplaceDocumentTagsResponse, type ReplaceDocumentTagsResponses, type ReplaceFileTagsData, type ReplaceFileTagsError, type ReplaceFileTagsErrors, type ReplaceFileTagsResponse, type ReplaceFileTagsResponses, type ReplaceSessionTagsData, type ReplaceSessionTagsError, type ReplaceSessionTagsErrors, type ReplaceSessionTagsResponse, type ReplaceSessionTagsResponses, type RequiredAction, type ResourceDeclaration, type ResumeOrchestrationRunData, type ResumeOrchestrationRunErrors, type ResumeOrchestrationRunResponse, type ResumeOrchestrationRunResponses, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type RunId, type SearchKnowledgeData, type SearchKnowledgeError, type SearchKnowledgeErrors, type SearchKnowledgeResponse, type SearchKnowledgeResponses, type SecretResourceProperties, Secrets, type SendSessionMessageResponse, type SessionId, type SessionRecord, type SessionResourceProperties, Sessions, SoatClient, type SoatClientOptions, type StartOrchestrationRunData, type StartOrchestrationRunErrors, type StartOrchestrationRunResponse, type StartOrchestrationRunResponses, type StartRunRequest, type SubmitAgentToolOutputsData, type SubmitAgentToolOutputsError, type SubmitAgentToolOutputsErrors, type SubmitAgentToolOutputsResponse, type SubmitAgentToolOutputsResponses, type SubmitHumanInputData, type SubmitHumanInputErrors, type SubmitHumanInputResponse, type SubmitHumanInputResponses, type SubmitSessionToolOutputsData, type SubmitSessionToolOutputsError, type SubmitSessionToolOutputsErrors, type SubmitSessionToolOutputsRequest, type SubmitSessionToolOutputsResponse, type SubmitSessionToolOutputsResponses, type SubmitToolOutputsRequest, type SynthesisConfig, type Tool, type ToolOutputMessageContent, type ToolResourceProperties, Tools, type Trace, type TraceTreeNode, Traces, type UpdateActorData, type UpdateActorError, type UpdateActorErrors, type UpdateActorResponse, type UpdateActorResponses, type UpdateAgentData, type UpdateAgentError, type UpdateAgentErrors, type UpdateAgentRequest, type UpdateAgentResponse, type UpdateAgentResponses, type UpdateAiProviderData, type UpdateAiProviderErrors, type UpdateAiProviderResponses, type UpdateApiKeyData, type UpdateApiKeyError, type UpdateApiKeyErrors, type UpdateApiKeyResponse, type UpdateApiKeyResponses, type UpdateConversationData, type UpdateConversationError, type UpdateConversationErrors, type UpdateConversationResponse, type UpdateConversationResponses, type UpdateDiscussionData, type UpdateDiscussionError, type UpdateDiscussionErrors, type UpdateDiscussionResponse, type UpdateDiscussionResponses, type UpdateDocumentData, type UpdateDocumentError, type UpdateDocumentErrors, type UpdateDocumentResponse, type UpdateDocumentResponses, type UpdateFileMetadataData, type UpdateFileMetadataError, type UpdateFileMetadataErrors, type UpdateFileMetadataResponse, type UpdateFileMetadataResponses, type UpdateFormationData, type UpdateFormationErrors, type UpdateFormationResponse, type UpdateFormationResponses, type UpdateIngestionRuleData, type UpdateIngestionRuleErrors, type UpdateIngestionRuleResponse, type UpdateIngestionRuleResponses, type UpdateMemoryData, type UpdateMemoryEntryData, type UpdateMemoryEntryErrors, type UpdateMemoryEntryResponse, type UpdateMemoryEntryResponses, type UpdateMemoryErrors, type UpdateMemoryResponse, type UpdateMemoryResponses, type UpdateOrchestrationData, type UpdateOrchestrationErrors, type UpdateOrchestrationRequest, type UpdateOrchestrationResponse, type UpdateOrchestrationResponses, type UpdatePolicyData, type UpdatePolicyError, type UpdatePolicyErrors, type UpdatePolicyResponse, type UpdatePolicyResponses, type UpdateProjectData, type UpdateProjectErrors, type UpdateProjectResponse, type UpdateProjectResponses, type UpdateSecretData, type UpdateSecretErrors, type UpdateSecretResponses, type UpdateSessionData, type UpdateSessionError, type UpdateSessionErrors, type UpdateSessionRequest, type UpdateSessionResponse, type UpdateSessionResponses, type UpdateToolData, type UpdateToolError, type UpdateToolErrors, type UpdateToolRequest, type UpdateToolResponse, type UpdateToolResponses, type UpdateWebhookData, type UpdateWebhookErrors, type UpdateWebhookRequest, type UpdateWebhookResponse, type UpdateWebhookResponses, type UploadFileBase64Data, type UploadFileBase64Error, type UploadFileBase64Errors, type UploadFileBase64Request, type UploadFileBase64Response, type UploadFileBase64Responses, type UploadFileData, type UploadFileError, type UploadFileErrors, type UploadFileResponse, type UploadFileResponses, type UploadFileWithTokenData, type UploadFileWithTokenError, type UploadFileWithTokenErrors, type UploadFileWithTokenRequest, type UploadFileWithTokenResponse, type UploadFileWithTokenResponses, type UserRecord, Users, type ValidateFormationData, type ValidateFormationErrors, type ValidateFormationResponse, type ValidateFormationResponses, type ValidateOrchestrationData, type ValidateOrchestrationErrors, type ValidateOrchestrationRequest, type ValidateOrchestrationResponse, type ValidateOrchestrationResponses, type ValidationError, type ValidationResult, type Webhook, type WebhookResourceProperties, type WebhookSecretResponse, type WebhookWithSecret, Webhooks, createClient, createConfig };
|