@soat/sdk 0.23.0 → 0.25.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/LICENSE +201 -21
- package/dist/index.cjs +76 -6
- package/dist/index.d.cts +516 -58
- package/dist/index.d.mts +516 -58
- package/dist/index.mjs +76 -6
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -392,10 +392,6 @@ type ActorRecord = {
|
|
|
392
392
|
* Chat this actor is linked to (mutually exclusive with agentId).
|
|
393
393
|
*/
|
|
394
394
|
chat_id?: string | null;
|
|
395
|
-
/**
|
|
396
|
-
* Memory container linked to this actor.
|
|
397
|
-
*/
|
|
398
|
-
memory_id?: string | null;
|
|
399
395
|
tags?: {
|
|
400
396
|
[key: string]: string;
|
|
401
397
|
};
|
|
@@ -850,7 +846,7 @@ type CreateAgentGenerationRequest = {
|
|
|
850
846
|
*/
|
|
851
847
|
stream?: boolean;
|
|
852
848
|
/**
|
|
853
|
-
* Optional trace ID to group generations
|
|
849
|
+
* Optional trace ID to group generations. Each generation appends its own steps to the trace's steps object, and `step_count` covers them all.
|
|
854
850
|
*/
|
|
855
851
|
trace_id?: string;
|
|
856
852
|
/**
|
|
@@ -1573,6 +1569,10 @@ type DocumentRecord = {
|
|
|
1573
1569
|
* Original filename
|
|
1574
1570
|
*/
|
|
1575
1571
|
filename?: string;
|
|
1572
|
+
/**
|
|
1573
|
+
* Media type of the source file the document was ingested from. Absent when the underlying file is gone.
|
|
1574
|
+
*/
|
|
1575
|
+
content_type?: string;
|
|
1576
1576
|
/**
|
|
1577
1577
|
* File size in bytes
|
|
1578
1578
|
*/
|
|
@@ -1665,8 +1665,10 @@ type DatasetItemInput = Array<{
|
|
|
1665
1665
|
* `exact_match` compares the trimmed output text to `expected_output`. `contains` looks for `value` in the output text. `json_logic` evaluates `expression` over `{ input, output, object, expected, item.metadata }`, where `object` is the structured output (absent when the agent has no `output_schema`). `output_schema` validates the structured output against the scorer's own `schema`, falling back to the agent's; it requires the agent to carry an `output_schema`, because without one the platform emits no structured output and every item would score 0.
|
|
1666
1666
|
*
|
|
1667
1667
|
* `llm_judge` grades the output with a model completion, returning a continuous score plus its `reasoning`. Its `pass_threshold` is required: a continuous score says nothing about where "good enough" is, and a defaulted cutoff would silently decide the gate.
|
|
1668
|
+
*
|
|
1669
|
+
* `tool` runs a custom scoring algorithm: a server-callable project tool the engine invokes once per item with the item's context. Unlike the built-in types it may appear several times, each under a distinct `name` — outcomes and aggregates key on the name.
|
|
1668
1670
|
*/
|
|
1669
|
-
type Scorers = Array<ExactMatchScorer | ContainsScorer | JsonLogicScorer | OutputSchemaScorer | LlmJudgeScorer>;
|
|
1671
|
+
type Scorers = Array<ExactMatchScorer | ContainsScorer | JsonLogicScorer | OutputSchemaScorer | LlmJudgeScorer | ToolScorer>;
|
|
1670
1672
|
type ExactMatchScorer = {
|
|
1671
1673
|
type: 'exact_match';
|
|
1672
1674
|
};
|
|
@@ -1712,15 +1714,43 @@ type LlmJudgeScorer = {
|
|
|
1712
1714
|
*/
|
|
1713
1715
|
model?: string | null;
|
|
1714
1716
|
};
|
|
1717
|
+
/**
|
|
1718
|
+
* A custom scoring algorithm — a server-callable project tool the engine invokes once per item. The tool receives the same variables a `json_logic` expression reads — `input`, `output`, `object` (when the agent has an `output_schema`), `expected`, and `item.metadata` — with `preset_parameters` merged in at the top level, and must answer with a JSON object carrying a numeric `score` between 0 and 1, an optional boolean `passed`, and an optional `reasoning` string. A malformed answer or a failed call marks the **item** errored, never the run failed and never a score of 0.
|
|
1719
|
+
*/
|
|
1720
|
+
type ToolScorer = {
|
|
1721
|
+
type: 'tool';
|
|
1722
|
+
/**
|
|
1723
|
+
* Keys this scorer's outcomes and aggregate scores, so it must be unique within the eval and must not shadow a built-in scorer type. Unlike the built-in types, several `tool` scorers may coexist under distinct names.
|
|
1724
|
+
*/
|
|
1725
|
+
name: string;
|
|
1726
|
+
/**
|
|
1727
|
+
* The tool that scores each item. It must belong to the eval's project and be server-callable (`http`, `mcp`, `soat`, or `pipeline` — a `client` tool pauses for a calling client an eval run does not have).
|
|
1728
|
+
*/
|
|
1729
|
+
tool_id: string;
|
|
1730
|
+
/**
|
|
1731
|
+
* The operation to invoke; required when the tool type is `soat` or `mcp`.
|
|
1732
|
+
*/
|
|
1733
|
+
action?: string | null;
|
|
1734
|
+
/**
|
|
1735
|
+
* Fixed values merged into every call's input at the top level. The engine-injected keys (`input`, `output`, `object`, `expected`, `item`) are reserved and rejected.
|
|
1736
|
+
*/
|
|
1737
|
+
preset_parameters?: {
|
|
1738
|
+
[key: string]: unknown;
|
|
1739
|
+
} | null;
|
|
1740
|
+
/**
|
|
1741
|
+
* Fallback verdict cutoff when the tool answers without a `passed` flag: the item passes this scorer when `score` is greater than or equal to this value. A tool-returned `passed` always wins. When the tool omits `passed` and no threshold is set, the item is recorded as errored — the scorer produced no verdict.
|
|
1742
|
+
*/
|
|
1743
|
+
pass_threshold?: number | null;
|
|
1744
|
+
};
|
|
1715
1745
|
type ScorerResult = {
|
|
1716
1746
|
/**
|
|
1717
|
-
* The scorer
|
|
1747
|
+
* The scorer that produced this entry — the scorer type, or for a `tool` scorer its `name`
|
|
1718
1748
|
*/
|
|
1719
1749
|
scorer?: string;
|
|
1720
1750
|
score?: number;
|
|
1721
1751
|
passed?: boolean;
|
|
1722
1752
|
/**
|
|
1723
|
-
* The
|
|
1753
|
+
* The stated rationale; present for `llm_judge` and for `tool` scorers whose tool returned one
|
|
1724
1754
|
*/
|
|
1725
1755
|
reasoning?: string;
|
|
1726
1756
|
};
|
|
@@ -2301,14 +2331,6 @@ type ActorResourceProperties = {
|
|
|
2301
2331
|
* Linked chat ID (mutually exclusive with agent_id)
|
|
2302
2332
|
*/
|
|
2303
2333
|
chat_id?: string | null;
|
|
2304
|
-
/**
|
|
2305
|
-
* Linked memory ID
|
|
2306
|
-
*/
|
|
2307
|
-
memory_id?: string | null;
|
|
2308
|
-
/**
|
|
2309
|
-
* Whether to auto-create memory when actor is created
|
|
2310
|
-
*/
|
|
2311
|
-
auto_create_memory?: boolean;
|
|
2312
2334
|
};
|
|
2313
2335
|
/**
|
|
2314
2336
|
* Configures an LLM provider connection (API key, model, endpoint) that agents use to generate responses.
|
|
@@ -2497,7 +2519,7 @@ type EvalResourceProperties = {
|
|
|
2497
2519
|
*/
|
|
2498
2520
|
dataset_id: string;
|
|
2499
2521
|
/**
|
|
2500
|
-
* Scorer configs — `exact_match`, `contains`, `json_logic`, `output_schema`, or `
|
|
2522
|
+
* Scorer configs — `exact_match`, `contains`, `json_logic`, `output_schema`, `llm_judge`, or `tool`. Same shape as the evals REST contract.
|
|
2501
2523
|
*/
|
|
2502
2524
|
scorers: Array<{
|
|
2503
2525
|
[key: string]: unknown;
|
|
@@ -2954,7 +2976,7 @@ type OrchestrationResourceProperties = {
|
|
|
2954
2976
|
} | null;
|
|
2955
2977
|
};
|
|
2956
2978
|
/**
|
|
2957
|
-
* Creates a workflow — a state-machine definition (named states, allowed transitions, guards, and per-state automation) that tasks live in. State and transition dispatch references (`agent_id`, `orchestration_id` inside an `on_enter` block) accept `{ "ref": "LogicalId" }` expressions to point at agents or
|
|
2979
|
+
* Creates a workflow — a state-machine definition (named states, allowed transitions, guards, and per-state automation) that tasks live in. State and transition dispatch references (`agent_id`, `orchestration_id`, `tool_id` inside an `on_enter` block) accept `{ "ref": "LogicalId" }` expressions to point at agents, orchestrations or tools declared in the same template, so a workflow plus the agents and tools that service its states can deploy as one stack. Mirrors the workflows REST contract (`states`, `transitions`, `payload_schema`).
|
|
2958
2980
|
*/
|
|
2959
2981
|
type WorkflowResourceProperties = {
|
|
2960
2982
|
/**
|
|
@@ -3146,6 +3168,11 @@ type Formation = {
|
|
|
3146
3168
|
resolved_parameters?: {
|
|
3147
3169
|
[key: string]: string;
|
|
3148
3170
|
} | null;
|
|
3171
|
+
/**
|
|
3172
|
+
* Why the formation is `failed` or `delete_failed`, in the same `{ code, message, meta }` shape as an error response. Null in every other status, and cleared by the next successful deploy. This is the reason a `2xx` deploy response can report `status: "failed"` without a second call to `list-formation-events`.
|
|
3173
|
+
*
|
|
3174
|
+
*/
|
|
3175
|
+
error?: FormationError | null;
|
|
3149
3176
|
/**
|
|
3150
3177
|
* Resources managed by this formation (present on get/create/update)
|
|
3151
3178
|
*/
|
|
@@ -3191,6 +3218,25 @@ type PlanChange = {
|
|
|
3191
3218
|
type PlanResult = {
|
|
3192
3219
|
changes?: Array<PlanChange>;
|
|
3193
3220
|
};
|
|
3221
|
+
/**
|
|
3222
|
+
* Why a deploy or teardown failed, in the one error shape the API has. Carried on the formation itself and on the operation that failed.
|
|
3223
|
+
*/
|
|
3224
|
+
type FormationError = {
|
|
3225
|
+
/**
|
|
3226
|
+
* The failing operation's error code (`VALIDATION_FAILED`, `RESOURCE_NOT_FOUND`, `FORMATION_DELETE_FAILED`, …), or `UNKNOWN` when the underlying failure carried no code.
|
|
3227
|
+
*/
|
|
3228
|
+
code: string;
|
|
3229
|
+
/**
|
|
3230
|
+
* The failure, as reported by the resource that raised it.
|
|
3231
|
+
*/
|
|
3232
|
+
message: string;
|
|
3233
|
+
/**
|
|
3234
|
+
* Context for the failure. A failed apply names the resource that broke it (`logical_id`, `resource_type`); a failed teardown lists every blocker under `failures`.
|
|
3235
|
+
*/
|
|
3236
|
+
meta?: {
|
|
3237
|
+
[key: string]: unknown;
|
|
3238
|
+
};
|
|
3239
|
+
};
|
|
3194
3240
|
type FormationEvent = {
|
|
3195
3241
|
timestamp?: Date;
|
|
3196
3242
|
logical_id?: string;
|
|
@@ -3212,9 +3258,10 @@ type FormationOperation = {
|
|
|
3212
3258
|
status?: 'pending' | 'running' | 'succeeded' | 'failed';
|
|
3213
3259
|
events?: Array<FormationEvent> | null;
|
|
3214
3260
|
plan?: PlanResult | null;
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3261
|
+
/**
|
|
3262
|
+
* Why this operation failed. Null for a succeeded or running operation. The same bag the formation itself carries while that failure is its current state.
|
|
3263
|
+
*/
|
|
3264
|
+
error?: FormationError | null;
|
|
3218
3265
|
created_at?: Date;
|
|
3219
3266
|
updated_at?: Date;
|
|
3220
3267
|
};
|
|
@@ -3386,6 +3433,151 @@ type UpdateGenerationRequest = {
|
|
|
3386
3433
|
[key: string]: unknown;
|
|
3387
3434
|
};
|
|
3388
3435
|
};
|
|
3436
|
+
/**
|
|
3437
|
+
* Token counts for one step. A field is null when the provider did not report it — null rather than 0, so "not reported" stays distinguishable from "none used".
|
|
3438
|
+
*
|
|
3439
|
+
*/
|
|
3440
|
+
type TranscriptUsage = {
|
|
3441
|
+
input_tokens?: number | null;
|
|
3442
|
+
output_tokens?: number | null;
|
|
3443
|
+
total_tokens?: number | null;
|
|
3444
|
+
};
|
|
3445
|
+
/**
|
|
3446
|
+
* One tool call the model made during a step.
|
|
3447
|
+
*/
|
|
3448
|
+
type TranscriptToolCall = {
|
|
3449
|
+
/**
|
|
3450
|
+
* The call's ID, as the model provider issued it (e.g. `call_…`), used to correlate it with an entry in `tool_results`. Null when the stored step did not record one.
|
|
3451
|
+
*
|
|
3452
|
+
*/
|
|
3453
|
+
id?: string | null;
|
|
3454
|
+
tool_name?: string | null;
|
|
3455
|
+
/**
|
|
3456
|
+
* The arguments the model supplied, as a value. This payload is tool-owned: its keys are passed through exactly as they were recorded and are never inspected or rewritten by SOAT.
|
|
3457
|
+
*
|
|
3458
|
+
*/
|
|
3459
|
+
args?: unknown;
|
|
3460
|
+
};
|
|
3461
|
+
/**
|
|
3462
|
+
* One tool's answer to a call in the same step. A call that failed is reported here too, with `result` null and `error` set — so a reader sees successes and failures in one ordered list keyed by the call they answer.
|
|
3463
|
+
*
|
|
3464
|
+
*/
|
|
3465
|
+
type TranscriptToolResult = {
|
|
3466
|
+
/**
|
|
3467
|
+
* The `id` of the `tool_calls` entry this answers.
|
|
3468
|
+
*/
|
|
3469
|
+
tool_call_id?: string | null;
|
|
3470
|
+
tool_name?: string | null;
|
|
3471
|
+
/**
|
|
3472
|
+
* What the tool returned, as a value. Tool-owned: keys are passed through verbatim. Null when the call errored.
|
|
3473
|
+
*
|
|
3474
|
+
*/
|
|
3475
|
+
result?: unknown;
|
|
3476
|
+
/**
|
|
3477
|
+
* The tool's failure, when the step recorded one.
|
|
3478
|
+
*/
|
|
3479
|
+
error?: unknown;
|
|
3480
|
+
};
|
|
3481
|
+
/**
|
|
3482
|
+
* One model step. Projected from the stored step at read time — the stored shape is provider- and SDK-specific and is never put on the wire.
|
|
3483
|
+
*
|
|
3484
|
+
*/
|
|
3485
|
+
type TranscriptStep = {
|
|
3486
|
+
/**
|
|
3487
|
+
* Zero-based position of this step in the turn. Positional rather than the model's own step number, which restarts at zero when a paused turn resumes.
|
|
3488
|
+
*
|
|
3489
|
+
*/
|
|
3490
|
+
index?: number;
|
|
3491
|
+
/**
|
|
3492
|
+
* The text this step produced. Empty for a step that only called tools.
|
|
3493
|
+
*
|
|
3494
|
+
*/
|
|
3495
|
+
text?: string;
|
|
3496
|
+
/**
|
|
3497
|
+
* Why this step stopped.
|
|
3498
|
+
*/
|
|
3499
|
+
finish_reason?: string | null;
|
|
3500
|
+
tool_calls?: Array<TranscriptToolCall>;
|
|
3501
|
+
tool_results?: Array<TranscriptToolResult>;
|
|
3502
|
+
/**
|
|
3503
|
+
* Null when the step recorded no usage.
|
|
3504
|
+
*/
|
|
3505
|
+
usage?: TranscriptUsage | null;
|
|
3506
|
+
};
|
|
3507
|
+
/**
|
|
3508
|
+
* One generation's turn, read back step by step. Assembled at read time from the generation record and the trace's steps object — never stored, so it dies with the content it projects.
|
|
3509
|
+
*
|
|
3510
|
+
*/
|
|
3511
|
+
type GenerationTranscript = {
|
|
3512
|
+
generation_id?: string;
|
|
3513
|
+
trace_id?: string | null;
|
|
3514
|
+
project_id?: string;
|
|
3515
|
+
agent_id?: string;
|
|
3516
|
+
/**
|
|
3517
|
+
* Agent config version that served the turn.
|
|
3518
|
+
*/
|
|
3519
|
+
agent_version?: number | null;
|
|
3520
|
+
/**
|
|
3521
|
+
* Lifecycle status of the generation. Disambiguates an empty `steps` caused by a run still in flight from one caused by erased content.
|
|
3522
|
+
*
|
|
3523
|
+
*/
|
|
3524
|
+
status?: 'in_progress' | 'requires_action' | 'completed' | 'failed';
|
|
3525
|
+
stop_reason?: string | null;
|
|
3526
|
+
started_at?: Date;
|
|
3527
|
+
completed_at?: Date | null;
|
|
3528
|
+
/**
|
|
3529
|
+
* Number of steps this turn recorded. A counter rather than content, so it survives a purge and still reports the size of a turn whose steps are gone. Scoped to the generation, not the trace: a trace that groups several generations counts them all in its own `step_count`, while each transcript reports only its own.
|
|
3530
|
+
*
|
|
3531
|
+
*/
|
|
3532
|
+
step_count?: number;
|
|
3533
|
+
/**
|
|
3534
|
+
* The messages the turn was asked, as recorded. Message content is caller-owned and passed through verbatim. Null when the content was never stored, has been purged, or predates input recording.
|
|
3535
|
+
*
|
|
3536
|
+
*/
|
|
3537
|
+
input?: Array<{
|
|
3538
|
+
[key: string]: unknown;
|
|
3539
|
+
}> | null;
|
|
3540
|
+
/**
|
|
3541
|
+
* The turn's steps in order. Empty for a run still in progress, and for one whose content is unavailable — `status` and `content_redacted_at` say which.
|
|
3542
|
+
*
|
|
3543
|
+
*/
|
|
3544
|
+
steps?: Array<TranscriptStep>;
|
|
3545
|
+
/**
|
|
3546
|
+
* The turn's final answer. Null when there are no steps to derive it from.
|
|
3547
|
+
*
|
|
3548
|
+
*/
|
|
3549
|
+
output?: {
|
|
3550
|
+
/**
|
|
3551
|
+
* The last step that produced text. Null for a turn that only called tools.
|
|
3552
|
+
*
|
|
3553
|
+
*/
|
|
3554
|
+
content?: string | null;
|
|
3555
|
+
/**
|
|
3556
|
+
* The finish reason of the actual last step.
|
|
3557
|
+
*/
|
|
3558
|
+
finish_reason?: string | null;
|
|
3559
|
+
} | null;
|
|
3560
|
+
/**
|
|
3561
|
+
* Structured error payload when the generation failed.
|
|
3562
|
+
*/
|
|
3563
|
+
error?: {
|
|
3564
|
+
[key: string]: unknown;
|
|
3565
|
+
} | null;
|
|
3566
|
+
/**
|
|
3567
|
+
* When the generation's content was erased; null while it is intact.
|
|
3568
|
+
*
|
|
3569
|
+
*/
|
|
3570
|
+
content_redacted_at?: Date | null;
|
|
3571
|
+
/**
|
|
3572
|
+
* Principal kind that erased the content.
|
|
3573
|
+
*/
|
|
3574
|
+
content_redacted_by_principal_type?: string | null;
|
|
3575
|
+
/**
|
|
3576
|
+
* Public ID of that principal. `zero_retention` when the content was never stored, distinguishing it from content erased later.
|
|
3577
|
+
*
|
|
3578
|
+
*/
|
|
3579
|
+
content_redacted_by_principal_id?: string | null;
|
|
3580
|
+
};
|
|
3389
3581
|
/**
|
|
3390
3582
|
* 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.
|
|
3391
3583
|
*
|
|
@@ -3649,7 +3841,11 @@ type DocumentKnowledgeResult = {
|
|
|
3649
3841
|
*/
|
|
3650
3842
|
content: string | null;
|
|
3651
3843
|
/**
|
|
3652
|
-
*
|
|
3844
|
+
* Implementation-defined relevance ranking — higher is better. The **ordering** it produces is the contract; the absolute value is not, and the formula behind it may change (a future hybrid ranking would fuse several signals here). It is the field `min_score` filters on and the field results are sorted by. Only present when `query` was provided. Use `similarity_score` when you need the raw cosine value.
|
|
3845
|
+
*/
|
|
3846
|
+
score?: number;
|
|
3847
|
+
/**
|
|
3848
|
+
* Raw cosine similarity (0–1) between the query and this result. Pinned to that meaning — unlike `score`, it is never redefined. Only present when `query` was provided.
|
|
3653
3849
|
*/
|
|
3654
3850
|
similarity_score?: number;
|
|
3655
3851
|
/**
|
|
@@ -3683,7 +3879,11 @@ type MemoryKnowledgeResult = {
|
|
|
3683
3879
|
*/
|
|
3684
3880
|
content: string;
|
|
3685
3881
|
/**
|
|
3686
|
-
*
|
|
3882
|
+
* Implementation-defined relevance ranking — higher is better. The **ordering** it produces is the contract; the absolute value is not, and the formula behind it may change (a future hybrid ranking would fuse several signals here). It is the field `min_score` filters on and the field results are sorted by. Only present when `query` was provided. Use `similarity_score` when you need the raw cosine value.
|
|
3883
|
+
*/
|
|
3884
|
+
score?: number;
|
|
3885
|
+
/**
|
|
3886
|
+
* Raw cosine similarity (0–1) between the query and this result. Pinned to that meaning — unlike `score`, it is never redefined. Only present when `query` was provided.
|
|
3687
3887
|
*/
|
|
3688
3888
|
similarity_score?: number;
|
|
3689
3889
|
/**
|
|
@@ -3722,14 +3922,30 @@ type MemoryEntry = {
|
|
|
3722
3922
|
metadata?: {
|
|
3723
3923
|
[key: string]: unknown;
|
|
3724
3924
|
} | null;
|
|
3925
|
+
/**
|
|
3926
|
+
* The generation whose turn produced this entry. Set for entries written by the `write_memory` tool and by automatic extraction; null for manual and orchestration writes. Recorded when the entry is created and never rewritten by a later merge.
|
|
3927
|
+
*/
|
|
3928
|
+
source_generation_id?: string | null;
|
|
3929
|
+
/**
|
|
3930
|
+
* The conversation the producing turn belonged to. Null when the entry did not come from a conversation (a direct agent generation, a manual write, or an orchestration write).
|
|
3931
|
+
*/
|
|
3932
|
+
source_conversation_id?: string | null;
|
|
3933
|
+
/**
|
|
3934
|
+
* When the entry was superseded. Null means the entry is currently valid. Invalidated entries are excluded from listing, from write deduplication, and from knowledge search, but remain readable by ID for audit.
|
|
3935
|
+
*/
|
|
3936
|
+
invalidated_at?: Date | null;
|
|
3937
|
+
/**
|
|
3938
|
+
* The entry that replaced this one, when it was superseded. Null for valid entries.
|
|
3939
|
+
*/
|
|
3940
|
+
superseded_by_entry_id?: string | null;
|
|
3725
3941
|
created_at?: Date;
|
|
3726
3942
|
updated_at?: Date;
|
|
3727
3943
|
};
|
|
3728
3944
|
type MemoryEntryWriteResult = MemoryEntry & {
|
|
3729
3945
|
/**
|
|
3730
|
-
* The outcome of the write operation
|
|
3946
|
+
* The outcome of the write operation. `updated` means an existing entry was rewritten to absorb the incoming fact — it is produced only by the LLM consolidation on agent write paths (the `write_memory` tool and automatic extraction), never by this endpoint, which creates instead of merging. `superseded` means the incoming content contradicted an existing entry, which was invalidated and replaced — it is produced by the LLM-arbitrated write path and does not occur until that ships.
|
|
3731
3947
|
*/
|
|
3732
|
-
action?: 'created' | 'updated' | 'skipped';
|
|
3948
|
+
action?: 'created' | 'updated' | 'skipped' | 'superseded';
|
|
3733
3949
|
};
|
|
3734
3950
|
type ModelRouteTarget = {
|
|
3735
3951
|
/**
|
|
@@ -4527,6 +4743,45 @@ type SessionRecord = {
|
|
|
4527
4743
|
* Timestamp of the last activity on the session (message added or response generated).
|
|
4528
4744
|
*/
|
|
4529
4745
|
last_activity_at?: Date | null;
|
|
4746
|
+
/**
|
|
4747
|
+
* Public ID of the session this one was forked from, or null when it was not forked. Also null once that parent is deleted — a fork survives its parent and keeps its own history.
|
|
4748
|
+
*
|
|
4749
|
+
*/
|
|
4750
|
+
forked_from_session_id?: string | null;
|
|
4751
|
+
/**
|
|
4752
|
+
* The parent conversation position this session branched after, or null when it is not a fork or was forked at the tip.
|
|
4753
|
+
*
|
|
4754
|
+
*/
|
|
4755
|
+
forked_from_position?: number | null;
|
|
4756
|
+
};
|
|
4757
|
+
type ForkSessionRequest = {
|
|
4758
|
+
/**
|
|
4759
|
+
* The parent conversation `position` to branch after. Messages at positions 0..N are carried into the fork. Omit it to branch at the tip (the whole history).
|
|
4760
|
+
*
|
|
4761
|
+
*/
|
|
4762
|
+
fork_at_position?: number;
|
|
4763
|
+
/**
|
|
4764
|
+
* Agent the fork runs against. Defaults to the parent session's agent; overriding it is the point of forking — same context, a different agent or agent version. Must belong to the same project as the session being forked.
|
|
4765
|
+
*
|
|
4766
|
+
*/
|
|
4767
|
+
agent_id?: string;
|
|
4768
|
+
/**
|
|
4769
|
+
* Optional name for the forked session
|
|
4770
|
+
*/
|
|
4771
|
+
name?: string;
|
|
4772
|
+
/**
|
|
4773
|
+
* Optional tags for the forked session
|
|
4774
|
+
*/
|
|
4775
|
+
tags?: {
|
|
4776
|
+
[key: string]: string;
|
|
4777
|
+
};
|
|
4778
|
+
/**
|
|
4779
|
+
* Overrides the parent's `tool_context` on the fork. Omit it and the fork inherits the parent's, so the branch is faithful to the run it came from.
|
|
4780
|
+
*
|
|
4781
|
+
*/
|
|
4782
|
+
tool_context?: {
|
|
4783
|
+
[key: string]: string;
|
|
4784
|
+
} | null;
|
|
4530
4785
|
};
|
|
4531
4786
|
type CreateSessionRequest = {
|
|
4532
4787
|
/**
|
|
@@ -4726,7 +4981,7 @@ type Task = {
|
|
|
4726
4981
|
last_result?: unknown;
|
|
4727
4982
|
assignee?: string | null;
|
|
4728
4983
|
/**
|
|
4729
|
-
* { kind, id, status } of the current state's dispatch, if any. Carries an additional `attempt` (1-based) while the state's `on_enter.retry` policy is in effect.
|
|
4984
|
+
* { kind, id, status } of the current state's dispatch, if any. `kind` is `generation`, `orchestration_run` or `tool_call`; a `tool_call` always carries a null `id`, since a direct tool call leaves no addressable record. Carries an additional `attempt` (1-based) while the state's `on_enter.retry` policy is in effect.
|
|
4730
4985
|
*/
|
|
4731
4986
|
active_dispatch?: {
|
|
4732
4987
|
[key: string]: unknown;
|
|
@@ -4759,12 +5014,23 @@ type TaskTransition = {
|
|
|
4759
5014
|
*/
|
|
4760
5015
|
principal_kind?: 'user' | 'api_key' | 'automation' | 'approval';
|
|
4761
5016
|
/**
|
|
4762
|
-
* Public id of the principal that made the move — the user (`user_...`), or for `api_key` auth the key's own id (`key_...`), distinguishing which key acted. Null for `automation`, which has no principal: the cause is carried by `generation_id` / `orchestration_run_id
|
|
5017
|
+
* Public id of the principal that made the move — the user (`user_...`), or for `api_key` auth the key's own id (`key_...`), distinguishing which key acted. Null for `automation`, which has no principal: the cause is carried by `generation_id` / `orchestration_run_id` / `tool_id`, one per dispatch kind — exactly one of which is set on an automation move.
|
|
4763
5018
|
*
|
|
4764
5019
|
*/
|
|
4765
5020
|
principal_id?: string | null;
|
|
5021
|
+
/**
|
|
5022
|
+
* Set when an `agent` dispatch's generation caused the move.
|
|
5023
|
+
*/
|
|
4766
5024
|
generation_id?: string | null;
|
|
5025
|
+
/**
|
|
5026
|
+
* Set when an `orchestration` dispatch's run caused the move.
|
|
5027
|
+
*/
|
|
4767
5028
|
orchestration_run_id?: string | null;
|
|
5029
|
+
/**
|
|
5030
|
+
* Set when a `tool` dispatch caused the move. A tool call produces no addressable record of its own, so the tool it called is what records why the task moved.
|
|
5031
|
+
*
|
|
5032
|
+
*/
|
|
5033
|
+
tool_id?: string | null;
|
|
4768
5034
|
note?: string | null;
|
|
4769
5035
|
created_at?: Date;
|
|
4770
5036
|
};
|
|
@@ -5720,6 +5986,13 @@ type Delivery = {
|
|
|
5720
5986
|
status_code?: number | null;
|
|
5721
5987
|
attempts?: number;
|
|
5722
5988
|
last_attempt_at?: Date | null;
|
|
5989
|
+
/**
|
|
5990
|
+
* When the delivery becomes eligible for its next attempt. Set while
|
|
5991
|
+
* the delivery is pending and a retry is still owed; null once it has
|
|
5992
|
+
* succeeded or exhausted its attempts.
|
|
5993
|
+
*
|
|
5994
|
+
*/
|
|
5995
|
+
next_attempt_at?: Date | null;
|
|
5723
5996
|
response_body?: string | null;
|
|
5724
5997
|
created_at?: Date;
|
|
5725
5998
|
updated_at?: Date;
|
|
@@ -5731,7 +6004,7 @@ type DeliveryListResponse = {
|
|
|
5731
6004
|
offset?: number;
|
|
5732
6005
|
};
|
|
5733
6006
|
/**
|
|
5734
|
-
* A named state. Exactly one state must be `initial: true`; any number may be `terminal: true`. A `kind: human` state never dispatches — the task parks until a transition fires. `on_enter` (§5) dispatches one agent generation
|
|
6007
|
+
* A named state. Exactly one state must be `initial: true`; any number may be `terminal: true`. A `kind: human` state never dispatches — the task parks until a transition fires. `on_enter` (§5) dispatches exactly one of an agent generation (`kind: agent`, `agent_id`), an orchestration run (`kind: orchestration`, `orchestration_id`) or a tool call (`kind: tool`, `tool_id`, optional `operation_id`) on entry, optionally under a `retry` policy (`max_attempts` 1-10, `backoff_seconds`, `backoff_multiplier`) that re-runs execution failures before `on_failure` applies. A `tool` dispatch settles within the dispatch and is adjudicated by the same guardrails as an orchestration `tool` node; for anything that must wait (a delay, a poll, a multi-step pipeline, or an approval-gated tool), dispatch an orchestration instead.
|
|
5735
6008
|
*/
|
|
5736
6009
|
type WorkflowState = {
|
|
5737
6010
|
name: string;
|
|
@@ -6055,14 +6328,6 @@ type CreateActorData = {
|
|
|
6055
6328
|
* Chat to link this actor to. Mutually exclusive with agent_id.
|
|
6056
6329
|
*/
|
|
6057
6330
|
chat_id?: string;
|
|
6058
|
-
/**
|
|
6059
|
-
* Memory ID to link to this actor. Mutually exclusive with auto_create_memory.
|
|
6060
|
-
*/
|
|
6061
|
-
memory_id?: string | null;
|
|
6062
|
-
/**
|
|
6063
|
-
* When true, automatically creates a new memory container for this actor and links it. Ignored if memory_id is set. With external_id (idempotent), memory is only created on first creation.
|
|
6064
|
-
*/
|
|
6065
|
-
auto_create_memory?: boolean;
|
|
6066
6331
|
};
|
|
6067
6332
|
path?: never;
|
|
6068
6333
|
query?: never;
|
|
@@ -6179,10 +6444,6 @@ type UpdateActorData = {
|
|
|
6179
6444
|
* Chat to link this actor to. Mutually exclusive with agent_id.
|
|
6180
6445
|
*/
|
|
6181
6446
|
chat_id?: string | null;
|
|
6182
|
-
/**
|
|
6183
|
-
* Memory ID to link to this actor. Set to null to unlink.
|
|
6184
|
-
*/
|
|
6185
|
-
memory_id?: string | null;
|
|
6186
6447
|
tags?: {
|
|
6187
6448
|
[key: string]: string;
|
|
6188
6449
|
};
|
|
@@ -7107,7 +7368,7 @@ type ListAiProviderModelsData = {
|
|
|
7107
7368
|
};
|
|
7108
7369
|
type ListAiProviderModelsErrors = {
|
|
7109
7370
|
/**
|
|
7110
|
-
* The provider type cannot enumerate models, or the record is missing configuration the listing needs (a Vertex project, a Bedrock region, a linked
|
|
7371
|
+
* The provider type or authentication mode cannot enumerate models (including Vertex express mode), or the record is missing configuration the listing needs (a Vertex project from either `config.project` or the service-account key file, a Bedrock region, or — for the API-key provider types — a linked secret).
|
|
7111
7372
|
*
|
|
7112
7373
|
*/
|
|
7113
7374
|
400: unknown;
|
|
@@ -7264,6 +7525,10 @@ type CreateApiKeyErrors = {
|
|
|
7264
7525
|
* Unauthorized
|
|
7265
7526
|
*/
|
|
7266
7527
|
401: unknown;
|
|
7528
|
+
/**
|
|
7529
|
+
* Forbidden (a project-scoped credential named a different project, or asked for an unscoped key)
|
|
7530
|
+
*/
|
|
7531
|
+
403: ErrorResponse;
|
|
7267
7532
|
};
|
|
7268
7533
|
type CreateApiKeyError = CreateApiKeyErrors[keyof CreateApiKeyErrors];
|
|
7269
7534
|
type CreateApiKeyResponses = {
|
|
@@ -7290,7 +7555,7 @@ type DeleteApiKeyErrors = {
|
|
|
7290
7555
|
*/
|
|
7291
7556
|
401: unknown;
|
|
7292
7557
|
/**
|
|
7293
|
-
* Forbidden (not the key owner or admin)
|
|
7558
|
+
* Forbidden (not the key owner or admin, or the credential is scoped to a different project)
|
|
7294
7559
|
*/
|
|
7295
7560
|
403: unknown;
|
|
7296
7561
|
/**
|
|
@@ -7322,7 +7587,7 @@ type GetApiKeyErrors = {
|
|
|
7322
7587
|
*/
|
|
7323
7588
|
401: unknown;
|
|
7324
7589
|
/**
|
|
7325
|
-
* Forbidden (not the key owner or admin)
|
|
7590
|
+
* Forbidden (not the key owner or admin, or the credential is scoped to a different project)
|
|
7326
7591
|
*/
|
|
7327
7592
|
403: unknown;
|
|
7328
7593
|
/**
|
|
@@ -7368,7 +7633,7 @@ type UpdateApiKeyErrors = {
|
|
|
7368
7633
|
*/
|
|
7369
7634
|
401: unknown;
|
|
7370
7635
|
/**
|
|
7371
|
-
* Forbidden (not the key owner or admin)
|
|
7636
|
+
* Forbidden (not the key owner or admin, or the credential is scoped to a different project)
|
|
7372
7637
|
*/
|
|
7373
7638
|
403: unknown;
|
|
7374
7639
|
/**
|
|
@@ -8478,6 +8743,10 @@ type ListDocumentsData = {
|
|
|
8478
8743
|
* Project ID (optional)
|
|
8479
8744
|
*/
|
|
8480
8745
|
project_id?: string;
|
|
8746
|
+
/**
|
|
8747
|
+
* Only documents filed under this directory. The prefix is a path boundary, not a substring: `/reports` returns `/reports/q1.txt` and never `/reports-archive/q1.txt`, and `/` selects the whole project. A leading slash is optional and a trailing one is ignored, so `reports`, `/reports` and `/reports/` are the same filter. `%` and `_` are literal characters, not wildcards.
|
|
8748
|
+
*/
|
|
8749
|
+
path_prefix?: string;
|
|
8481
8750
|
/**
|
|
8482
8751
|
* Maximum number of results to return
|
|
8483
8752
|
*/
|
|
@@ -11109,6 +11378,39 @@ type PurgeGenerationContentResponses = {
|
|
|
11109
11378
|
200: Generation;
|
|
11110
11379
|
};
|
|
11111
11380
|
type PurgeGenerationContentResponse = PurgeGenerationContentResponses[keyof PurgeGenerationContentResponses];
|
|
11381
|
+
type GetGenerationTranscriptData = {
|
|
11382
|
+
body?: never;
|
|
11383
|
+
path: {
|
|
11384
|
+
/**
|
|
11385
|
+
* Public ID of the generation
|
|
11386
|
+
*/
|
|
11387
|
+
generation_id: string;
|
|
11388
|
+
};
|
|
11389
|
+
query?: never;
|
|
11390
|
+
url: '/api/v1/generations/{generation_id}/transcript';
|
|
11391
|
+
};
|
|
11392
|
+
type GetGenerationTranscriptErrors = {
|
|
11393
|
+
/**
|
|
11394
|
+
* Unauthorized
|
|
11395
|
+
*/
|
|
11396
|
+
401: ErrorResponse;
|
|
11397
|
+
/**
|
|
11398
|
+
* Forbidden
|
|
11399
|
+
*/
|
|
11400
|
+
403: ErrorResponse;
|
|
11401
|
+
/**
|
|
11402
|
+
* Generation not found
|
|
11403
|
+
*/
|
|
11404
|
+
404: ErrorResponse;
|
|
11405
|
+
};
|
|
11406
|
+
type GetGenerationTranscriptError = GetGenerationTranscriptErrors[keyof GetGenerationTranscriptErrors];
|
|
11407
|
+
type GetGenerationTranscriptResponses = {
|
|
11408
|
+
/**
|
|
11409
|
+
* The generation's transcript
|
|
11410
|
+
*/
|
|
11411
|
+
200: GenerationTranscript;
|
|
11412
|
+
};
|
|
11413
|
+
type GetGenerationTranscriptResponse = GetGenerationTranscriptResponses[keyof GetGenerationTranscriptResponses];
|
|
11112
11414
|
type ListGuardrailsData = {
|
|
11113
11415
|
body?: never;
|
|
11114
11416
|
path?: never;
|
|
@@ -11702,7 +12004,7 @@ type SearchKnowledgeData = {
|
|
|
11702
12004
|
*/
|
|
11703
12005
|
query?: string;
|
|
11704
12006
|
/**
|
|
11705
|
-
* Minimum
|
|
12007
|
+
* Minimum `score` a result must reach to be returned. Filters on the implementation-defined `score`, not on `similarity_score`, so the cutoff follows the ranking. Only applies when `query` is provided. Because the scale behind `score` is not part of the contract, treat a tuned value as tied to the deployment rather than portable.
|
|
11706
12008
|
*/
|
|
11707
12009
|
min_score?: number;
|
|
11708
12010
|
/**
|
|
@@ -11980,6 +12282,10 @@ type ListMemoryEntriesData = {
|
|
|
11980
12282
|
* Number of results to skip
|
|
11981
12283
|
*/
|
|
11982
12284
|
offset?: number;
|
|
12285
|
+
/**
|
|
12286
|
+
* Include invalidated (superseded) entries. They are excluded by default; set this to audit the supersede history.
|
|
12287
|
+
*/
|
|
12288
|
+
include_invalidated?: boolean;
|
|
11983
12289
|
};
|
|
11984
12290
|
url: '/api/v1/memory-entries';
|
|
11985
12291
|
};
|
|
@@ -12038,13 +12344,9 @@ type CreateMemoryEntryData = {
|
|
|
12038
12344
|
[key: string]: unknown;
|
|
12039
12345
|
};
|
|
12040
12346
|
/**
|
|
12041
|
-
* Cosine similarity score at or above which the incoming content is considered a duplicate and skipped (default 0.95)
|
|
12347
|
+
* Cosine similarity score at or above which the incoming content is considered a duplicate of an existing entry and skipped (default 0.95). Below it the entry is always created.
|
|
12042
12348
|
*/
|
|
12043
12349
|
duplicate_threshold?: number;
|
|
12044
|
-
/**
|
|
12045
|
-
* Cosine similarity score at or above which the incoming content is appended to the existing entry (default 0.75)
|
|
12046
|
-
*/
|
|
12047
|
-
update_threshold?: number;
|
|
12048
12350
|
};
|
|
12049
12351
|
path?: never;
|
|
12050
12352
|
query?: never;
|
|
@@ -12074,7 +12376,7 @@ type CreateMemoryEntryErrors = {
|
|
|
12074
12376
|
};
|
|
12075
12377
|
type CreateMemoryEntryResponses = {
|
|
12076
12378
|
/**
|
|
12077
|
-
* Memory entry deduplicated (action is "skipped"
|
|
12379
|
+
* Memory entry deduplicated (action is "skipped")
|
|
12078
12380
|
*/
|
|
12079
12381
|
200: MemoryEntryWriteResult;
|
|
12080
12382
|
/**
|
|
@@ -14178,6 +14480,84 @@ type SubmitSessionToolOutputsResponses = {
|
|
|
14178
14480
|
200: SendSessionMessageResponse;
|
|
14179
14481
|
};
|
|
14180
14482
|
type SubmitSessionToolOutputsResponse = SubmitSessionToolOutputsResponses[keyof SubmitSessionToolOutputsResponses];
|
|
14483
|
+
type ForkSessionData = {
|
|
14484
|
+
body?: ForkSessionRequest;
|
|
14485
|
+
path: {
|
|
14486
|
+
/**
|
|
14487
|
+
* Session public ID
|
|
14488
|
+
*/
|
|
14489
|
+
session_id: string;
|
|
14490
|
+
};
|
|
14491
|
+
query?: never;
|
|
14492
|
+
url: '/api/v1/sessions/{session_id}/fork';
|
|
14493
|
+
};
|
|
14494
|
+
type ForkSessionErrors = {
|
|
14495
|
+
/**
|
|
14496
|
+
* `fork_at_position` names no message in the parent conversation, or `agent_id` is unknown or belongs to another project
|
|
14497
|
+
*/
|
|
14498
|
+
400: ErrorResponse;
|
|
14499
|
+
/**
|
|
14500
|
+
* Authentication required
|
|
14501
|
+
*/
|
|
14502
|
+
401: ErrorResponse;
|
|
14503
|
+
/**
|
|
14504
|
+
* Insufficient permissions
|
|
14505
|
+
*/
|
|
14506
|
+
403: ErrorResponse;
|
|
14507
|
+
/**
|
|
14508
|
+
* Not found
|
|
14509
|
+
*/
|
|
14510
|
+
404: ErrorResponse;
|
|
14511
|
+
};
|
|
14512
|
+
type ForkSessionError = ForkSessionErrors[keyof ForkSessionErrors];
|
|
14513
|
+
type ForkSessionResponses = {
|
|
14514
|
+
/**
|
|
14515
|
+
* Fork created
|
|
14516
|
+
*/
|
|
14517
|
+
201: SessionRecord;
|
|
14518
|
+
};
|
|
14519
|
+
type ForkSessionResponse = ForkSessionResponses[keyof ForkSessionResponses];
|
|
14520
|
+
type ListSessionForksData = {
|
|
14521
|
+
body?: never;
|
|
14522
|
+
path: {
|
|
14523
|
+
/**
|
|
14524
|
+
* Session public ID
|
|
14525
|
+
*/
|
|
14526
|
+
session_id: string;
|
|
14527
|
+
};
|
|
14528
|
+
query?: {
|
|
14529
|
+
limit?: number;
|
|
14530
|
+
offset?: number;
|
|
14531
|
+
};
|
|
14532
|
+
url: '/api/v1/sessions/{session_id}/forks';
|
|
14533
|
+
};
|
|
14534
|
+
type ListSessionForksErrors = {
|
|
14535
|
+
/**
|
|
14536
|
+
* Authentication required
|
|
14537
|
+
*/
|
|
14538
|
+
401: ErrorResponse;
|
|
14539
|
+
/**
|
|
14540
|
+
* Insufficient permissions
|
|
14541
|
+
*/
|
|
14542
|
+
403: ErrorResponse;
|
|
14543
|
+
/**
|
|
14544
|
+
* Not found
|
|
14545
|
+
*/
|
|
14546
|
+
404: ErrorResponse;
|
|
14547
|
+
};
|
|
14548
|
+
type ListSessionForksError = ListSessionForksErrors[keyof ListSessionForksErrors];
|
|
14549
|
+
type ListSessionForksResponses = {
|
|
14550
|
+
/**
|
|
14551
|
+
* Paginated list of forks
|
|
14552
|
+
*/
|
|
14553
|
+
200: {
|
|
14554
|
+
data?: Array<SessionRecord>;
|
|
14555
|
+
total?: number;
|
|
14556
|
+
limit?: number;
|
|
14557
|
+
offset?: number;
|
|
14558
|
+
};
|
|
14559
|
+
};
|
|
14560
|
+
type ListSessionForksResponse = ListSessionForksResponses[keyof ListSessionForksResponses];
|
|
14181
14561
|
type GetSessionTagsData = {
|
|
14182
14562
|
body?: never;
|
|
14183
14563
|
path: {
|
|
@@ -15956,6 +16336,38 @@ type GetWebhookDeliveryResponses = {
|
|
|
15956
16336
|
200: Delivery;
|
|
15957
16337
|
};
|
|
15958
16338
|
type GetWebhookDeliveryResponse = GetWebhookDeliveryResponses[keyof GetWebhookDeliveryResponses];
|
|
16339
|
+
type RedeliverWebhookDeliveryData = {
|
|
16340
|
+
body?: never;
|
|
16341
|
+
path: {
|
|
16342
|
+
/**
|
|
16343
|
+
* Delivery to send again (wh_deliv_...)
|
|
16344
|
+
*/
|
|
16345
|
+
delivery_id: string;
|
|
16346
|
+
};
|
|
16347
|
+
query?: never;
|
|
16348
|
+
url: '/api/v1/webhook-deliveries/{delivery_id}/redeliver';
|
|
16349
|
+
};
|
|
16350
|
+
type RedeliverWebhookDeliveryErrors = {
|
|
16351
|
+
/**
|
|
16352
|
+
* Unauthorized
|
|
16353
|
+
*/
|
|
16354
|
+
401: unknown;
|
|
16355
|
+
/**
|
|
16356
|
+
* Forbidden
|
|
16357
|
+
*/
|
|
16358
|
+
403: unknown;
|
|
16359
|
+
/**
|
|
16360
|
+
* Delivery not found
|
|
16361
|
+
*/
|
|
16362
|
+
404: unknown;
|
|
16363
|
+
};
|
|
16364
|
+
type RedeliverWebhookDeliveryResponses = {
|
|
16365
|
+
/**
|
|
16366
|
+
* Redelivery queued; poll the returned delivery for its outcome
|
|
16367
|
+
*/
|
|
16368
|
+
202: Delivery;
|
|
16369
|
+
};
|
|
16370
|
+
type RedeliverWebhookDeliveryResponse = RedeliverWebhookDeliveryResponses[keyof RedeliverWebhookDeliveryResponses];
|
|
15959
16371
|
type GetWebhookSecretData = {
|
|
15960
16372
|
body?: never;
|
|
15961
16373
|
path: {
|
|
@@ -16513,6 +16925,8 @@ declare class AiProviders {
|
|
|
16513
16925
|
* Asks the provider which models it can run, using this provider record's own credentials and configuration, and returns provider-native model ids — the same strings `default_model` and an agent's `model` carry.
|
|
16514
16926
|
* Which models are reachable is a property of the credential, not of the provider type: a Vertex provider sees only the publisher models its Google Cloud project and location serve, and a Bedrock provider only the foundation models enabled in its region. Reading the list is how a caller avoids pinning a model that fails at generation time.
|
|
16515
16927
|
* Not every provider type can answer. `azure` lists deployments an operator named rather than models, and `ollama` lists whatever was pulled onto that host, so both return `400 MODEL_LISTING_UNSUPPORTED`.
|
|
16928
|
+
* Listing resolves credentials the same way generation does, so a record that can generate can list. The API-key types (`openai`, `groq`, `xai`, `gateway`, `custom`, `anthropic`, `google`) use the record's linked secret and cannot list without one. `bedrock` and `vertex` use the linked secret when there is one — IAM keys or a Bedrock API key, a Google service-account key — and otherwise fall back to the server environment (the AWS default credential chain, Google Application Default Credentials), so a record with no `secret_id` can still list.
|
|
16929
|
+
* A Vertex record needs no `config.project` when its secret is a service-account key, since the key file names its own project. A Vertex record in express mode (API key) cannot list at all: express mode is a global, project-less endpoint and the publisher-model catalogue is per-project, so it returns `400 MODEL_LISTING_UNSUPPORTED`.
|
|
16516
16930
|
*
|
|
16517
16931
|
*/
|
|
16518
16932
|
static listAiProviderModels<ThrowOnError extends boolean = false>(options: Options<ListAiProviderModelsData, ThrowOnError>): RequestResult<ListAiProviderModelsResponses, ListAiProviderModelsErrors, ThrowOnError>;
|
|
@@ -16535,33 +16949,33 @@ declare class ApiKeys {
|
|
|
16535
16949
|
/**
|
|
16536
16950
|
* List API keys
|
|
16537
16951
|
*
|
|
16538
|
-
* Lists API keys accessible to the caller. - JWT admin: returns all API keys. - JWT regular user: returns only the user's own API keys. - API key: returns only API keys scoped to
|
|
16952
|
+
* Lists API keys accessible to the caller. - JWT admin: returns all API keys. - JWT regular user: returns only the user's own API keys. - Project-scoped credential (API key or OAuth token): returns only API keys scoped to that project.
|
|
16539
16953
|
*
|
|
16540
16954
|
*/
|
|
16541
16955
|
static listApiKeys<ThrowOnError extends boolean = false>(options?: Options<ListApiKeysData, ThrowOnError>): RequestResult<ListApiKeysResponses, ListApiKeysErrors, ThrowOnError>;
|
|
16542
16956
|
/**
|
|
16543
16957
|
* Create an API key
|
|
16544
16958
|
*
|
|
16545
|
-
* Creates a new API key for the authenticated user. - `project_id` is optional. When set, the key is scoped to that single project. When omitted or null, the key is **unscoped** and spans every project its owner can reach. - If `policy_ids` is provided, the key's effective permissions are the intersection of the user's policies and the key's policies. - Otherwise the key inherits the user's permissions (confined to the key's project when scoped).
|
|
16959
|
+
* Creates a new API key for the authenticated user. - `project_id` is optional. When set, the key is scoped to that single project. When omitted or null, the key is **unscoped** and spans every project its owner can reach. - If `policy_ids` is provided, the key's effective permissions are the intersection of the user's policies and the key's policies. - Otherwise the key inherits the user's permissions (confined to the key's project when scoped). - When the request is authenticated with a **project-scoped credential**, the new key is confined to that same project: omitting `project_id` defaults to it, naming a different project returns `403 API_KEY_PROJECT_SCOPE`, and `project_id: null` (an unscoped key) is likewise refused. Minting an unscoped key requires an unscoped credential.
|
|
16546
16960
|
*
|
|
16547
16961
|
*/
|
|
16548
16962
|
static createApiKey<ThrowOnError extends boolean = false>(options: Options<CreateApiKeyData, ThrowOnError>): RequestResult<CreateApiKeyResponses, CreateApiKeyErrors, ThrowOnError>;
|
|
16549
16963
|
/**
|
|
16550
16964
|
* Delete an API key
|
|
16551
16965
|
*
|
|
16552
|
-
* Deletes an API key. Only the owner or an admin can delete it.
|
|
16966
|
+
* Deletes an API key. Only the owner or an admin can delete it, and a project-scoped credential can only delete keys in its own project.
|
|
16553
16967
|
*/
|
|
16554
16968
|
static deleteApiKey<ThrowOnError extends boolean = false>(options: Options<DeleteApiKeyData, ThrowOnError>): RequestResult<DeleteApiKeyResponses, DeleteApiKeyErrors, ThrowOnError>;
|
|
16555
16969
|
/**
|
|
16556
16970
|
* Get an API key
|
|
16557
16971
|
*
|
|
16558
|
-
* Returns details of an API key. Only the owner or an admin can access it.
|
|
16972
|
+
* Returns details of an API key. Only the owner or an admin can access it, and a project-scoped credential can only reach keys in its own project.
|
|
16559
16973
|
*/
|
|
16560
16974
|
static getApiKey<ThrowOnError extends boolean = false>(options: Options<GetApiKeyData, ThrowOnError>): RequestResult<GetApiKeyResponses, GetApiKeyErrors, ThrowOnError>;
|
|
16561
16975
|
/**
|
|
16562
16976
|
* Update an API key
|
|
16563
16977
|
*
|
|
16564
|
-
* Updates an API key's name, project scope, or policies. The project scope can be changed to another project, set (scoping a previously unscoped key), or cleared with null (unscoping the key). Only the owner or an admin can update it.
|
|
16978
|
+
* Updates an API key's name, project scope, or policies. The project scope can be changed to another project, set (scoping a previously unscoped key), or cleared with null (unscoping the key). Only the owner or an admin can update it. A project-scoped credential can only update keys in its own project, and cannot move a key to another project or unscope it.
|
|
16565
16979
|
*/
|
|
16566
16980
|
static updateApiKey<ThrowOnError extends boolean = false>(options: Options<UpdateApiKeyData, ThrowOnError>): RequestResult<UpdateApiKeyResponses, UpdateApiKeyErrors, ThrowOnError>;
|
|
16567
16981
|
}
|
|
@@ -17138,6 +17552,8 @@ declare class Formations {
|
|
|
17138
17552
|
*
|
|
17139
17553
|
* Validates the template, creates the formation record, then provisions all declared resources in dependency order.
|
|
17140
17554
|
*
|
|
17555
|
+
* A **template-shape** error is refused with `400`. A **deploy** failure is not: the operation ran, so the formation is returned with `201` and `status: "failed"`, and `error` explains why (the resources created before the failure are rolled back). Read `status` — a `2xx` here means the deploy was attempted, not that it worked. The `soat` CLI exits non-zero on that body so `create-formation && …` does not lie.
|
|
17556
|
+
*
|
|
17141
17557
|
*/
|
|
17142
17558
|
static createFormation<ThrowOnError extends boolean = false>(options: Options<CreateFormationData, ThrowOnError>): RequestResult<CreateFormationResponses, CreateFormationErrors, ThrowOnError>;
|
|
17143
17559
|
/**
|
|
@@ -17162,6 +17578,8 @@ declare class Formations {
|
|
|
17162
17578
|
*
|
|
17163
17579
|
* Applies a new template to the formation. Resources are created, updated, or deleted to reconcile the current state with the desired state.
|
|
17164
17580
|
*
|
|
17581
|
+
* A **template-shape** error is refused with `400`. A **deploy** failure is not: the operation ran, so the formation is returned with `200` and `status: "failed"`, and `error` explains why. Read `status` — a `2xx` here means the deploy was attempted, not that it worked. The `soat` CLI exits non-zero on that body so `update-formation && …` does not lie.
|
|
17582
|
+
*
|
|
17165
17583
|
*/
|
|
17166
17584
|
static updateFormation<ThrowOnError extends boolean = false>(options: Options<UpdateFormationData, ThrowOnError>): RequestResult<UpdateFormationResponses, UpdateFormationErrors, ThrowOnError>;
|
|
17167
17585
|
/**
|
|
@@ -17207,6 +17625,17 @@ declare class Generations {
|
|
|
17207
17625
|
*
|
|
17208
17626
|
*/
|
|
17209
17627
|
static purgeGenerationContent<ThrowOnError extends boolean = false>(options: Options<PurgeGenerationContentData, ThrowOnError>): RequestResult<PurgeGenerationContentResponses, PurgeGenerationContentErrors, ThrowOnError>;
|
|
17628
|
+
/**
|
|
17629
|
+
* Get a generation's transcript
|
|
17630
|
+
*
|
|
17631
|
+
* Returns one generation's turn read back as an ordered sequence of steps: what it was asked, each model step with its tool calls and results, and how it ended.
|
|
17632
|
+
*
|
|
17633
|
+
* The transcript is assembled at read time from the generation record and the trace's steps object; nothing is stored, so it cannot outlive the content it projects. Requires `traces:GetTrace` in addition to `generations:GetGeneration`, because the response merges content from both resources.
|
|
17634
|
+
*
|
|
17635
|
+
* A generation whose content is unavailable — never written under zero-retention, or cleared by a purge — returns `200` with the skeleton rather than an error: `input` and `output` are null, `steps` is empty, and the `content_redacted_*` fields say which happened. `content_redacted_by_principal_id` is `zero_retention` when the content was never stored, and the purging principal's ID when it was erased later. A generation that is still running returns the same shape with an empty `steps`; `status` disambiguates the two.
|
|
17636
|
+
*
|
|
17637
|
+
*/
|
|
17638
|
+
static getGenerationTranscript<ThrowOnError extends boolean = false>(options: Options<GetGenerationTranscriptData, ThrowOnError>): RequestResult<GetGenerationTranscriptResponses, GetGenerationTranscriptErrors, ThrowOnError>;
|
|
17210
17639
|
}
|
|
17211
17640
|
declare class Guardrails {
|
|
17212
17641
|
/**
|
|
@@ -17354,7 +17783,7 @@ declare class MemoryEntries {
|
|
|
17354
17783
|
/**
|
|
17355
17784
|
* Create a memory entry
|
|
17356
17785
|
*
|
|
17357
|
-
* Creates a new entry in the specified memory container. Automatically generates an embedding for semantic search.
|
|
17786
|
+
* Creates a new entry in the specified memory container. Automatically generates an embedding for semantic search, and skips the write when an existing entry is a near-duplicate (see `duplicate_threshold`). A merely similar fact is stored as its own entry: this path has no agent context and therefore no model to consolidate two facts into one.
|
|
17358
17787
|
*/
|
|
17359
17788
|
static createMemoryEntry<ThrowOnError extends boolean = false>(options: Options<CreateMemoryEntryData, ThrowOnError>): RequestResult<CreateMemoryEntryResponses, CreateMemoryEntryErrors, ThrowOnError>;
|
|
17360
17789
|
/**
|
|
@@ -17712,6 +18141,24 @@ declare class Sessions {
|
|
|
17712
18141
|
*
|
|
17713
18142
|
*/
|
|
17714
18143
|
static submitSessionToolOutputs<ThrowOnError extends boolean = false>(options: Options<SubmitSessionToolOutputsData, ThrowOnError>): RequestResult<SubmitSessionToolOutputsResponses, SubmitSessionToolOutputsErrors, ThrowOnError>;
|
|
18144
|
+
/**
|
|
18145
|
+
* Fork a session
|
|
18146
|
+
*
|
|
18147
|
+
* Branches a new session from a point in this session's history: same context, different continuation.
|
|
18148
|
+
*
|
|
18149
|
+
* The fork gets its own conversation whose messages **reference the same documents** as the parent rather than copying them, so there is one stored copy of the content and a retention purge erases it from both. Recorded tool results ride along on those messages and are **replayed** as model input on the fork's next turn — forking never re-invokes a tool, so exploring a "what if" cannot send an email or charge a card a second time. The consequence to accept is that a forked turn sees the tool data as it was, not as it is now.
|
|
18150
|
+
*
|
|
18151
|
+
* The fork is created **inert**: `auto_generate` is false and no generation is triggered. Drive it with the normal message and generate endpoints. The fork has no actor — attach one only if the branch is meant to be driven by the same end user, since `single_session_per_actor` agents allow one open session per actor.
|
|
18152
|
+
*
|
|
18153
|
+
*/
|
|
18154
|
+
static forkSession<ThrowOnError extends boolean = false>(options: Options<ForkSessionData, ThrowOnError>): RequestResult<ForkSessionResponses, ForkSessionErrors, ThrowOnError>;
|
|
18155
|
+
/**
|
|
18156
|
+
* List a session's forks
|
|
18157
|
+
*
|
|
18158
|
+
* Returns the sessions forked directly from this one. One level of lineage: a fork of a fork is listed under its own parent.
|
|
18159
|
+
*
|
|
18160
|
+
*/
|
|
18161
|
+
static listSessionForks<ThrowOnError extends boolean = false>(options: Options<ListSessionForksData, ThrowOnError>): RequestResult<ListSessionForksResponses, ListSessionForksErrors, ThrowOnError>;
|
|
17715
18162
|
/**
|
|
17716
18163
|
* Get session tags
|
|
17717
18164
|
*
|
|
@@ -18061,6 +18508,17 @@ declare class Webhooks {
|
|
|
18061
18508
|
* Retrieves the details of a specific webhook delivery
|
|
18062
18509
|
*/
|
|
18063
18510
|
static getWebhookDelivery<ThrowOnError extends boolean = false>(options: Options<GetWebhookDeliveryData, ThrowOnError>): RequestResult<GetWebhookDeliveryResponses, GetWebhookDeliveryErrors, ThrowOnError>;
|
|
18511
|
+
/**
|
|
18512
|
+
* Redeliver a webhook delivery
|
|
18513
|
+
*
|
|
18514
|
+
* Queues the stored payload of an existing delivery to be sent again.
|
|
18515
|
+
*
|
|
18516
|
+
* A new delivery record is created rather than the original being reset,
|
|
18517
|
+
* so the original attempt stays in the history. The send happens in the
|
|
18518
|
+
* background: poll the returned delivery to observe its outcome.
|
|
18519
|
+
*
|
|
18520
|
+
*/
|
|
18521
|
+
static redeliverWebhookDelivery<ThrowOnError extends boolean = false>(options: Options<RedeliverWebhookDeliveryData, ThrowOnError>): RequestResult<RedeliverWebhookDeliveryResponses, RedeliverWebhookDeliveryErrors, ThrowOnError>;
|
|
18064
18522
|
/**
|
|
18065
18523
|
* Get webhook secret
|
|
18066
18524
|
*
|
|
@@ -18216,4 +18674,4 @@ declare class SoatClient {
|
|
|
18216
18674
|
constructor({ baseUrl, token, headers }?: SoatClientOptions);
|
|
18217
18675
|
}
|
|
18218
18676
|
//#endregion
|
|
18219
|
-
export { type AbortAgentReleaseData, type AbortAgentReleaseError, type AbortAgentReleaseErrors, type AbortAgentReleaseResponse, type AbortAgentReleaseResponses, type AcceptedGenerationResponse, type AcknowledgeExceptionData, type AcknowledgeExceptionErrors, type AcknowledgeExceptionResponse, type AcknowledgeExceptionResponses, Activity, type ActivityEntry, 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 AgentRelease, type AgentResourceProperties, type AgentVersion, AgentVersions, Agents, type AggregateScores, type AiProviderResourceProperties, AiProviders, type ApiKeyCreated, type ApiKeyRecord, type ApiKeyResourceProperties, ApiKeys, type ApprovalId, type ApprovalItem, type ApprovalRecurrenceGroup, Approvals, type ApproveApprovalData, type ApproveApprovalErrors, type ApproveApprovalResponse, type ApproveApprovalResponses, type AttachUserPoliciesData, type AttachUserPoliciesError, type AttachUserPoliciesErrors, type AttachUserPoliciesResponse, type AttachUserPoliciesResponses, type AuditEntry, AuditLog, type BaselineComparison, type BootstrapUserData, type BootstrapUserError, type BootstrapUserErrors, type BootstrapUserResponse, type BootstrapUserResponses, type CallToolData, type CallToolError, type CallToolErrors, type CallToolRequest, type CallToolResponses, type CancelEvalRunData, type CancelEvalRunErrors, type CancelEvalRunResponse, type CancelEvalRunResponses, type CancelOrchestrationRunData, type CancelOrchestrationRunErrors, type CancelOrchestrationRunResponse, type CancelOrchestrationRunResponses, type Chat, type ChatCompletionChoice, type ChatCompletionRequest, type ChatCompletionResponse, type ChatCompletionResponseMessage, type ChatMessageInput, type ChatResourceProperties, Chats, type ClientOptions, type CompleteIngestionCallbackData, type CompleteIngestionCallbackError, type CompleteIngestionCallbackErrors, type CompleteIngestionCallbackResponse, type CompleteIngestionCallbackResponses, type ContainsScorer, 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 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 CreateDatasetData, type CreateDatasetErrors, type CreateDatasetItemData, type CreateDatasetItemErrors, type CreateDatasetItemFromGenerationData, type CreateDatasetItemFromGenerationErrors, type CreateDatasetItemFromGenerationResponse, type CreateDatasetItemFromGenerationResponses, type CreateDatasetItemResponse, type CreateDatasetItemResponses, type CreateDatasetResponse, type CreateDatasetResponses, type CreateDocumentData, type CreateDocumentError, type CreateDocumentErrors, type CreateDocumentResponse, type CreateDocumentResponses, type CreateEmbeddingsData, type CreateEmbeddingsError, type CreateEmbeddingsErrors, type CreateEmbeddingsResponse, type CreateEmbeddingsResponses, type CreateEvalData, type CreateEvalErrors, type CreateEvalResponse, type CreateEvalResponses, 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 CreateModelRouteData, type CreateModelRouteErrors, type CreateModelRouteResponse, type CreateModelRouteResponses, 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 CreateQuotaData, type CreateQuotaErrors, type CreateQuotaResponse, type CreateQuotaResponses, 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 Dataset, type DatasetItem, type DatasetItemInput, type DatasetItemResourceProperties, type DatasetResourceProperties, 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 DeleteDatasetData, type DeleteDatasetErrors, type DeleteDatasetItemData, type DeleteDatasetItemErrors, type DeleteDatasetItemResponse, type DeleteDatasetItemResponses, type DeleteDatasetResponse, type DeleteDatasetResponses, type DeleteDocumentData, type DeleteDocumentError, type DeleteDocumentErrors, type DeleteDocumentResponse, type DeleteDocumentResponses, type DeleteEvalData, type DeleteEvalErrors, type DeleteEvalResponse, type DeleteEvalResponses, 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 DeleteModelRouteData, type DeleteModelRouteErrors, type DeleteModelRouteResponse, type DeleteModelRouteResponses, 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 DeleteQuotaData, type DeleteQuotaErrors, type DeleteQuotaResponse, type DeleteQuotaResponses, 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 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 Eval, type EvalResourceProperties, type EvalResult, type EvalRun, type EvaluateGuardrailData, type EvaluateGuardrailError, type EvaluateGuardrailErrors, type EvaluateGuardrailResponse, type EvaluateGuardrailResponses, Evaluations, type ExactMatchScorer, type ExceptionId, type ExceptionItem, Exceptions, type ExportAuditEntriesData, type ExportAuditEntriesErrors, type ExportAuditEntriesResponse, type ExportAuditEntriesResponses, 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 GetAgentVersionData, type GetAgentVersionError, type GetAgentVersionErrors, type GetAgentVersionResponse, type GetAgentVersionResponses, 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 GetAuditEntryData, type GetAuditEntryErrors, type GetAuditEntryResponse, type GetAuditEntryResponses, 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 GetDatasetData, type GetDatasetErrors, type GetDatasetResponse, type GetDatasetResponses, 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 GetEvalData, type GetEvalErrors, type GetEvalResponse, type GetEvalResponses, type GetEvalRunData, type GetEvalRunErrors, type GetEvalRunResponse, type GetEvalRunResponses, type GetExceptionData, type GetExceptionErrors, type GetExceptionResponse, type GetExceptionResponses, 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 GetModelRouteData, type GetModelRouteErrors, type GetModelRouteResponse, type GetModelRouteResponses, type GetOrchestrationData, type GetOrchestrationErrors, type GetOrchestrationResponse, type GetOrchestrationResponses, type GetOrchestrationRunData, type GetOrchestrationRunErrors, type GetOrchestrationRunResponse, type GetOrchestrationRunResponses, type GetOrchestrationVersionData, type GetOrchestrationVersionErrors, type GetOrchestrationVersionResponse, type GetOrchestrationVersionResponses, 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 GetQueueStatsData, type GetQueueStatsErrors, type GetQueueStatsResponse, type GetQueueStatsResponses, type GetQuotaData, type GetQuotaErrors, type GetQuotaResponse, type GetQuotaResponses, 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 GetWorkflowVersionData, type GetWorkflowVersionErrors, type GetWorkflowVersionResponse, type GetWorkflowVersionResponses, type Guardrail, type GuardrailDocument, type GuardrailEvaluation, type GuardrailResourceProperties, type GuardrailVersion, Guardrails, type HumanInputRequest, type IngestDocumentData, type IngestDocumentError, type IngestDocumentErrors, type IngestDocumentResponse, type IngestDocumentResponses, type IngestedDocumentRecord, type IngestionRule, type IngestionRuleResourceProperties, IngestionRules, type JsonLogicScorer, Knowledge, type KnowledgeResult, type ListActivityData, type ListActivityErrors, type ListActivityResponse, type ListActivityResponses, type ListActorsData, type ListActorsError, type ListActorsErrors, type ListActorsResponse, type ListActorsResponses, type ListAgentVersionsData, type ListAgentVersionsError, type ListAgentVersionsErrors, type ListAgentVersionsResponse, type ListAgentVersionsResponses, type ListAgentsData, type ListAgentsError, type ListAgentsErrors, type ListAgentsResponse, type ListAgentsResponses, type ListAiProviderModelsData, type ListAiProviderModelsErrors, type ListAiProviderModelsResponse, type ListAiProviderModelsResponses, type ListAiProvidersData, type ListAiProvidersErrors, type ListAiProvidersResponse, type ListAiProvidersResponses, type ListApiKeysData, type ListApiKeysErrors, type ListApiKeysResponse, type ListApiKeysResponses, type ListApprovalRecurrencesData, type ListApprovalRecurrencesErrors, type ListApprovalRecurrencesResponse, type ListApprovalRecurrencesResponses, type ListApprovalsData, type ListApprovalsErrors, type ListApprovalsResponse, type ListApprovalsResponses, type ListAuditEntriesData, type ListAuditEntriesErrors, type ListAuditEntriesResponse, type ListAuditEntriesResponses, 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 ListDatasetItemsData, type ListDatasetItemsErrors, type ListDatasetItemsResponse, type ListDatasetItemsResponses, type ListDatasetsData, type ListDatasetsErrors, type ListDatasetsResponse, type ListDatasetsResponses, type ListDocumentsData, type ListDocumentsError, type ListDocumentsErrors, type ListDocumentsResponse, type ListDocumentsResponses, type ListEvalResultsData, type ListEvalResultsErrors, type ListEvalResultsResponse, type ListEvalResultsResponses, type ListEvalRunsData, type ListEvalRunsErrors, type ListEvalRunsResponse, type ListEvalRunsResponses, type ListEvalsData, type ListEvalsErrors, type ListEvalsResponse, type ListEvalsResponses, type ListExceptionsData, type ListExceptionsErrors, type ListExceptionsResponse, type ListExceptionsResponses, 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 ListGuardrailVersionsData, type ListGuardrailVersionsError, type ListGuardrailVersionsErrors, type ListGuardrailVersionsResponse, type ListGuardrailVersionsResponses, 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 ListModelRoutesData, type ListModelRoutesErrors, type ListModelRoutesResponse, type ListModelRoutesResponses, type ListOrchestrationRunsData, type ListOrchestrationRunsErrors, type ListOrchestrationRunsResponse, type ListOrchestrationRunsResponses, type ListOrchestrationVersionsData, type ListOrchestrationVersionsErrors, type ListOrchestrationVersionsResponse, type ListOrchestrationVersionsResponses, 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 ListQuotasData, type ListQuotasErrors, type ListQuotasResponse, type ListQuotasResponses, 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 ListWorkflowVersionsData, type ListWorkflowVersionsErrors, type ListWorkflowVersionsResponse, type ListWorkflowVersionsResponses, type ListWorkflowsData, type ListWorkflowsErrors, type ListWorkflowsResponse, type ListWorkflowsResponses, type LlmJudgeScorer, 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 ModelRoute, type ModelRouteResourceProperties, type ModelRouteTarget, ModelRoutes, type NodeExecution, type Options, type Orchestration, type OrchestrationEdge, type OrchestrationId, type OrchestrationNode, type OrchestrationResourceProperties, type OrchestrationRun, type OrchestrationRunId, type OrchestrationVersion, Orchestrations, type OutputSchemaScorer, 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 Price, type PriceBookResponse, type ProjectPrice, type ProjectPriceResourceProperties, type ProjectPricesResponse, type ProjectRecord, Projects, type PromoteAgentReleaseData, type PromoteAgentReleaseError, type PromoteAgentReleaseErrors, type PromoteAgentReleaseResponse, type PromoteAgentReleaseResponses, type ProviderModelsResponse, type ProviderPrice, type ProviderPricesResponse, type PurgeGenerationContentData, type PurgeGenerationContentError, type PurgeGenerationContentErrors, type PurgeGenerationContentResponse, type PurgeGenerationContentResponses, type PurgeTraceContentData, type PurgeTraceContentError, type PurgeTraceContentErrors, type PurgeTraceContentResponse, type PurgeTraceContentResponses, type QueueStats, type Quota, type QuotaResourceProperties, Quotas, 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 ResolveExceptionData, type ResolveExceptionErrors, type ResolveExceptionResponse, type ResolveExceptionResponses, type ResourceDeclaration, type RestoreAgentVersionData, type RestoreAgentVersionError, type RestoreAgentVersionErrors, type RestoreAgentVersionRequest, type RestoreAgentVersionResponse, type RestoreAgentVersionResponses, type RestoreGuardrailVersionData, type RestoreGuardrailVersionError, type RestoreGuardrailVersionErrors, type RestoreGuardrailVersionRequest, type RestoreGuardrailVersionResponse, type RestoreGuardrailVersionResponses, type RestoreOrchestrationVersionData, type RestoreOrchestrationVersionErrors, type RestoreOrchestrationVersionRequest, type RestoreOrchestrationVersionResponse, type RestoreOrchestrationVersionResponses, type RestoreWorkflowVersionData, type RestoreWorkflowVersionErrors, type RestoreWorkflowVersionRequest, type RestoreWorkflowVersionResponse, type RestoreWorkflowVersionResponses, 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 RunUsageTotals, type ScorerResult, type Scorers, type SearchKnowledgeData, type SearchKnowledgeError, type SearchKnowledgeErrors, type SearchKnowledgeResponse, type SearchKnowledgeResponses, type SecretResourceProperties, Secrets, type SendSessionMessageResponse, type SessionId, type SessionRecord, type SessionResourceProperties, Sessions, type SetAgentReleaseData, type SetAgentReleaseError, type SetAgentReleaseErrors, type SetAgentReleaseRequest, type SetAgentReleaseResponse, type SetAgentReleaseResponses, SoatClient, type SoatClientOptions, type StartEvalRunData, type StartEvalRunErrors, type StartEvalRunResponse, type StartEvalRunResponses, 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 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 UpdateDatasetData, type UpdateDatasetErrors, type UpdateDatasetItemData, type UpdateDatasetItemErrors, type UpdateDatasetItemResponse, type UpdateDatasetItemResponses, type UpdateDatasetResponse, type UpdateDatasetResponses, type UpdateDocumentData, type UpdateDocumentError, type UpdateDocumentErrors, type UpdateDocumentResponse, type UpdateDocumentResponses, type UpdateEvalData, type UpdateEvalErrors, type UpdateEvalResponse, type UpdateEvalResponses, 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 UpdateModelRouteData, type UpdateModelRouteErrors, type UpdateModelRouteResponse, type UpdateModelRouteResponses, 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 UpdateQuotaData, type UpdateQuotaErrors, type UpdateQuotaResponse, type UpdateQuotaResponses, 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 UsageAggregateComponent, 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, type WorkflowVersion, Workflows, createClient, createConfig };
|
|
18677
|
+
export { type AbortAgentReleaseData, type AbortAgentReleaseError, type AbortAgentReleaseErrors, type AbortAgentReleaseResponse, type AbortAgentReleaseResponses, type AcceptedGenerationResponse, type AcknowledgeExceptionData, type AcknowledgeExceptionErrors, type AcknowledgeExceptionResponse, type AcknowledgeExceptionResponses, Activity, type ActivityEntry, 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 AgentRelease, type AgentResourceProperties, type AgentVersion, AgentVersions, Agents, type AggregateScores, type AiProviderResourceProperties, AiProviders, type ApiKeyCreated, type ApiKeyRecord, type ApiKeyResourceProperties, ApiKeys, type ApprovalId, type ApprovalItem, type ApprovalRecurrenceGroup, Approvals, type ApproveApprovalData, type ApproveApprovalErrors, type ApproveApprovalResponse, type ApproveApprovalResponses, type AttachUserPoliciesData, type AttachUserPoliciesError, type AttachUserPoliciesErrors, type AttachUserPoliciesResponse, type AttachUserPoliciesResponses, type AuditEntry, AuditLog, type BaselineComparison, type BootstrapUserData, type BootstrapUserError, type BootstrapUserErrors, type BootstrapUserResponse, type BootstrapUserResponses, type CallToolData, type CallToolError, type CallToolErrors, type CallToolRequest, type CallToolResponses, type CancelEvalRunData, type CancelEvalRunErrors, type CancelEvalRunResponse, type CancelEvalRunResponses, type CancelOrchestrationRunData, type CancelOrchestrationRunErrors, type CancelOrchestrationRunResponse, type CancelOrchestrationRunResponses, type Chat, type ChatCompletionChoice, type ChatCompletionRequest, type ChatCompletionResponse, type ChatCompletionResponseMessage, type ChatMessageInput, type ChatResourceProperties, Chats, type ClientOptions, type CompleteIngestionCallbackData, type CompleteIngestionCallbackError, type CompleteIngestionCallbackErrors, type CompleteIngestionCallbackResponse, type CompleteIngestionCallbackResponses, type ContainsScorer, 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 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 CreateDatasetData, type CreateDatasetErrors, type CreateDatasetItemData, type CreateDatasetItemErrors, type CreateDatasetItemFromGenerationData, type CreateDatasetItemFromGenerationErrors, type CreateDatasetItemFromGenerationResponse, type CreateDatasetItemFromGenerationResponses, type CreateDatasetItemResponse, type CreateDatasetItemResponses, type CreateDatasetResponse, type CreateDatasetResponses, type CreateDocumentData, type CreateDocumentError, type CreateDocumentErrors, type CreateDocumentResponse, type CreateDocumentResponses, type CreateEmbeddingsData, type CreateEmbeddingsError, type CreateEmbeddingsErrors, type CreateEmbeddingsResponse, type CreateEmbeddingsResponses, type CreateEvalData, type CreateEvalErrors, type CreateEvalResponse, type CreateEvalResponses, 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 CreateModelRouteData, type CreateModelRouteErrors, type CreateModelRouteResponse, type CreateModelRouteResponses, 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 CreateQuotaData, type CreateQuotaErrors, type CreateQuotaResponse, type CreateQuotaResponses, 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 Dataset, type DatasetItem, type DatasetItemInput, type DatasetItemResourceProperties, type DatasetResourceProperties, 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 DeleteDatasetData, type DeleteDatasetErrors, type DeleteDatasetItemData, type DeleteDatasetItemErrors, type DeleteDatasetItemResponse, type DeleteDatasetItemResponses, type DeleteDatasetResponse, type DeleteDatasetResponses, type DeleteDocumentData, type DeleteDocumentError, type DeleteDocumentErrors, type DeleteDocumentResponse, type DeleteDocumentResponses, type DeleteEvalData, type DeleteEvalErrors, type DeleteEvalResponse, type DeleteEvalResponses, 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 DeleteModelRouteData, type DeleteModelRouteErrors, type DeleteModelRouteResponse, type DeleteModelRouteResponses, 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 DeleteQuotaData, type DeleteQuotaErrors, type DeleteQuotaResponse, type DeleteQuotaResponses, 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 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 Eval, type EvalResourceProperties, type EvalResult, type EvalRun, type EvaluateGuardrailData, type EvaluateGuardrailError, type EvaluateGuardrailErrors, type EvaluateGuardrailResponse, type EvaluateGuardrailResponses, Evaluations, type ExactMatchScorer, type ExceptionId, type ExceptionItem, Exceptions, type ExportAuditEntriesData, type ExportAuditEntriesErrors, type ExportAuditEntriesResponse, type ExportAuditEntriesResponses, type FileRecord, type FileRecordWritable, type FileResourceProperties, Files, type FireTriggerData, type FireTriggerErrors, type FireTriggerRequest, type FireTriggerResponse, type FireTriggerResponses, type ForkSessionData, type ForkSessionError, type ForkSessionErrors, type ForkSessionRequest, type ForkSessionResponse, type ForkSessionResponses, type Formation, type FormationError, 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, type GenerationTranscript, 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 GetAgentVersionData, type GetAgentVersionError, type GetAgentVersionErrors, type GetAgentVersionResponse, type GetAgentVersionResponses, 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 GetAuditEntryData, type GetAuditEntryErrors, type GetAuditEntryResponse, type GetAuditEntryResponses, 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 GetDatasetData, type GetDatasetErrors, type GetDatasetResponse, type GetDatasetResponses, 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 GetEvalData, type GetEvalErrors, type GetEvalResponse, type GetEvalResponses, type GetEvalRunData, type GetEvalRunErrors, type GetEvalRunResponse, type GetEvalRunResponses, type GetExceptionData, type GetExceptionErrors, type GetExceptionResponse, type GetExceptionResponses, 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 GetGenerationTranscriptData, type GetGenerationTranscriptError, type GetGenerationTranscriptErrors, type GetGenerationTranscriptResponse, type GetGenerationTranscriptResponses, 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 GetModelRouteData, type GetModelRouteErrors, type GetModelRouteResponse, type GetModelRouteResponses, type GetOrchestrationData, type GetOrchestrationErrors, type GetOrchestrationResponse, type GetOrchestrationResponses, type GetOrchestrationRunData, type GetOrchestrationRunErrors, type GetOrchestrationRunResponse, type GetOrchestrationRunResponses, type GetOrchestrationVersionData, type GetOrchestrationVersionErrors, type GetOrchestrationVersionResponse, type GetOrchestrationVersionResponses, 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 GetQueueStatsData, type GetQueueStatsErrors, type GetQueueStatsResponse, type GetQueueStatsResponses, type GetQuotaData, type GetQuotaErrors, type GetQuotaResponse, type GetQuotaResponses, 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 GetWorkflowVersionData, type GetWorkflowVersionErrors, type GetWorkflowVersionResponse, type GetWorkflowVersionResponses, type Guardrail, type GuardrailDocument, type GuardrailEvaluation, type GuardrailResourceProperties, type GuardrailVersion, Guardrails, type HumanInputRequest, type IngestDocumentData, type IngestDocumentError, type IngestDocumentErrors, type IngestDocumentResponse, type IngestDocumentResponses, type IngestedDocumentRecord, type IngestionRule, type IngestionRuleResourceProperties, IngestionRules, type JsonLogicScorer, Knowledge, type KnowledgeResult, type ListActivityData, type ListActivityErrors, type ListActivityResponse, type ListActivityResponses, type ListActorsData, type ListActorsError, type ListActorsErrors, type ListActorsResponse, type ListActorsResponses, type ListAgentVersionsData, type ListAgentVersionsError, type ListAgentVersionsErrors, type ListAgentVersionsResponse, type ListAgentVersionsResponses, type ListAgentsData, type ListAgentsError, type ListAgentsErrors, type ListAgentsResponse, type ListAgentsResponses, type ListAiProviderModelsData, type ListAiProviderModelsErrors, type ListAiProviderModelsResponse, type ListAiProviderModelsResponses, type ListAiProvidersData, type ListAiProvidersErrors, type ListAiProvidersResponse, type ListAiProvidersResponses, type ListApiKeysData, type ListApiKeysErrors, type ListApiKeysResponse, type ListApiKeysResponses, type ListApprovalRecurrencesData, type ListApprovalRecurrencesErrors, type ListApprovalRecurrencesResponse, type ListApprovalRecurrencesResponses, type ListApprovalsData, type ListApprovalsErrors, type ListApprovalsResponse, type ListApprovalsResponses, type ListAuditEntriesData, type ListAuditEntriesErrors, type ListAuditEntriesResponse, type ListAuditEntriesResponses, 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 ListDatasetItemsData, type ListDatasetItemsErrors, type ListDatasetItemsResponse, type ListDatasetItemsResponses, type ListDatasetsData, type ListDatasetsErrors, type ListDatasetsResponse, type ListDatasetsResponses, type ListDocumentsData, type ListDocumentsError, type ListDocumentsErrors, type ListDocumentsResponse, type ListDocumentsResponses, type ListEvalResultsData, type ListEvalResultsErrors, type ListEvalResultsResponse, type ListEvalResultsResponses, type ListEvalRunsData, type ListEvalRunsErrors, type ListEvalRunsResponse, type ListEvalRunsResponses, type ListEvalsData, type ListEvalsErrors, type ListEvalsResponse, type ListEvalsResponses, type ListExceptionsData, type ListExceptionsErrors, type ListExceptionsResponse, type ListExceptionsResponses, 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 ListGuardrailVersionsData, type ListGuardrailVersionsError, type ListGuardrailVersionsErrors, type ListGuardrailVersionsResponse, type ListGuardrailVersionsResponses, 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 ListModelRoutesData, type ListModelRoutesErrors, type ListModelRoutesResponse, type ListModelRoutesResponses, type ListOrchestrationRunsData, type ListOrchestrationRunsErrors, type ListOrchestrationRunsResponse, type ListOrchestrationRunsResponses, type ListOrchestrationVersionsData, type ListOrchestrationVersionsErrors, type ListOrchestrationVersionsResponse, type ListOrchestrationVersionsResponses, 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 ListQuotasData, type ListQuotasErrors, type ListQuotasResponse, type ListQuotasResponses, type ListSecretsData, type ListSecretsErrors, type ListSecretsResponse, type ListSecretsResponses, type ListSessionForksData, type ListSessionForksError, type ListSessionForksErrors, type ListSessionForksResponse, type ListSessionForksResponses, 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 ListWorkflowVersionsData, type ListWorkflowVersionsErrors, type ListWorkflowVersionsResponse, type ListWorkflowVersionsResponses, type ListWorkflowsData, type ListWorkflowsErrors, type ListWorkflowsResponse, type ListWorkflowsResponses, type LlmJudgeScorer, 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 ModelRoute, type ModelRouteResourceProperties, type ModelRouteTarget, ModelRoutes, type NodeExecution, type Options, type Orchestration, type OrchestrationEdge, type OrchestrationId, type OrchestrationNode, type OrchestrationResourceProperties, type OrchestrationRun, type OrchestrationRunId, type OrchestrationVersion, Orchestrations, type OutputSchemaScorer, 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 Price, type PriceBookResponse, type ProjectPrice, type ProjectPriceResourceProperties, type ProjectPricesResponse, type ProjectRecord, Projects, type PromoteAgentReleaseData, type PromoteAgentReleaseError, type PromoteAgentReleaseErrors, type PromoteAgentReleaseResponse, type PromoteAgentReleaseResponses, type ProviderModelsResponse, type ProviderPrice, type ProviderPricesResponse, type PurgeGenerationContentData, type PurgeGenerationContentError, type PurgeGenerationContentErrors, type PurgeGenerationContentResponse, type PurgeGenerationContentResponses, type PurgeTraceContentData, type PurgeTraceContentError, type PurgeTraceContentErrors, type PurgeTraceContentResponse, type PurgeTraceContentResponses, type QueueStats, type Quota, type QuotaResourceProperties, Quotas, type RedeliverWebhookDeliveryData, type RedeliverWebhookDeliveryErrors, type RedeliverWebhookDeliveryResponse, type RedeliverWebhookDeliveryResponses, 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 ResolveExceptionData, type ResolveExceptionErrors, type ResolveExceptionResponse, type ResolveExceptionResponses, type ResourceDeclaration, type RestoreAgentVersionData, type RestoreAgentVersionError, type RestoreAgentVersionErrors, type RestoreAgentVersionRequest, type RestoreAgentVersionResponse, type RestoreAgentVersionResponses, type RestoreGuardrailVersionData, type RestoreGuardrailVersionError, type RestoreGuardrailVersionErrors, type RestoreGuardrailVersionRequest, type RestoreGuardrailVersionResponse, type RestoreGuardrailVersionResponses, type RestoreOrchestrationVersionData, type RestoreOrchestrationVersionErrors, type RestoreOrchestrationVersionRequest, type RestoreOrchestrationVersionResponse, type RestoreOrchestrationVersionResponses, type RestoreWorkflowVersionData, type RestoreWorkflowVersionErrors, type RestoreWorkflowVersionRequest, type RestoreWorkflowVersionResponse, type RestoreWorkflowVersionResponses, 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 RunUsageTotals, type ScorerResult, type Scorers, type SearchKnowledgeData, type SearchKnowledgeError, type SearchKnowledgeErrors, type SearchKnowledgeResponse, type SearchKnowledgeResponses, type SecretResourceProperties, Secrets, type SendSessionMessageResponse, type SessionId, type SessionRecord, type SessionResourceProperties, Sessions, type SetAgentReleaseData, type SetAgentReleaseError, type SetAgentReleaseErrors, type SetAgentReleaseRequest, type SetAgentReleaseResponse, type SetAgentReleaseResponses, SoatClient, type SoatClientOptions, type StartEvalRunData, type StartEvalRunErrors, type StartEvalRunResponse, type StartEvalRunResponses, 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 Task, type TaskTransition, Tasks, type Tool, type ToolBinding, type ToolOutputMessageContent, type ToolResourceProperties, type ToolScorer, Tools, type Trace, type TraceTreeNode, Traces, type TranscriptStep, type TranscriptToolCall, type TranscriptToolResult, type TranscriptUsage, 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 UpdateDatasetData, type UpdateDatasetErrors, type UpdateDatasetItemData, type UpdateDatasetItemErrors, type UpdateDatasetItemResponse, type UpdateDatasetItemResponses, type UpdateDatasetResponse, type UpdateDatasetResponses, type UpdateDocumentData, type UpdateDocumentError, type UpdateDocumentErrors, type UpdateDocumentResponse, type UpdateDocumentResponses, type UpdateEvalData, type UpdateEvalErrors, type UpdateEvalResponse, type UpdateEvalResponses, 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 UpdateModelRouteData, type UpdateModelRouteErrors, type UpdateModelRouteResponse, type UpdateModelRouteResponses, 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 UpdateQuotaData, type UpdateQuotaErrors, type UpdateQuotaResponse, type UpdateQuotaResponses, 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 UsageAggregateComponent, 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, type WorkflowVersion, Workflows, createClient, createConfig };
|