@soat/sdk 0.15.10 → 0.15.11
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 +98 -2
- package/dist/index.d.cts +473 -38
- package/dist/index.d.mts +473 -38
- package/dist/index.mjs +98 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -432,6 +432,10 @@ type Agent = {
|
|
|
432
432
|
* Subset of toolIds active per step
|
|
433
433
|
*/
|
|
434
434
|
active_tool_ids?: Array<string> | null;
|
|
435
|
+
/**
|
|
436
|
+
* Guardrails attached at the agent scope, governing every tool call the agent makes.
|
|
437
|
+
*/
|
|
438
|
+
guardrail_ids?: Array<string> | null;
|
|
435
439
|
/**
|
|
436
440
|
* Per-step overrides
|
|
437
441
|
*/
|
|
@@ -502,7 +506,7 @@ type Agent = {
|
|
|
502
506
|
updated_at?: Date;
|
|
503
507
|
};
|
|
504
508
|
/**
|
|
505
|
-
* One agent↔tool attachment. Exactly one of `tool_id` (persisted tool reference) or `tool` (inline ephemeral definition) per entry,
|
|
509
|
+
* One agent↔tool attachment. Exactly one of `tool_id` (persisted tool reference) or `tool` (inline ephemeral definition) per entry. Tool-call gating is owned by [Guardrails](/docs/modules/guardrails), attached via `guardrail_ids` on the project, agent, or tool — not on the binding.
|
|
506
510
|
*/
|
|
507
511
|
type ToolBinding = {
|
|
508
512
|
/**
|
|
@@ -510,37 +514,7 @@ type ToolBinding = {
|
|
|
510
514
|
*/
|
|
511
515
|
tool_id?: string;
|
|
512
516
|
tool?: CreateToolRequest;
|
|
513
|
-
approval_policy?: ToolApprovalPolicy;
|
|
514
517
|
};
|
|
515
|
-
/**
|
|
516
|
-
* Allow / require-approval / deny gate evaluated by the platform on every call of the bound tool. `require_approval` files an item in the approvals queue; the call executes only if approved before expiry. Not supported on `client` tool bindings. See [Approval Policy](/docs/modules/agents#approval-policy).
|
|
517
|
-
*/
|
|
518
|
-
type ToolApprovalPolicy = {
|
|
519
|
-
/**
|
|
520
|
-
* Effect applied when no rule matches.
|
|
521
|
-
*/
|
|
522
|
-
default: 'allow' | 'require_approval' | 'deny';
|
|
523
|
-
/**
|
|
524
|
-
* Ordered rule list; first match wins.
|
|
525
|
-
*/
|
|
526
|
-
rules?: Array<{
|
|
527
|
-
/**
|
|
528
|
-
* JSON Logic over `{ "action": …, "arguments": … }` — the resolved call.
|
|
529
|
-
*/
|
|
530
|
-
when: {
|
|
531
|
-
[key: string]: unknown;
|
|
532
|
-
};
|
|
533
|
-
effect: 'allow' | 'require_approval' | 'deny';
|
|
534
|
-
}>;
|
|
535
|
-
/**
|
|
536
|
-
* Seconds until a filed approval item expires (default 86400 = 24h). Expiry is a server-enforced hard gate.
|
|
537
|
-
*/
|
|
538
|
-
expires_in?: number;
|
|
539
|
-
/**
|
|
540
|
-
* Guidance injected into the tool's model-visible description telling the model how to justify guarded calls (via the `approval_*` fields). A default instruction is used when omitted.
|
|
541
|
-
*/
|
|
542
|
-
reasoning_prompt?: string | null;
|
|
543
|
-
} | null;
|
|
544
518
|
type CreateAgentRequest = {
|
|
545
519
|
/**
|
|
546
520
|
* Public ID of the project
|
|
@@ -578,6 +552,10 @@ type CreateAgentRequest = {
|
|
|
578
552
|
[key: string]: unknown;
|
|
579
553
|
}>;
|
|
580
554
|
active_tool_ids?: Array<string>;
|
|
555
|
+
/**
|
|
556
|
+
* Guardrails attached at the agent scope.
|
|
557
|
+
*/
|
|
558
|
+
guardrail_ids?: Array<string> | null;
|
|
581
559
|
step_rules?: Array<{
|
|
582
560
|
[key: string]: unknown;
|
|
583
561
|
}>;
|
|
@@ -643,7 +621,7 @@ type UpdateAgentRequest = {
|
|
|
643
621
|
*/
|
|
644
622
|
tool_bindings?: Array<ToolBinding> | null;
|
|
645
623
|
/**
|
|
646
|
-
* Deprecated shorthand — replaces only the reference (`tool_id`) bindings, rewriting them bare
|
|
624
|
+
* Deprecated shorthand — replaces only the reference (`tool_id`) bindings, rewriting them bare. Use `tool_bindings` instead.
|
|
647
625
|
*
|
|
648
626
|
* @deprecated
|
|
649
627
|
*/
|
|
@@ -663,6 +641,10 @@ type UpdateAgentRequest = {
|
|
|
663
641
|
[key: string]: unknown;
|
|
664
642
|
}> | null;
|
|
665
643
|
active_tool_ids?: Array<string> | null;
|
|
644
|
+
/**
|
|
645
|
+
* Guardrails attached at the agent scope.
|
|
646
|
+
*/
|
|
647
|
+
guardrail_ids?: Array<string> | null;
|
|
666
648
|
step_rules?: Array<{
|
|
667
649
|
[key: string]: unknown;
|
|
668
650
|
}> | null;
|
|
@@ -753,6 +735,12 @@ type CreateAgentGenerationRequest = {
|
|
|
753
735
|
* Logical action label recorded on the generation's usage meter, so spend can be rolled up per action (e.g. an A/B/C/D operating action).
|
|
754
736
|
*/
|
|
755
737
|
action_id?: string;
|
|
738
|
+
/**
|
|
739
|
+
* Caller-supplied guardrail context (the `context.*` namespace guard and class expressions read at tool-dispatch time). Free-form and never interpreted by the platform; a guardrail may combine it with a `context_tool` per its `context_mode`. See the guardrails module.
|
|
740
|
+
*/
|
|
741
|
+
guardrail_context?: {
|
|
742
|
+
[key: string]: unknown;
|
|
743
|
+
} | null;
|
|
756
744
|
/**
|
|
757
745
|
* Caller-supplied key/value metadata attached to the generation record for per-run audit attribution (e.g. the knowledge-corpus version that produced this action). Round-trips when the generation is fetched via the generations API. Reserved server-owned keys (`action_id`, `trigger_id`, `run_id`, `node_id`, `extraction`, and internal recovery state) cannot be set here and are rejected with 400.
|
|
758
746
|
*/
|
|
@@ -1650,7 +1638,7 @@ type AgentResourceProperties = {
|
|
|
1650
1638
|
*/
|
|
1651
1639
|
model?: string | null;
|
|
1652
1640
|
/**
|
|
1653
|
-
* Tools to attach, one binding object per tool: `{ tool_id
|
|
1641
|
+
* Tools to attach, one binding object per tool: `{ tool_id }`. Canonical form — cannot be combined with the deprecated `tool_ids`. Tool-call gating is owned by guardrails (attached via `guardrail_ids` on the project, agent, or tool), not by the binding. Inline `tool` entries are not supported in templates; declare a tool resource and reference it via `tool_id` (a `{ "ref": … }` to a tool resource in the same template resolves at deploy time).
|
|
1654
1642
|
*/
|
|
1655
1643
|
tool_bindings?: Array<{
|
|
1656
1644
|
[key: string]: unknown;
|
|
@@ -1686,6 +1674,10 @@ type AgentResourceProperties = {
|
|
|
1686
1674
|
* Subset of tool_ids that are active
|
|
1687
1675
|
*/
|
|
1688
1676
|
active_tool_ids?: Array<string> | null;
|
|
1677
|
+
/**
|
|
1678
|
+
* Guardrails attached at the agent scope.
|
|
1679
|
+
*/
|
|
1680
|
+
guardrail_ids?: Array<string> | null;
|
|
1689
1681
|
/**
|
|
1690
1682
|
* Per-step overrides applied during multi-step generation. Steps not covered by a rule use the agent defaults.
|
|
1691
1683
|
*/
|
|
@@ -1950,6 +1942,10 @@ type ToolResourceProperties = {
|
|
|
1950
1942
|
output_mapping?: {
|
|
1951
1943
|
[key: string]: unknown;
|
|
1952
1944
|
} | null;
|
|
1945
|
+
/**
|
|
1946
|
+
* Guardrails attached at the tool scope.
|
|
1947
|
+
*/
|
|
1948
|
+
guardrail_ids?: Array<string> | null;
|
|
1953
1949
|
};
|
|
1954
1950
|
/**
|
|
1955
1951
|
* Stores a text document in a project, optionally indexing it for knowledge retrieval.
|
|
@@ -2697,6 +2693,143 @@ type UpdateGenerationRequest = {
|
|
|
2697
2693
|
[key: string]: unknown;
|
|
2698
2694
|
};
|
|
2699
2695
|
};
|
|
2696
|
+
/**
|
|
2697
|
+
* The action-class document. `class` maps a call to an action class; `guard` gates class-B autonomy. Both are single JSON Logic expressions over the `args.*` / `context.*` / `soat.*` namespaces.
|
|
2698
|
+
*
|
|
2699
|
+
*/
|
|
2700
|
+
type GuardrailDocument = {
|
|
2701
|
+
/**
|
|
2702
|
+
* A class literal (`A` / `B` / `C` / `D`) or a JSON Logic expression returning one. An invalid result resolves to `default_class`.
|
|
2703
|
+
*
|
|
2704
|
+
*/
|
|
2705
|
+
class: 'A' | 'B' | 'C' | 'D' | {
|
|
2706
|
+
[key: string]: unknown;
|
|
2707
|
+
};
|
|
2708
|
+
/**
|
|
2709
|
+
* Applied when the `class` expression returns anything other than a valid class. Defaults to `C` (fail-closed).
|
|
2710
|
+
*
|
|
2711
|
+
*/
|
|
2712
|
+
default_class?: 'A' | 'B' | 'C' | 'D';
|
|
2713
|
+
/**
|
|
2714
|
+
* A single JSON Logic expression; when the call classifies as `B` it must evaluate truthy to execute autonomously. Compose multiple conditions with `{ "and": [...] }`.
|
|
2715
|
+
*
|
|
2716
|
+
*/
|
|
2717
|
+
guard?: {
|
|
2718
|
+
[key: string]: unknown;
|
|
2719
|
+
};
|
|
2720
|
+
/**
|
|
2721
|
+
* When `true`, a failing guard routes to approval instead of tripping fail-closed.
|
|
2722
|
+
*
|
|
2723
|
+
*/
|
|
2724
|
+
escalate?: boolean;
|
|
2725
|
+
[key: string]: unknown;
|
|
2726
|
+
};
|
|
2727
|
+
type Guardrail = {
|
|
2728
|
+
/**
|
|
2729
|
+
* Public ID of the guardrail
|
|
2730
|
+
*/
|
|
2731
|
+
id?: string;
|
|
2732
|
+
/**
|
|
2733
|
+
* Public ID of the owning project
|
|
2734
|
+
*/
|
|
2735
|
+
project_id?: string;
|
|
2736
|
+
/**
|
|
2737
|
+
* Human-readable name
|
|
2738
|
+
*/
|
|
2739
|
+
name?: string;
|
|
2740
|
+
/**
|
|
2741
|
+
* Optional description
|
|
2742
|
+
*/
|
|
2743
|
+
description?: string | null;
|
|
2744
|
+
/**
|
|
2745
|
+
* Incremented on every document write; prior versions are archived
|
|
2746
|
+
*/
|
|
2747
|
+
version?: number;
|
|
2748
|
+
document?: GuardrailDocument;
|
|
2749
|
+
/**
|
|
2750
|
+
* Optional tool the platform calls at evaluation time to fetch fresh guardrail context.
|
|
2751
|
+
*
|
|
2752
|
+
*/
|
|
2753
|
+
context_tool_id?: string | null;
|
|
2754
|
+
/**
|
|
2755
|
+
* How tool-fetched context combines with the caller-supplied context.
|
|
2756
|
+
*
|
|
2757
|
+
*/
|
|
2758
|
+
context_mode?: 'merge' | 'replace';
|
|
2759
|
+
created_at?: Date;
|
|
2760
|
+
updated_at?: Date;
|
|
2761
|
+
};
|
|
2762
|
+
/**
|
|
2763
|
+
* The record produced by evaluating a guardrail against one call — written to the audit trail at dispatch time (one per applying guardrail) and returned verbatim by the dry-run endpoint.
|
|
2764
|
+
*
|
|
2765
|
+
*/
|
|
2766
|
+
type GuardrailEvaluation = {
|
|
2767
|
+
/**
|
|
2768
|
+
* Always `guardrail_evaluation`.
|
|
2769
|
+
*/
|
|
2770
|
+
kind?: string;
|
|
2771
|
+
guardrail_id?: string;
|
|
2772
|
+
/**
|
|
2773
|
+
* The governing version; null for a dangling reference (fail-closed C).
|
|
2774
|
+
*/
|
|
2775
|
+
guardrail_version?: number | null;
|
|
2776
|
+
scope?: 'project' | 'agent' | 'tool';
|
|
2777
|
+
tool?: string | null;
|
|
2778
|
+
action?: string | null;
|
|
2779
|
+
/**
|
|
2780
|
+
* The resolved class (or the applied default_class).
|
|
2781
|
+
*/
|
|
2782
|
+
class?: 'A' | 'B' | 'C' | 'D';
|
|
2783
|
+
decision?: 'execute' | 'route_to_approval' | 'blocked' | 'tripwire';
|
|
2784
|
+
/**
|
|
2785
|
+
* The guard outcome; null when the call did not classify as B.
|
|
2786
|
+
*/
|
|
2787
|
+
guard_result?: boolean | null;
|
|
2788
|
+
context_source?: 'caller' | 'tool' | 'merged' | 'none';
|
|
2789
|
+
/**
|
|
2790
|
+
* Flat map of only the vars the class/guard expressions referenced, keyed by fully-qualified path, frozen at evaluation-time values.
|
|
2791
|
+
*
|
|
2792
|
+
*/
|
|
2793
|
+
context_snapshot?: {
|
|
2794
|
+
[key: string]: unknown;
|
|
2795
|
+
};
|
|
2796
|
+
agent_id?: string | null;
|
|
2797
|
+
run_id?: string | null;
|
|
2798
|
+
generation_id?: string | null;
|
|
2799
|
+
};
|
|
2800
|
+
type GuardrailVersion = {
|
|
2801
|
+
/**
|
|
2802
|
+
* Public ID of the guardrail this version belongs to
|
|
2803
|
+
*/
|
|
2804
|
+
guardrail_id?: string;
|
|
2805
|
+
/**
|
|
2806
|
+
* The archived version number
|
|
2807
|
+
*/
|
|
2808
|
+
version?: number;
|
|
2809
|
+
document?: GuardrailDocument;
|
|
2810
|
+
created_at?: Date;
|
|
2811
|
+
};
|
|
2812
|
+
type CreateGuardrailRequest = {
|
|
2813
|
+
/**
|
|
2814
|
+
* Public ID of the project
|
|
2815
|
+
*/
|
|
2816
|
+
project_id?: string;
|
|
2817
|
+
/**
|
|
2818
|
+
* Human-readable name
|
|
2819
|
+
*/
|
|
2820
|
+
name: string;
|
|
2821
|
+
description?: string | null;
|
|
2822
|
+
document: GuardrailDocument;
|
|
2823
|
+
context_tool_id?: string | null;
|
|
2824
|
+
context_mode?: 'merge' | 'replace';
|
|
2825
|
+
};
|
|
2826
|
+
type UpdateGuardrailRequest = {
|
|
2827
|
+
name?: string;
|
|
2828
|
+
description?: string | null;
|
|
2829
|
+
document?: GuardrailDocument;
|
|
2830
|
+
context_tool_id?: string | null;
|
|
2831
|
+
context_mode?: 'merge' | 'replace';
|
|
2832
|
+
};
|
|
2700
2833
|
type IngestionRule = {
|
|
2701
2834
|
id?: string;
|
|
2702
2835
|
project_id?: string;
|
|
@@ -3335,6 +3468,10 @@ type ProjectRecord = {
|
|
|
3335
3468
|
*/
|
|
3336
3469
|
id?: string;
|
|
3337
3470
|
name?: string;
|
|
3471
|
+
/**
|
|
3472
|
+
* Guardrails attached at the project scope — the baseline governing every tool call by every agent in the project.
|
|
3473
|
+
*/
|
|
3474
|
+
guardrail_ids?: Array<string> | null;
|
|
3338
3475
|
created_at?: Date;
|
|
3339
3476
|
updated_at?: Date;
|
|
3340
3477
|
};
|
|
@@ -3758,6 +3895,10 @@ type Tool = {
|
|
|
3758
3895
|
output_mapping?: {
|
|
3759
3896
|
[key: string]: unknown;
|
|
3760
3897
|
} | null;
|
|
3898
|
+
/**
|
|
3899
|
+
* Guardrails attached at the tool scope, governing this tool wherever it is used, by any agent.
|
|
3900
|
+
*/
|
|
3901
|
+
guardrail_ids?: Array<string> | null;
|
|
3761
3902
|
created_at?: Date;
|
|
3762
3903
|
updated_at?: Date;
|
|
3763
3904
|
};
|
|
@@ -3827,6 +3968,10 @@ type CreateToolRequest = {
|
|
|
3827
3968
|
output_mapping?: {
|
|
3828
3969
|
[key: string]: unknown;
|
|
3829
3970
|
};
|
|
3971
|
+
/**
|
|
3972
|
+
* Guardrails attached at the tool scope.
|
|
3973
|
+
*/
|
|
3974
|
+
guardrail_ids?: Array<string> | null;
|
|
3830
3975
|
};
|
|
3831
3976
|
type UpdateToolRequest = {
|
|
3832
3977
|
name?: string;
|
|
@@ -3875,6 +4020,10 @@ type UpdateToolRequest = {
|
|
|
3875
4020
|
output_mapping?: {
|
|
3876
4021
|
[key: string]: unknown;
|
|
3877
4022
|
} | null;
|
|
4023
|
+
/**
|
|
4024
|
+
* Guardrails attached at the tool scope.
|
|
4025
|
+
*/
|
|
4026
|
+
guardrail_ids?: Array<string> | null;
|
|
3878
4027
|
};
|
|
3879
4028
|
type CallToolRequest = {
|
|
3880
4029
|
/**
|
|
@@ -4492,7 +4641,7 @@ type WorkflowState = {
|
|
|
4492
4641
|
initial?: boolean;
|
|
4493
4642
|
terminal?: boolean;
|
|
4494
4643
|
/**
|
|
4495
|
-
*
|
|
4644
|
+
* `human` marks a human-in-the-loop parking state: the state never dispatches (declaring `on_enter` on it is rejected at validation) and the task parks until a principal fires a transition.
|
|
4496
4645
|
*/
|
|
4497
4646
|
kind?: string;
|
|
4498
4647
|
/**
|
|
@@ -8413,6 +8562,240 @@ type UpdateGenerationResponses = {
|
|
|
8413
8562
|
200: Generation;
|
|
8414
8563
|
};
|
|
8415
8564
|
type UpdateGenerationResponse = UpdateGenerationResponses[keyof UpdateGenerationResponses];
|
|
8565
|
+
type ListGuardrailsData = {
|
|
8566
|
+
body?: never;
|
|
8567
|
+
path?: never;
|
|
8568
|
+
query?: {
|
|
8569
|
+
/**
|
|
8570
|
+
* Project public ID to filter by
|
|
8571
|
+
*/
|
|
8572
|
+
project_id?: string;
|
|
8573
|
+
};
|
|
8574
|
+
url: '/api/v1/guardrails';
|
|
8575
|
+
};
|
|
8576
|
+
type ListGuardrailsErrors = {
|
|
8577
|
+
/**
|
|
8578
|
+
* Unauthorized
|
|
8579
|
+
*/
|
|
8580
|
+
401: ErrorResponse;
|
|
8581
|
+
/**
|
|
8582
|
+
* Forbidden
|
|
8583
|
+
*/
|
|
8584
|
+
403: ErrorResponse;
|
|
8585
|
+
};
|
|
8586
|
+
type ListGuardrailsError = ListGuardrailsErrors[keyof ListGuardrailsErrors];
|
|
8587
|
+
type ListGuardrailsResponses = {
|
|
8588
|
+
/**
|
|
8589
|
+
* List of guardrails
|
|
8590
|
+
*/
|
|
8591
|
+
200: Array<Guardrail>;
|
|
8592
|
+
};
|
|
8593
|
+
type ListGuardrailsResponse = ListGuardrailsResponses[keyof ListGuardrailsResponses];
|
|
8594
|
+
type CreateGuardrailData = {
|
|
8595
|
+
body: CreateGuardrailRequest;
|
|
8596
|
+
path?: never;
|
|
8597
|
+
query?: never;
|
|
8598
|
+
url: '/api/v1/guardrails';
|
|
8599
|
+
};
|
|
8600
|
+
type CreateGuardrailErrors = {
|
|
8601
|
+
/**
|
|
8602
|
+
* Bad Request — invalid document or variable reference
|
|
8603
|
+
*/
|
|
8604
|
+
400: ErrorResponse;
|
|
8605
|
+
/**
|
|
8606
|
+
* Unauthorized
|
|
8607
|
+
*/
|
|
8608
|
+
401: ErrorResponse;
|
|
8609
|
+
/**
|
|
8610
|
+
* Forbidden
|
|
8611
|
+
*/
|
|
8612
|
+
403: ErrorResponse;
|
|
8613
|
+
};
|
|
8614
|
+
type CreateGuardrailError = CreateGuardrailErrors[keyof CreateGuardrailErrors];
|
|
8615
|
+
type CreateGuardrailResponses = {
|
|
8616
|
+
/**
|
|
8617
|
+
* Guardrail created
|
|
8618
|
+
*/
|
|
8619
|
+
201: Guardrail;
|
|
8620
|
+
};
|
|
8621
|
+
type CreateGuardrailResponse = CreateGuardrailResponses[keyof CreateGuardrailResponses];
|
|
8622
|
+
type DeleteGuardrailData = {
|
|
8623
|
+
body?: never;
|
|
8624
|
+
path: {
|
|
8625
|
+
guardrail_id: string;
|
|
8626
|
+
};
|
|
8627
|
+
query?: never;
|
|
8628
|
+
url: '/api/v1/guardrails/{guardrail_id}';
|
|
8629
|
+
};
|
|
8630
|
+
type DeleteGuardrailErrors = {
|
|
8631
|
+
/**
|
|
8632
|
+
* Unauthorized
|
|
8633
|
+
*/
|
|
8634
|
+
401: ErrorResponse;
|
|
8635
|
+
/**
|
|
8636
|
+
* Forbidden
|
|
8637
|
+
*/
|
|
8638
|
+
403: ErrorResponse;
|
|
8639
|
+
/**
|
|
8640
|
+
* Not found
|
|
8641
|
+
*/
|
|
8642
|
+
404: ErrorResponse;
|
|
8643
|
+
};
|
|
8644
|
+
type DeleteGuardrailError = DeleteGuardrailErrors[keyof DeleteGuardrailErrors];
|
|
8645
|
+
type DeleteGuardrailResponses = {
|
|
8646
|
+
/**
|
|
8647
|
+
* Deleted
|
|
8648
|
+
*/
|
|
8649
|
+
204: void;
|
|
8650
|
+
};
|
|
8651
|
+
type DeleteGuardrailResponse = DeleteGuardrailResponses[keyof DeleteGuardrailResponses];
|
|
8652
|
+
type GetGuardrailData = {
|
|
8653
|
+
body?: never;
|
|
8654
|
+
path: {
|
|
8655
|
+
guardrail_id: string;
|
|
8656
|
+
};
|
|
8657
|
+
query?: never;
|
|
8658
|
+
url: '/api/v1/guardrails/{guardrail_id}';
|
|
8659
|
+
};
|
|
8660
|
+
type GetGuardrailErrors = {
|
|
8661
|
+
/**
|
|
8662
|
+
* Unauthorized
|
|
8663
|
+
*/
|
|
8664
|
+
401: ErrorResponse;
|
|
8665
|
+
/**
|
|
8666
|
+
* Forbidden
|
|
8667
|
+
*/
|
|
8668
|
+
403: ErrorResponse;
|
|
8669
|
+
/**
|
|
8670
|
+
* Not found
|
|
8671
|
+
*/
|
|
8672
|
+
404: ErrorResponse;
|
|
8673
|
+
};
|
|
8674
|
+
type GetGuardrailError = GetGuardrailErrors[keyof GetGuardrailErrors];
|
|
8675
|
+
type GetGuardrailResponses = {
|
|
8676
|
+
/**
|
|
8677
|
+
* Guardrail
|
|
8678
|
+
*/
|
|
8679
|
+
200: Guardrail;
|
|
8680
|
+
};
|
|
8681
|
+
type GetGuardrailResponse = GetGuardrailResponses[keyof GetGuardrailResponses];
|
|
8682
|
+
type UpdateGuardrailData = {
|
|
8683
|
+
body: UpdateGuardrailRequest;
|
|
8684
|
+
path: {
|
|
8685
|
+
guardrail_id: string;
|
|
8686
|
+
};
|
|
8687
|
+
query?: never;
|
|
8688
|
+
url: '/api/v1/guardrails/{guardrail_id}';
|
|
8689
|
+
};
|
|
8690
|
+
type UpdateGuardrailErrors = {
|
|
8691
|
+
/**
|
|
8692
|
+
* Bad Request — invalid document or variable reference
|
|
8693
|
+
*/
|
|
8694
|
+
400: ErrorResponse;
|
|
8695
|
+
/**
|
|
8696
|
+
* Unauthorized
|
|
8697
|
+
*/
|
|
8698
|
+
401: ErrorResponse;
|
|
8699
|
+
/**
|
|
8700
|
+
* Forbidden
|
|
8701
|
+
*/
|
|
8702
|
+
403: ErrorResponse;
|
|
8703
|
+
/**
|
|
8704
|
+
* Not found
|
|
8705
|
+
*/
|
|
8706
|
+
404: ErrorResponse;
|
|
8707
|
+
};
|
|
8708
|
+
type UpdateGuardrailError = UpdateGuardrailErrors[keyof UpdateGuardrailErrors];
|
|
8709
|
+
type UpdateGuardrailResponses = {
|
|
8710
|
+
/**
|
|
8711
|
+
* Guardrail updated
|
|
8712
|
+
*/
|
|
8713
|
+
200: Guardrail;
|
|
8714
|
+
};
|
|
8715
|
+
type UpdateGuardrailResponse = UpdateGuardrailResponses[keyof UpdateGuardrailResponses];
|
|
8716
|
+
type GetGuardrailVersionData = {
|
|
8717
|
+
body?: never;
|
|
8718
|
+
path: {
|
|
8719
|
+
guardrail_id: string;
|
|
8720
|
+
version: number;
|
|
8721
|
+
};
|
|
8722
|
+
query?: never;
|
|
8723
|
+
url: '/api/v1/guardrails/{guardrail_id}/versions/{version}';
|
|
8724
|
+
};
|
|
8725
|
+
type GetGuardrailVersionErrors = {
|
|
8726
|
+
/**
|
|
8727
|
+
* Bad Request — version is not a positive integer
|
|
8728
|
+
*/
|
|
8729
|
+
400: ErrorResponse;
|
|
8730
|
+
/**
|
|
8731
|
+
* Unauthorized
|
|
8732
|
+
*/
|
|
8733
|
+
401: ErrorResponse;
|
|
8734
|
+
/**
|
|
8735
|
+
* Forbidden
|
|
8736
|
+
*/
|
|
8737
|
+
403: ErrorResponse;
|
|
8738
|
+
/**
|
|
8739
|
+
* Not found
|
|
8740
|
+
*/
|
|
8741
|
+
404: ErrorResponse;
|
|
8742
|
+
};
|
|
8743
|
+
type GetGuardrailVersionError = GetGuardrailVersionErrors[keyof GetGuardrailVersionErrors];
|
|
8744
|
+
type GetGuardrailVersionResponses = {
|
|
8745
|
+
/**
|
|
8746
|
+
* Archived guardrail version
|
|
8747
|
+
*/
|
|
8748
|
+
200: GuardrailVersion;
|
|
8749
|
+
};
|
|
8750
|
+
type GetGuardrailVersionResponse = GetGuardrailVersionResponses[keyof GetGuardrailVersionResponses];
|
|
8751
|
+
type EvaluateGuardrailData = {
|
|
8752
|
+
body?: {
|
|
8753
|
+
/**
|
|
8754
|
+
* The proposed call's arguments (the `args.*` namespace).
|
|
8755
|
+
*/
|
|
8756
|
+
args?: {
|
|
8757
|
+
[key: string]: unknown;
|
|
8758
|
+
};
|
|
8759
|
+
/**
|
|
8760
|
+
* The caller-supplied guardrail context (the `context.*` namespace), combined with the context tool per `context_mode`.
|
|
8761
|
+
*
|
|
8762
|
+
*/
|
|
8763
|
+
guardrail_context?: {
|
|
8764
|
+
[key: string]: unknown;
|
|
8765
|
+
};
|
|
8766
|
+
/**
|
|
8767
|
+
* Optional tool to resolve `soat.tool.*` against.
|
|
8768
|
+
*/
|
|
8769
|
+
tool_id?: string;
|
|
8770
|
+
};
|
|
8771
|
+
path: {
|
|
8772
|
+
guardrail_id: string;
|
|
8773
|
+
};
|
|
8774
|
+
query?: never;
|
|
8775
|
+
url: '/api/v1/guardrails/{guardrail_id}/evaluate';
|
|
8776
|
+
};
|
|
8777
|
+
type EvaluateGuardrailErrors = {
|
|
8778
|
+
/**
|
|
8779
|
+
* Unauthorized
|
|
8780
|
+
*/
|
|
8781
|
+
401: ErrorResponse;
|
|
8782
|
+
/**
|
|
8783
|
+
* Forbidden
|
|
8784
|
+
*/
|
|
8785
|
+
403: ErrorResponse;
|
|
8786
|
+
/**
|
|
8787
|
+
* Not found
|
|
8788
|
+
*/
|
|
8789
|
+
404: ErrorResponse;
|
|
8790
|
+
};
|
|
8791
|
+
type EvaluateGuardrailError = EvaluateGuardrailErrors[keyof EvaluateGuardrailErrors];
|
|
8792
|
+
type EvaluateGuardrailResponses = {
|
|
8793
|
+
/**
|
|
8794
|
+
* The would-be evaluation record (nothing executed)
|
|
8795
|
+
*/
|
|
8796
|
+
200: GuardrailEvaluation;
|
|
8797
|
+
};
|
|
8798
|
+
type EvaluateGuardrailResponse = EvaluateGuardrailResponses[keyof EvaluateGuardrailResponses];
|
|
8416
8799
|
type ListIngestionRulesData = {
|
|
8417
8800
|
body?: never;
|
|
8418
8801
|
path?: never;
|
|
@@ -9812,7 +10195,11 @@ type GetProjectResponses = {
|
|
|
9812
10195
|
type GetProjectResponse = GetProjectResponses[keyof GetProjectResponses];
|
|
9813
10196
|
type UpdateProjectData = {
|
|
9814
10197
|
body: {
|
|
9815
|
-
name
|
|
10198
|
+
name?: string;
|
|
10199
|
+
/**
|
|
10200
|
+
* Guardrails attached at the project scope.
|
|
10201
|
+
*/
|
|
10202
|
+
guardrail_ids?: Array<string> | null;
|
|
9816
10203
|
};
|
|
9817
10204
|
path: {
|
|
9818
10205
|
/**
|
|
@@ -12978,6 +13365,54 @@ declare class Generations {
|
|
|
12978
13365
|
*/
|
|
12979
13366
|
static updateGeneration<ThrowOnError extends boolean = false>(options: Options<UpdateGenerationData, ThrowOnError>): RequestResult<UpdateGenerationResponses, UpdateGenerationErrors, ThrowOnError>;
|
|
12980
13367
|
}
|
|
13368
|
+
declare class Guardrails {
|
|
13369
|
+
/**
|
|
13370
|
+
* List guardrails
|
|
13371
|
+
*
|
|
13372
|
+
* Returns all guardrails in the project.
|
|
13373
|
+
*/
|
|
13374
|
+
static listGuardrails<ThrowOnError extends boolean = false>(options?: Options<ListGuardrailsData, ThrowOnError>): RequestResult<ListGuardrailsResponses, ListGuardrailsErrors, ThrowOnError>;
|
|
13375
|
+
/**
|
|
13376
|
+
* Create a guardrail
|
|
13377
|
+
*
|
|
13378
|
+
* Creates a new guardrail in the project. The `document` is validated on write: `class` must be a literal (A/B/C/D) or a JSON Logic expression, and every variable it (and `guard`) reference must resolve to the `args.*` / `context.*` / `soat.*` namespaces — an out-of-catalog `soat.*` key is rejected with 400.
|
|
13379
|
+
*
|
|
13380
|
+
*/
|
|
13381
|
+
static createGuardrail<ThrowOnError extends boolean = false>(options: Options<CreateGuardrailData, ThrowOnError>): RequestResult<CreateGuardrailResponses, CreateGuardrailErrors, ThrowOnError>;
|
|
13382
|
+
/**
|
|
13383
|
+
* Delete a guardrail
|
|
13384
|
+
*
|
|
13385
|
+
* Deletes a guardrail and its archived versions by ID.
|
|
13386
|
+
*/
|
|
13387
|
+
static deleteGuardrail<ThrowOnError extends boolean = false>(options: Options<DeleteGuardrailData, ThrowOnError>): RequestResult<DeleteGuardrailResponses, DeleteGuardrailErrors, ThrowOnError>;
|
|
13388
|
+
/**
|
|
13389
|
+
* Get a guardrail
|
|
13390
|
+
*
|
|
13391
|
+
* Returns a single guardrail by ID.
|
|
13392
|
+
*/
|
|
13393
|
+
static getGuardrail<ThrowOnError extends boolean = false>(options: Options<GetGuardrailData, ThrowOnError>): RequestResult<GetGuardrailResponses, GetGuardrailErrors, ThrowOnError>;
|
|
13394
|
+
/**
|
|
13395
|
+
* Update a guardrail
|
|
13396
|
+
*
|
|
13397
|
+
* Updates an existing guardrail. A `document` write increments `version` and archives the prior document as a GuardrailVersion; metadata-only edits (name / description / context) leave the version untouched.
|
|
13398
|
+
*
|
|
13399
|
+
*/
|
|
13400
|
+
static updateGuardrail<ThrowOnError extends boolean = false>(options: Options<UpdateGuardrailData, ThrowOnError>): RequestResult<UpdateGuardrailResponses, UpdateGuardrailErrors, ThrowOnError>;
|
|
13401
|
+
/**
|
|
13402
|
+
* Fetch an archived guardrail version
|
|
13403
|
+
*
|
|
13404
|
+
* Returns the exact `document` that governed at a given version. Approval items, activity entries, and exceptions record the version that governed them, so the audit chain survives edits.
|
|
13405
|
+
*
|
|
13406
|
+
*/
|
|
13407
|
+
static getGuardrailVersion<ThrowOnError extends boolean = false>(options: Options<GetGuardrailVersionData, ThrowOnError>): RequestResult<GetGuardrailVersionResponses, GetGuardrailVersionErrors, ThrowOnError>;
|
|
13408
|
+
/**
|
|
13409
|
+
* Dry-run evaluate a guardrail
|
|
13410
|
+
*
|
|
13411
|
+
* Runs the full evaluation pipeline — the `class` expression, the guard, the context tool per `context_mode`, live `soat.*` resolution — against caller-supplied `args` and `guardrail_context`, and returns the exact `guardrail_evaluation` record a real call would produce. Nothing executes, no approval item is filed, and no activity entry is written. This is the adoption path: preview a document's decisions against production-shaped calls before attaching it — or before editing a widely-attached one. Pass an optional `tool_id` to resolve `soat.tool.*`.
|
|
13412
|
+
*
|
|
13413
|
+
*/
|
|
13414
|
+
static evaluateGuardrail<ThrowOnError extends boolean = false>(options: Options<EvaluateGuardrailData, ThrowOnError>): RequestResult<EvaluateGuardrailResponses, EvaluateGuardrailErrors, ThrowOnError>;
|
|
13415
|
+
}
|
|
12981
13416
|
declare class IngestionRules {
|
|
12982
13417
|
/**
|
|
12983
13418
|
* List ingestion rules
|
|
@@ -13218,9 +13653,9 @@ declare class Projects {
|
|
|
13218
13653
|
*/
|
|
13219
13654
|
static getProject<ThrowOnError extends boolean = false>(options: Options<GetProjectData, ThrowOnError>): RequestResult<GetProjectResponses, GetProjectErrors, ThrowOnError>;
|
|
13220
13655
|
/**
|
|
13221
|
-
*
|
|
13656
|
+
* Update a project
|
|
13222
13657
|
*
|
|
13223
|
-
* Updates a project's name. Requires admin role.
|
|
13658
|
+
* Updates a project's name and/or its attached guardrails (`guardrail_ids` — the project-scope baseline governing every tool call by every agent in the project). Requires admin role. Detaching a guardrail (removing an id) additionally requires guardrails:DetachGuardrail.
|
|
13224
13659
|
*/
|
|
13225
13660
|
static updateProject<ThrowOnError extends boolean = false>(options: Options<UpdateProjectData, ThrowOnError>): RequestResult<UpdateProjectResponses, UpdateProjectErrors, ThrowOnError>;
|
|
13226
13661
|
/**
|
|
@@ -13776,4 +14211,4 @@ declare class SoatClient {
|
|
|
13776
14211
|
constructor({ baseUrl, token, headers }?: SoatClientOptions);
|
|
13777
14212
|
}
|
|
13778
14213
|
//#endregion
|
|
13779
|
-
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 ApprovalId, type ApprovalItem, Approvals, type ApproveApprovalData, type ApproveApprovalErrors, type ApproveApprovalResponse, type ApproveApprovalResponses, 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 CreateTaskData, type CreateTaskErrors, type CreateTaskRequest, type CreateTaskResponse, type CreateTaskResponses, type CreateToolData, type CreateToolError, type CreateToolErrors, type CreateToolRequest, type CreateToolResponse, type CreateToolResponses, type CreateTriggerData, type CreateTriggerErrors, type CreateTriggerRequest, type CreateTriggerResponse, type CreateTriggerResponses, type CreateUsageThresholdData, type CreateUsageThresholdError, type CreateUsageThresholdErrors, type CreateUsageThresholdRequest, type CreateUsageThresholdResponse, type CreateUsageThresholdResponses, type CreateUserData, type CreateUserError, type CreateUserErrors, type CreateUserResponse, type CreateUserResponses, type CreateWebhookData, type CreateWebhookErrors, type CreateWebhookRequest, type CreateWebhookResponse, type CreateWebhookResponses, type CreateWorkflowData, type CreateWorkflowErrors, type CreateWorkflowRequest, type CreateWorkflowResponse, type CreateWorkflowResponses, 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 DeleteAiProviderResponse, 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 DeleteTaskData, type DeleteTaskErrors, type DeleteTaskResponse, type DeleteTaskResponses, type DeleteToolData, type DeleteToolError, type DeleteToolErrors, type DeleteToolResponse, type DeleteToolResponses, type DeleteTriggerData, type DeleteTriggerErrors, type DeleteTriggerResponse, type DeleteTriggerResponses, type DeleteUsageThresholdData, type DeleteUsageThresholdError, type DeleteUsageThresholdErrors, type DeleteUsageThresholdResponse, type DeleteUsageThresholdResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserResponse, type DeleteUserResponses, type DeleteWebhookData, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type DeleteWorkflowData, type DeleteWorkflowErrors, type DeleteWorkflowResponse, type DeleteWorkflowResponses, 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 FireTriggerData, type FireTriggerErrors, type FireTriggerRequest, type FireTriggerResponse, type FireTriggerResponses, 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 GetAiProviderPricesData, type GetAiProviderPricesErrors, type GetAiProviderPricesResponse, type GetAiProviderPricesResponses, type GetAiProviderResponse, type GetAiProviderResponses, type GetApiKeyData, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetApprovalData, type GetApprovalErrors, type GetApprovalResponse, type GetApprovalResponses, 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 GetPriceBookData, type GetPriceBookError, type GetPriceBookErrors, type GetPriceBookResponse, type GetPriceBookResponses, type GetProjectData, type GetProjectErrors, type GetProjectPricesData, type GetProjectPricesErrors, type GetProjectPricesResponse, type GetProjectPricesResponses, 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 GetTaskData, type GetTaskErrors, type GetTaskHistoryData, type GetTaskHistoryErrors, type GetTaskHistoryResponse, type GetTaskHistoryResponses, type GetTaskResponse, type GetTaskResponses, 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 GetTriggerData, type GetTriggerErrors, type GetTriggerFiringData, type GetTriggerFiringErrors, type GetTriggerFiringResponse, type GetTriggerFiringResponses, type GetTriggerResponse, type GetTriggerResponses, type GetTriggerSecretData, type GetTriggerSecretErrors, type GetTriggerSecretResponse, type GetTriggerSecretResponses, type GetUsageData, type GetUsageError, type GetUsageErrors, type GetUsageReceiptData, type GetUsageReceiptError, type GetUsageReceiptErrors, type GetUsageReceiptResponse, type GetUsageReceiptResponses, type GetUsageResponse, type GetUsageResponses, 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 GetWorkflowData, type GetWorkflowErrors, type GetWorkflowResponse, type GetWorkflowResponses, 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 ListApprovalsData, type ListApprovalsErrors, type ListApprovalsResponse, type ListApprovalsResponses, 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 ListTasksData, type ListTasksErrors, type ListTasksResponse, type ListTasksResponses, type ListToolsData, type ListToolsError, type ListToolsErrors, type ListToolsResponse, type ListToolsResponses, type ListTracesData, type ListTracesError, type ListTracesErrors, type ListTracesResponse, type ListTracesResponses, type ListTriggerFiringsData, type ListTriggerFiringsErrors, type ListTriggerFiringsResponse, type ListTriggerFiringsResponses, type ListTriggersData, type ListTriggersErrors, type ListTriggersResponse, type ListTriggersResponses, type ListUsageMetersData, type ListUsageMetersError, type ListUsageMetersErrors, type ListUsageMetersResponse, type ListUsageMetersResponses, type ListUsageThresholdsData, type ListUsageThresholdsError, type ListUsageThresholdsErrors, type ListUsageThresholdsResponse, type ListUsageThresholdsResponses, 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 ListWorkflowsData, type ListWorkflowsErrors, type ListWorkflowsResponse, type ListWorkflowsResponses, 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 Price, type PriceBookResponse, type ProjectPrice, type ProjectPriceResourceProperties, type ProjectPricesResponse, type ProjectRecord, Projects, type ProviderPrice, type ProviderPricesResponse, type ReingestDocumentData, type ReingestDocumentError, type ReingestDocumentErrors, type ReingestDocumentResponse, type ReingestDocumentResponses, type RejectApprovalData, type RejectApprovalErrors, type RejectApprovalResponse, type RejectApprovalResponses, 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 RotateTriggerSecretData, type RotateTriggerSecretErrors, type RotateTriggerSecretResponse, type RotateTriggerSecretResponses, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type RunId, type RunUsageTotals, 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 Task, type TaskTransition, Tasks, type Tool, type ToolApprovalPolicy, type ToolBinding, type ToolOutputMessageContent, type ToolResourceProperties, Tools, type Trace, type TraceTreeNode, Traces, type TransitionTaskData, type TransitionTaskErrors, type TransitionTaskRequest, type TransitionTaskResponse, type TransitionTaskResponses, type Trigger, type TriggerFiring, type TriggerFiringListResponse, type TriggerResourceProperties, type TriggerSecretResponse, type TriggerWithSecret, Triggers, 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 UpdateAiProviderPricesData, type UpdateAiProviderPricesErrors, type UpdateAiProviderPricesResponse, type UpdateAiProviderPricesResponses, 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 UpdateGenerationData, type UpdateGenerationError, type UpdateGenerationErrors, type UpdateGenerationRequest, type UpdateGenerationResponse, type UpdateGenerationResponses, 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 UpdateProjectPricesData, type UpdateProjectPricesErrors, type UpdateProjectPricesResponse, type UpdateProjectPricesResponses, type UpdateProjectResponse, type UpdateProjectResponses, type UpdateSecretData, type UpdateSecretErrors, type UpdateSecretResponses, type UpdateSessionData, type UpdateSessionError, type UpdateSessionErrors, type UpdateSessionRequest, type UpdateSessionResponse, type UpdateSessionResponses, type UpdateTaskData, type UpdateTaskErrors, type UpdateTaskRequest, type UpdateTaskResponse, type UpdateTaskResponses, type UpdateToolData, type UpdateToolError, type UpdateToolErrors, type UpdateToolRequest, type UpdateToolResponse, type UpdateToolResponses, type UpdateTriggerData, type UpdateTriggerErrors, type UpdateTriggerRequest, type UpdateTriggerResponse, type UpdateTriggerResponses, type UpdateWebhookData, type UpdateWebhookErrors, type UpdateWebhookRequest, type UpdateWebhookResponse, type UpdateWebhookResponses, type UpdateWorkflowData, type UpdateWorkflowErrors, type UpdateWorkflowRequest, type UpdateWorkflowResponse, type UpdateWorkflowResponses, 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 UpsertPriceBookData, type UpsertPriceBookError, type UpsertPriceBookErrors, type UpsertPriceBookResponse, type UpsertPriceBookResponses, type UpsertPricesRequest, type UpsertProjectPricesRequest, type UpsertProviderPricesRequest, Usage, type UsageAggregate, type UsageAggregateTotals, type UsageComponent, type UsageEvent, type UsageReceipt, type UsageThreshold, 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, type Workflow, type WorkflowResourceProperties, type WorkflowState, type WorkflowTransition, Workflows, createClient, createConfig };
|
|
14214
|
+
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 ApprovalId, type ApprovalItem, Approvals, type ApproveApprovalData, type ApproveApprovalErrors, type ApproveApprovalResponse, type ApproveApprovalResponses, 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 CreateGuardrailData, type CreateGuardrailError, type CreateGuardrailErrors, type CreateGuardrailRequest, type CreateGuardrailResponse, type CreateGuardrailResponses, 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 CreateTaskData, type CreateTaskErrors, type CreateTaskRequest, type CreateTaskResponse, type CreateTaskResponses, type CreateToolData, type CreateToolError, type CreateToolErrors, type CreateToolRequest, type CreateToolResponse, type CreateToolResponses, type CreateTriggerData, type CreateTriggerErrors, type CreateTriggerRequest, type CreateTriggerResponse, type CreateTriggerResponses, type CreateUsageThresholdData, type CreateUsageThresholdError, type CreateUsageThresholdErrors, type CreateUsageThresholdRequest, type CreateUsageThresholdResponse, type CreateUsageThresholdResponses, type CreateUserData, type CreateUserError, type CreateUserErrors, type CreateUserResponse, type CreateUserResponses, type CreateWebhookData, type CreateWebhookErrors, type CreateWebhookRequest, type CreateWebhookResponse, type CreateWebhookResponses, type CreateWorkflowData, type CreateWorkflowErrors, type CreateWorkflowRequest, type CreateWorkflowResponse, type CreateWorkflowResponses, 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 DeleteAiProviderResponse, 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 DeleteGuardrailData, type DeleteGuardrailError, type DeleteGuardrailErrors, type DeleteGuardrailResponse, type DeleteGuardrailResponses, 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 DeleteTaskData, type DeleteTaskErrors, type DeleteTaskResponse, type DeleteTaskResponses, type DeleteToolData, type DeleteToolError, type DeleteToolErrors, type DeleteToolResponse, type DeleteToolResponses, type DeleteTriggerData, type DeleteTriggerErrors, type DeleteTriggerResponse, type DeleteTriggerResponses, type DeleteUsageThresholdData, type DeleteUsageThresholdError, type DeleteUsageThresholdErrors, type DeleteUsageThresholdResponse, type DeleteUsageThresholdResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserResponse, type DeleteUserResponses, type DeleteWebhookData, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type DeleteWorkflowData, type DeleteWorkflowErrors, type DeleteWorkflowResponse, type DeleteWorkflowResponses, 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 EvaluateGuardrailData, type EvaluateGuardrailError, type EvaluateGuardrailErrors, type EvaluateGuardrailResponse, type EvaluateGuardrailResponses, type FileRecord, type FileRecordWritable, type FileResourceProperties, Files, type FireTriggerData, type FireTriggerErrors, type FireTriggerRequest, type FireTriggerResponse, type FireTriggerResponses, 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 GetAiProviderPricesData, type GetAiProviderPricesErrors, type GetAiProviderPricesResponse, type GetAiProviderPricesResponses, type GetAiProviderResponse, type GetAiProviderResponses, type GetApiKeyData, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetApprovalData, type GetApprovalErrors, type GetApprovalResponse, type GetApprovalResponses, 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 GetGuardrailData, type GetGuardrailError, type GetGuardrailErrors, type GetGuardrailResponse, type GetGuardrailResponses, type GetGuardrailVersionData, type GetGuardrailVersionError, type GetGuardrailVersionErrors, type GetGuardrailVersionResponse, type GetGuardrailVersionResponses, 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 GetPriceBookData, type GetPriceBookError, type GetPriceBookErrors, type GetPriceBookResponse, type GetPriceBookResponses, type GetProjectData, type GetProjectErrors, type GetProjectPricesData, type GetProjectPricesErrors, type GetProjectPricesResponse, type GetProjectPricesResponses, 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 GetTaskData, type GetTaskErrors, type GetTaskHistoryData, type GetTaskHistoryErrors, type GetTaskHistoryResponse, type GetTaskHistoryResponses, type GetTaskResponse, type GetTaskResponses, 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 GetTriggerData, type GetTriggerErrors, type GetTriggerFiringData, type GetTriggerFiringErrors, type GetTriggerFiringResponse, type GetTriggerFiringResponses, type GetTriggerResponse, type GetTriggerResponses, type GetTriggerSecretData, type GetTriggerSecretErrors, type GetTriggerSecretResponse, type GetTriggerSecretResponses, type GetUsageData, type GetUsageError, type GetUsageErrors, type GetUsageReceiptData, type GetUsageReceiptError, type GetUsageReceiptErrors, type GetUsageReceiptResponse, type GetUsageReceiptResponses, type GetUsageResponse, type GetUsageResponses, 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 GetWorkflowData, type GetWorkflowErrors, type GetWorkflowResponse, type GetWorkflowResponses, type Guardrail, type GuardrailDocument, type GuardrailEvaluation, type GuardrailVersion, Guardrails, 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 ListApprovalsData, type ListApprovalsErrors, type ListApprovalsResponse, type ListApprovalsResponses, 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 ListGuardrailsData, type ListGuardrailsError, type ListGuardrailsErrors, type ListGuardrailsResponse, type ListGuardrailsResponses, 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 ListTasksData, type ListTasksErrors, type ListTasksResponse, type ListTasksResponses, type ListToolsData, type ListToolsError, type ListToolsErrors, type ListToolsResponse, type ListToolsResponses, type ListTracesData, type ListTracesError, type ListTracesErrors, type ListTracesResponse, type ListTracesResponses, type ListTriggerFiringsData, type ListTriggerFiringsErrors, type ListTriggerFiringsResponse, type ListTriggerFiringsResponses, type ListTriggersData, type ListTriggersErrors, type ListTriggersResponse, type ListTriggersResponses, type ListUsageMetersData, type ListUsageMetersError, type ListUsageMetersErrors, type ListUsageMetersResponse, type ListUsageMetersResponses, type ListUsageThresholdsData, type ListUsageThresholdsError, type ListUsageThresholdsErrors, type ListUsageThresholdsResponse, type ListUsageThresholdsResponses, 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 ListWorkflowsData, type ListWorkflowsErrors, type ListWorkflowsResponse, type ListWorkflowsResponses, 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 Price, type PriceBookResponse, type ProjectPrice, type ProjectPriceResourceProperties, type ProjectPricesResponse, type ProjectRecord, Projects, type ProviderPrice, type ProviderPricesResponse, type ReingestDocumentData, type ReingestDocumentError, type ReingestDocumentErrors, type ReingestDocumentResponse, type ReingestDocumentResponses, type RejectApprovalData, type RejectApprovalErrors, type RejectApprovalResponse, type RejectApprovalResponses, 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 RotateTriggerSecretData, type RotateTriggerSecretErrors, type RotateTriggerSecretResponse, type RotateTriggerSecretResponses, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type RunId, type RunUsageTotals, 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 Task, type TaskTransition, Tasks, type Tool, type ToolBinding, type ToolOutputMessageContent, type ToolResourceProperties, Tools, type Trace, type TraceTreeNode, Traces, type TransitionTaskData, type TransitionTaskErrors, type TransitionTaskRequest, type TransitionTaskResponse, type TransitionTaskResponses, type Trigger, type TriggerFiring, type TriggerFiringListResponse, type TriggerResourceProperties, type TriggerSecretResponse, type TriggerWithSecret, Triggers, 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 UpdateAiProviderPricesData, type UpdateAiProviderPricesErrors, type UpdateAiProviderPricesResponse, type UpdateAiProviderPricesResponses, 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 UpdateGenerationData, type UpdateGenerationError, type UpdateGenerationErrors, type UpdateGenerationRequest, type UpdateGenerationResponse, type UpdateGenerationResponses, type UpdateGuardrailData, type UpdateGuardrailError, type UpdateGuardrailErrors, type UpdateGuardrailRequest, type UpdateGuardrailResponse, type UpdateGuardrailResponses, 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 UpdateProjectPricesData, type UpdateProjectPricesErrors, type UpdateProjectPricesResponse, type UpdateProjectPricesResponses, type UpdateProjectResponse, type UpdateProjectResponses, type UpdateSecretData, type UpdateSecretErrors, type UpdateSecretResponses, type UpdateSessionData, type UpdateSessionError, type UpdateSessionErrors, type UpdateSessionRequest, type UpdateSessionResponse, type UpdateSessionResponses, type UpdateTaskData, type UpdateTaskErrors, type UpdateTaskRequest, type UpdateTaskResponse, type UpdateTaskResponses, type UpdateToolData, type UpdateToolError, type UpdateToolErrors, type UpdateToolRequest, type UpdateToolResponse, type UpdateToolResponses, type UpdateTriggerData, type UpdateTriggerErrors, type UpdateTriggerRequest, type UpdateTriggerResponse, type UpdateTriggerResponses, type UpdateWebhookData, type UpdateWebhookErrors, type UpdateWebhookRequest, type UpdateWebhookResponse, type UpdateWebhookResponses, type UpdateWorkflowData, type UpdateWorkflowErrors, type UpdateWorkflowRequest, type UpdateWorkflowResponse, type UpdateWorkflowResponses, 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 UpsertPriceBookData, type UpsertPriceBookError, type UpsertPriceBookErrors, type UpsertPriceBookResponse, type UpsertPriceBookResponses, type UpsertPricesRequest, type UpsertProjectPricesRequest, type UpsertProviderPricesRequest, Usage, type UsageAggregate, type UsageAggregateTotals, type UsageComponent, type UsageEvent, type UsageReceipt, type UsageThreshold, 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, type Workflow, type WorkflowResourceProperties, type WorkflowState, type WorkflowTransition, Workflows, createClient, createConfig };
|