@naturali/sdk 0.127.11 → 0.129.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +65 -43
- package/dist/index.d.cts +494 -258
- package/dist/index.d.mts +494 -258
- package/dist/index.mjs +65 -43
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -750,21 +750,21 @@ type Agent = {
|
|
|
750
750
|
* Knowledge retrieval config injected before every generation
|
|
751
751
|
*/
|
|
752
752
|
knowledge_config?: {
|
|
753
|
-
|
|
753
|
+
memory_store_ids?: Array<string>;
|
|
754
754
|
document_ids?: Array<string>;
|
|
755
755
|
document_paths?: Array<string>;
|
|
756
756
|
/**
|
|
757
|
-
* Key-value pairs a result's own `tags` must all contain (exact match). Scopes documents and
|
|
757
|
+
* Key-value pairs a result's own `tags` must all contain (exact match). Scopes documents and memories alike.
|
|
758
758
|
*/
|
|
759
759
|
tags?: TagBag;
|
|
760
760
|
min_score?: number;
|
|
761
761
|
limit?: number;
|
|
762
762
|
/**
|
|
763
|
-
* Public ID of the memory the agent can write to during generation. When set, a write_memory tool is automatically available to the agent.
|
|
763
|
+
* Public ID of the memory store the agent can write to during generation. When set, a write_memory tool is automatically available to the agent.
|
|
764
764
|
*/
|
|
765
|
-
|
|
765
|
+
write_memory_store_id?: string | null;
|
|
766
766
|
/**
|
|
767
|
-
* Automatic fact extraction from completed generation turns (requires
|
|
767
|
+
* Automatic fact extraction from completed generation turns (requires write_memory_store_id). Pass `true` to enable with defaults, or an object to customize the provider, model, and prompt used for the extraction completion. Extracted facts are written to the write memory store through the standard dedup/merge/skip algorithm.
|
|
768
768
|
*/
|
|
769
769
|
extraction?: boolean | {
|
|
770
770
|
/**
|
|
@@ -867,7 +867,7 @@ type AgentVersion = {
|
|
|
867
867
|
/**
|
|
868
868
|
* The agent's configuration as it stood at this version: every mutable field of the `Agent` schema (`instructions`, `model`, `tool_bindings`, `max_steps`, `tool_choice`, `stop_conditions`, `active_tool_ids`, `step_rules`, `boundary_policy`, `temperature`, `knowledge_config`, `output_schema`, `max_context_messages`, `single_session_per_actor`, `on_approval_expiry`, `guardrail_ids`, `ai_provider_id`, `model_route_id`, `name`), and none of its identity or bookkeeping fields (`id`, `project_id`, `version`, `active_release`, timestamps).
|
|
869
869
|
*
|
|
870
|
-
* Deliberately open rather than a fixed schema: an archive written by an earlier release of the runtime reflects the agent surface **of its own time**, so it may carry fields the current schema no longer defines, or lack ones it has since gained. Knowledge retrieval is not part of the snapshot — a version records which `knowledge_config` applied, while the documents and
|
|
870
|
+
* Deliberately open rather than a fixed schema: an archive written by an earlier release of the runtime reflects the agent surface **of its own time**, so it may carry fields the current schema no longer defines, or lack ones it has since gained. Knowledge retrieval is not part of the snapshot — a version records which `knowledge_config` applied, while the documents and memory stores it resolves keep their own histories and are pinned at generation time.
|
|
871
871
|
*/
|
|
872
872
|
config?: {
|
|
873
873
|
[key: string]: unknown;
|
|
@@ -969,21 +969,21 @@ type CreateAgentRequest = {
|
|
|
969
969
|
};
|
|
970
970
|
temperature?: number;
|
|
971
971
|
knowledge_config?: {
|
|
972
|
-
|
|
972
|
+
memory_store_ids?: Array<string>;
|
|
973
973
|
document_ids?: Array<string>;
|
|
974
974
|
document_paths?: Array<string>;
|
|
975
975
|
/**
|
|
976
|
-
* Key-value pairs a result's own `tags` must all contain (exact match). Scopes documents and
|
|
976
|
+
* Key-value pairs a result's own `tags` must all contain (exact match). Scopes documents and memories alike.
|
|
977
977
|
*/
|
|
978
978
|
tags?: TagBag;
|
|
979
979
|
min_score?: number;
|
|
980
980
|
limit?: number;
|
|
981
981
|
/**
|
|
982
|
-
* Public ID of the memory the agent can write to during generation. When set, a write_memory tool is automatically available to the agent.
|
|
982
|
+
* Public ID of the memory store the agent can write to during generation. When set, a write_memory tool is automatically available to the agent.
|
|
983
983
|
*/
|
|
984
|
-
|
|
984
|
+
write_memory_store_id?: string | null;
|
|
985
985
|
/**
|
|
986
|
-
* Automatic fact extraction from completed generation turns (requires
|
|
986
|
+
* Automatic fact extraction from completed generation turns (requires write_memory_store_id). Pass `true` to enable with defaults, or an object to customize the provider, model, and prompt used for the extraction completion. Extracted facts are written to the write memory store through the standard dedup/merge/skip algorithm.
|
|
987
987
|
*/
|
|
988
988
|
extraction?: boolean | {
|
|
989
989
|
/**
|
|
@@ -1086,21 +1086,21 @@ type UpdateAgentRequest = {
|
|
|
1086
1086
|
} | null;
|
|
1087
1087
|
temperature?: number | null;
|
|
1088
1088
|
knowledge_config?: {
|
|
1089
|
-
|
|
1089
|
+
memory_store_ids?: Array<string>;
|
|
1090
1090
|
document_ids?: Array<string>;
|
|
1091
1091
|
document_paths?: Array<string>;
|
|
1092
1092
|
/**
|
|
1093
|
-
* Key-value pairs a result's own `tags` must all contain (exact match). Scopes documents and
|
|
1093
|
+
* Key-value pairs a result's own `tags` must all contain (exact match). Scopes documents and memories alike.
|
|
1094
1094
|
*/
|
|
1095
1095
|
tags?: TagBag;
|
|
1096
1096
|
min_score?: number;
|
|
1097
1097
|
limit?: number;
|
|
1098
1098
|
/**
|
|
1099
|
-
* Public ID of the memory the agent can write to during generation. When set, a write_memory tool is automatically available to the agent.
|
|
1099
|
+
* Public ID of the memory store the agent can write to during generation. When set, a write_memory tool is automatically available to the agent.
|
|
1100
1100
|
*/
|
|
1101
|
-
|
|
1101
|
+
write_memory_store_id?: string | null;
|
|
1102
1102
|
/**
|
|
1103
|
-
* Automatic fact extraction from completed generation turns (requires
|
|
1103
|
+
* Automatic fact extraction from completed generation turns (requires write_memory_store_id). Pass `true` to enable with defaults, or an object to customize the provider, model, and prompt used for the extraction completion. Extracted facts are written to the write memory store through the standard dedup/merge/skip algorithm.
|
|
1104
1104
|
*/
|
|
1105
1105
|
extraction?: boolean | {
|
|
1106
1106
|
/**
|
|
@@ -1205,18 +1205,18 @@ type CreateAgentGenerationRequest = {
|
|
|
1205
1205
|
[key: string]: unknown;
|
|
1206
1206
|
} | null;
|
|
1207
1207
|
/**
|
|
1208
|
-
* Per-turn override of the agent's `knowledge_config.extraction` default. Omit to follow the agent's stored config. Set `false` to suppress automatic memory extraction for this turn (e.g. an operational or tool-listing turn that would only add noise to a curated memory). Set `true` to force extraction on for this turn even when the agent does not enable it by default, provided the agent has a `
|
|
1208
|
+
* Per-turn override of the agent's `knowledge_config.extraction` default. Omit to follow the agent's stored config. Set `false` to suppress automatic memory store extraction for this turn (e.g. an operational or tool-listing turn that would only add noise to a curated memory store). Set `true` to force extraction on for this turn even when the agent does not enable it by default, provided the agent has a `write_memory_store_id`. Has no effect on streaming or `requires_action` turns, which never extract.
|
|
1209
1209
|
*/
|
|
1210
1210
|
extract?: boolean;
|
|
1211
1211
|
/**
|
|
1212
|
-
* Per-generation knowledge retrieval override. Array filters (
|
|
1212
|
+
* Per-generation knowledge retrieval override. Array filters (memory_store_ids, document_ids, document_paths) are unioned with the agent's stored knowledge_config; `tags` pairs are merged with the override winning per key; scalar fields (min_score, limit) use the per-generation value when present.
|
|
1213
1213
|
*/
|
|
1214
1214
|
knowledge_config?: {
|
|
1215
|
-
|
|
1215
|
+
memory_store_ids?: Array<string>;
|
|
1216
1216
|
document_ids?: Array<string>;
|
|
1217
1217
|
document_paths?: Array<string>;
|
|
1218
1218
|
/**
|
|
1219
|
-
* Key-value pairs a result's own `tags` must all contain (exact match). Scopes documents and
|
|
1219
|
+
* Key-value pairs a result's own `tags` must all contain (exact match). Scopes documents and memories alike.
|
|
1220
1220
|
*/
|
|
1221
1221
|
tags?: TagBag;
|
|
1222
1222
|
min_score?: number;
|
|
@@ -3035,13 +3035,13 @@ type AgentResourceProperties = {
|
|
|
3035
3035
|
*/
|
|
3036
3036
|
on_approval_expiry?: string | null;
|
|
3037
3037
|
/**
|
|
3038
|
-
* Knowledge retrieval configuration. When set, relevant documents and
|
|
3038
|
+
* Knowledge retrieval configuration. When set, relevant documents and memories are injected into every generation.
|
|
3039
3039
|
*/
|
|
3040
3040
|
knowledge_config?: {
|
|
3041
3041
|
/**
|
|
3042
|
-
* Public IDs of
|
|
3042
|
+
* Public IDs of memory stores to retrieve from
|
|
3043
3043
|
*/
|
|
3044
|
-
|
|
3044
|
+
memory_store_ids?: Array<string>;
|
|
3045
3045
|
/**
|
|
3046
3046
|
* Public IDs of documents to retrieve from
|
|
3047
3047
|
*/
|
|
@@ -3051,7 +3051,7 @@ type AgentResourceProperties = {
|
|
|
3051
3051
|
*/
|
|
3052
3052
|
document_paths?: Array<string>;
|
|
3053
3053
|
/**
|
|
3054
|
-
* Retrieve from documents and
|
|
3054
|
+
* Retrieve from documents and memories whose tags contain all these key-value pairs.
|
|
3055
3055
|
*/
|
|
3056
3056
|
tags?: TagBag;
|
|
3057
3057
|
/**
|
|
@@ -3063,11 +3063,11 @@ type AgentResourceProperties = {
|
|
|
3063
3063
|
*/
|
|
3064
3064
|
limit?: number;
|
|
3065
3065
|
/**
|
|
3066
|
-
* Public ID of the memory the agent can write to. When set, a `write_memory` tool is automatically available to the agent.
|
|
3066
|
+
* Public ID of the memory store the agent can write to. When set, a `write_memory` tool is automatically available to the agent.
|
|
3067
3067
|
*/
|
|
3068
|
-
|
|
3068
|
+
write_memory_store_id?: string | null;
|
|
3069
3069
|
/**
|
|
3070
|
-
* Automatic fact extraction from completed generation turns (requires
|
|
3070
|
+
* Automatic fact extraction from completed generation turns (requires write_memory_store_id). Pass `true` to enable with defaults, or an object to customize the provider, model, and prompt used for the extraction completion.
|
|
3071
3071
|
*/
|
|
3072
3072
|
extraction?: boolean | {
|
|
3073
3073
|
/**
|
|
@@ -3374,39 +3374,51 @@ type DocumentResourceProperties = {
|
|
|
3374
3374
|
/**
|
|
3375
3375
|
* Creates a named memory store that actors can read from and write to across conversations.
|
|
3376
3376
|
*/
|
|
3377
|
-
type
|
|
3377
|
+
type MemoryStoreResourceProperties = {
|
|
3378
3378
|
/**
|
|
3379
|
-
* Memory display name
|
|
3379
|
+
* Memory store display name
|
|
3380
3380
|
*/
|
|
3381
3381
|
name: string;
|
|
3382
3382
|
/**
|
|
3383
|
-
* What this memory stores
|
|
3383
|
+
* What this memory store stores
|
|
3384
3384
|
*/
|
|
3385
3385
|
description?: string | null;
|
|
3386
3386
|
tags?: NullableTagBag;
|
|
3387
|
+
/**
|
|
3388
|
+
* Cosine similarity at or above which an incoming fact is already known and the write is skipped. Null uses the algorithm constant (0.95). This is where a template sets the corpus's dedup policy: a `memory` resource has no threshold of its own.
|
|
3389
|
+
*/
|
|
3390
|
+
duplicate_threshold?: number | null;
|
|
3391
|
+
/**
|
|
3392
|
+
* Cosine similarity at or above which an incoming fact restates a known one that has changed, retiring it. Null uses the algorithm constant (0.90). Must be lower than the effective `duplicate_threshold`.
|
|
3393
|
+
*/
|
|
3394
|
+
supersede_threshold?: number | null;
|
|
3387
3395
|
};
|
|
3388
3396
|
/**
|
|
3389
|
-
* Adds a single
|
|
3397
|
+
* Adds a single memory to a memory store.
|
|
3390
3398
|
*/
|
|
3391
|
-
type
|
|
3399
|
+
type MemoryResourceProperties = {
|
|
3392
3400
|
/**
|
|
3393
|
-
* Public ID of the parent memory (or ref expression)
|
|
3401
|
+
* Public ID of the parent memory store (or ref expression)
|
|
3394
3402
|
*/
|
|
3395
|
-
|
|
3403
|
+
memory_store_id: string;
|
|
3396
3404
|
/**
|
|
3397
|
-
* Text content of the memory
|
|
3405
|
+
* Text content of the memory
|
|
3398
3406
|
*/
|
|
3399
3407
|
content: string;
|
|
3400
3408
|
/**
|
|
3401
|
-
*
|
|
3409
|
+
* Whether there is a source to point at (defaults to manual). `conversation` requires `source_id`.
|
|
3410
|
+
*/
|
|
3411
|
+
source_type?: 'manual' | 'conversation';
|
|
3412
|
+
/**
|
|
3413
|
+
* The conversation this fact was learned in, when `source_type` is `conversation`; null when it is `manual`.
|
|
3402
3414
|
*/
|
|
3403
|
-
|
|
3415
|
+
source_id?: string | null;
|
|
3404
3416
|
/**
|
|
3405
|
-
* Per-
|
|
3417
|
+
* Per-memory key-value tags for memory-granularity filtering in knowledge search.
|
|
3406
3418
|
*/
|
|
3407
3419
|
tags?: NullableTagBag;
|
|
3408
3420
|
/**
|
|
3409
|
-
* Arbitrary structured metadata attached to the
|
|
3421
|
+
* Arbitrary structured metadata attached to the memory
|
|
3410
3422
|
*/
|
|
3411
3423
|
metadata?: {
|
|
3412
3424
|
[key: string]: unknown;
|
|
@@ -3630,7 +3642,7 @@ type IngestionRuleResourceProperties = {
|
|
|
3630
3642
|
} | null;
|
|
3631
3643
|
};
|
|
3632
3644
|
/**
|
|
3633
|
-
* Creates a DAG orchestration that wires agents, tools, and knowledge lookups into a repeatable pipeline within the formation's project. Node resource references (`agent_id`, `tool_id`, `
|
|
3645
|
+
* Creates a DAG orchestration that wires agents, tools, and knowledge lookups into a repeatable pipeline within the formation's project. Node resource references (`agent_id`, `tool_id`, `memory_store_id`, `orchestration_id`) accept `{ "ref": "LogicalId" }` expressions to point at other resources declared in the same template — the basis for deploying an agent "squad" (a team of agents plus the flow that coordinates them) as a single stack.
|
|
3634
3646
|
*/
|
|
3635
3647
|
type OrchestrationResourceProperties = {
|
|
3636
3648
|
/**
|
|
@@ -3642,7 +3654,7 @@ type OrchestrationResourceProperties = {
|
|
|
3642
3654
|
*/
|
|
3643
3655
|
description?: string | null;
|
|
3644
3656
|
/**
|
|
3645
|
-
* Ordered list of node definitions. A node's resource references (`agent_id`, `tool_id`, `
|
|
3657
|
+
* Ordered list of node definitions. A node's resource references (`agent_id`, `tool_id`, `memory_store_id`, `orchestration_id`) may use `{ "ref": "LogicalId" }` to bind to other resources in the template.
|
|
3646
3658
|
*/
|
|
3647
3659
|
nodes: Array<{
|
|
3648
3660
|
[key: string]: unknown;
|
|
@@ -3777,7 +3789,7 @@ type GuardrailResourceProperties = {
|
|
|
3777
3789
|
};
|
|
3778
3790
|
type ResourceDeclaration = {
|
|
3779
3791
|
/**
|
|
3780
|
-
* Resource type. The types this API accepts are `ai_provider`, `tool`, `agent`, `actor`, `conversation`, `dataset`, `dataset_item`, `document`, `file`, `guardrail`, `ingestion_rule`, `
|
|
3792
|
+
* Resource type. The types this API accepts are `ai_provider`, `tool`, `agent`, `actor`, `conversation`, `dataset`, `dataset_item`, `document`, `file`, `guardrail`, `ingestion_rule`, `memory_store`, `memory`, `model_route`, `eval`, `orchestration`, `quota`, `secret`, `session`, `trigger` and `workflow` — plus two naturali registers itself and handles through its own lifecycle: `channel`, taking the same property names the channels API takes (its credential properties are write-only, so a tenant credential never lands in the resource ledger), and `naturali_ai_provider`, which takes a `default_model` from the model catalog and provisions a provider running on naturali's own model access (it carries no credential of yours, so it accepts none). A template naming any other type is refused with `400 unsupported_resource_type` before it reaches the runtime — including the runtime's own `api_key`, `chat`, `policy`, `project_price` and `webhook` types, which this API does not expose.
|
|
3781
3793
|
*
|
|
3782
3794
|
* This is deliberately not an enum: a deployment operator can register additional resource types backed by their own handler, and those are declared here exactly like a built-in one. The set a given deployment accepts is authoritative in the server, which rejects an unregistered type with `VALIDATION_FAILED` and lists what it does support.
|
|
3783
3795
|
*
|
|
@@ -3813,7 +3825,7 @@ type FormationResource = {
|
|
|
3813
3825
|
*/
|
|
3814
3826
|
logical_id?: string;
|
|
3815
3827
|
/**
|
|
3816
|
-
* Resource type (e.g. agent, memory)
|
|
3828
|
+
* Resource type (e.g. agent, memory store)
|
|
3817
3829
|
*/
|
|
3818
3830
|
resource_type?: string;
|
|
3819
3831
|
/**
|
|
@@ -4025,6 +4037,11 @@ type Generation = {
|
|
|
4025
4037
|
*
|
|
4026
4038
|
*/
|
|
4027
4039
|
chain_id?: string | null;
|
|
4040
|
+
/**
|
|
4041
|
+
* Public ID of the conversation this turn served, or null for a generation started outside one — a direct call, a trigger, an orchestration node. This is the edge a memory assertion walks up to reach the conversation a fact was learned in.
|
|
4042
|
+
*
|
|
4043
|
+
*/
|
|
4044
|
+
conversation_id?: string | null;
|
|
4028
4045
|
/**
|
|
4029
4046
|
* Public ID of the session this generation was dispatched through, or null for a generation started outside one. This is the link a per-session cost reading follows; the session's own `usage` field reports the roll-up directly.
|
|
4030
4047
|
*
|
|
@@ -4099,7 +4116,7 @@ type Generation = {
|
|
|
4099
4116
|
*/
|
|
4100
4117
|
agent_version?: number | null;
|
|
4101
4118
|
/**
|
|
4102
|
-
* Memory-extraction summary recorded for this generation. Set when the agent's `knowledge_config.extraction` produced one for this turn.
|
|
4119
|
+
* Memory-extraction summary recorded for this generation. Set when the agent's `knowledge_config.extraction` produced one for this turn. The rows behind these counts are in `memory_assertions`, so the summary and what it summarizes can be reconciled.
|
|
4103
4120
|
*
|
|
4104
4121
|
*/
|
|
4105
4122
|
extraction?: {
|
|
@@ -4108,18 +4125,24 @@ type Generation = {
|
|
|
4108
4125
|
*/
|
|
4109
4126
|
candidates?: number;
|
|
4110
4127
|
/**
|
|
4111
|
-
* Number of new
|
|
4128
|
+
* Number of new memories created
|
|
4112
4129
|
*/
|
|
4113
4130
|
created?: number;
|
|
4114
4131
|
/**
|
|
4115
|
-
* Number of
|
|
4132
|
+
* Number of candidates that restated a known fact that had changed, retiring the memory holding it
|
|
4133
|
+
*
|
|
4116
4134
|
*/
|
|
4117
|
-
|
|
4135
|
+
superseded?: number;
|
|
4118
4136
|
/**
|
|
4119
4137
|
* Number of candidates skipped (e.g. duplicates)
|
|
4120
4138
|
*/
|
|
4121
4139
|
skipped?: number;
|
|
4122
4140
|
} | null;
|
|
4141
|
+
/**
|
|
4142
|
+
* Every memory write this turn made, oldest first — the post-turn extractor's and the agent's own `write_memory` calls alike, which the `extraction` counts never covered. Present on the single read only; a listing would make it one extra query per generation.
|
|
4143
|
+
*
|
|
4144
|
+
*/
|
|
4145
|
+
memory_assertions?: Array<MemoryAssertion>;
|
|
4123
4146
|
/**
|
|
4124
4147
|
* What this turn's tool definitions cost to send — the one part of a prompt no provider reports and no caller can derive, since the tool block is a constant inside the reported totals and identical on every step.
|
|
4125
4148
|
*
|
|
@@ -4354,6 +4377,51 @@ type GenerationTranscript = {
|
|
|
4354
4377
|
*/
|
|
4355
4378
|
content_redacted_by_principal_id?: string | null;
|
|
4356
4379
|
};
|
|
4380
|
+
/**
|
|
4381
|
+
* One write attempt against a memory store: some principal, through some mechanism, claimed a fact. Append-only, and recorded whatever the outcome — including the skips, which left no record anywhere before.
|
|
4382
|
+
*/
|
|
4383
|
+
type MemoryAssertion = {
|
|
4384
|
+
id?: string;
|
|
4385
|
+
memory_store_id?: string;
|
|
4386
|
+
/**
|
|
4387
|
+
* The memory this assertion resolved into: the new memory for `created` and `superseded`, the existing memory that matched for `skipped`. Null only once that memory has been deleted.
|
|
4388
|
+
*/
|
|
4389
|
+
memory_id?: string | null;
|
|
4390
|
+
/**
|
|
4391
|
+
* The memory this assertion retired, on a `superseded` outcome; null otherwise. Read back from `memories.superseded_by_memory_id` rather than stored here, because validity lives on the memory — where every read filters it — and exactly one memory is superseded per assertion.
|
|
4392
|
+
*/
|
|
4393
|
+
superseded_memory_id?: string | null;
|
|
4394
|
+
/**
|
|
4395
|
+
* The text as asserted, which is not necessarily the memory's text: a `skipped` assertion records what was claimed, while the memory keeps what it already held.
|
|
4396
|
+
*/
|
|
4397
|
+
content?: string;
|
|
4398
|
+
/**
|
|
4399
|
+
* Which door the write came through. `tool` is the agent's `write_memory` call mid-turn; `rule` is a post-turn pass over the finished turn; `api` is `POST /v1/projects/{project_id}/memories`; `formation` is a `memory` resource in an applied template. It answers *how*, never *who* — the principal fields answer that.
|
|
4400
|
+
*/
|
|
4401
|
+
mechanism?: 'tool' | 'rule' | 'api' | 'formation';
|
|
4402
|
+
/**
|
|
4403
|
+
* Set only when `mechanism` is `rule`. Null means the built-in extractor driven by the agent's `knowledge_config.extraction`.
|
|
4404
|
+
*/
|
|
4405
|
+
rule_id?: number | null;
|
|
4406
|
+
/**
|
|
4407
|
+
* The turn that asserted the fact — the origin of anything an agent wrote, and the edge a conversation is reachable from. Null on the `api` and `formation` doors, which have no generation behind them.
|
|
4408
|
+
*/
|
|
4409
|
+
generation_id?: string | null;
|
|
4410
|
+
/**
|
|
4411
|
+
* Who claimed the fact, in the vocabulary a generation records its starter with, plus `agent`. On both agent doors the principal is the agent itself — the extractor runs under its identity.
|
|
4412
|
+
*/
|
|
4413
|
+
principal_type?: string;
|
|
4414
|
+
principal_id?: string;
|
|
4415
|
+
/**
|
|
4416
|
+
* What the write resolved to. `created` is a distinct fact, `superseded` is the same fact changed (the top match was invalidated and replaced), `skipped` is a fact already known.
|
|
4417
|
+
*/
|
|
4418
|
+
outcome?: 'created' | 'superseded' | 'skipped';
|
|
4419
|
+
/**
|
|
4420
|
+
* The top match's cosine similarity — the number that chose the outcome. Null when there was nothing to compare against, or when the content could not be embedded.
|
|
4421
|
+
*/
|
|
4422
|
+
similarity?: number | null;
|
|
4423
|
+
created_at?: Date;
|
|
4424
|
+
};
|
|
4357
4425
|
/**
|
|
4358
4426
|
* Token counts and cost for one slice of the meter. Tokens and cost only: a `compute_second` or `gb_day` meter is reported by the aggregate's `components` array.
|
|
4359
4427
|
*
|
|
@@ -4663,19 +4731,19 @@ type MemoryKnowledgeResult = {
|
|
|
4663
4731
|
*/
|
|
4664
4732
|
source_type: 'memory';
|
|
4665
4733
|
/**
|
|
4666
|
-
* Public ID of the memory
|
|
4734
|
+
* Public ID of the memory
|
|
4667
4735
|
*/
|
|
4668
|
-
|
|
4736
|
+
memory_id: string;
|
|
4669
4737
|
/**
|
|
4670
|
-
* Public ID of the parent memory
|
|
4738
|
+
* Public ID of the parent memory store
|
|
4671
4739
|
*/
|
|
4672
|
-
|
|
4740
|
+
memory_store_id: string;
|
|
4673
4741
|
/**
|
|
4674
|
-
* Human-readable name of the parent memory
|
|
4742
|
+
* Human-readable name of the parent memory store
|
|
4675
4743
|
*/
|
|
4676
|
-
|
|
4744
|
+
memory_store_name: string;
|
|
4677
4745
|
/**
|
|
4678
|
-
* Text content of the memory
|
|
4746
|
+
* Text content of the memory
|
|
4679
4747
|
*/
|
|
4680
4748
|
content: string;
|
|
4681
4749
|
/**
|
|
@@ -4697,55 +4765,65 @@ type MemoryKnowledgeResult = {
|
|
|
4697
4765
|
};
|
|
4698
4766
|
type Memory = {
|
|
4699
4767
|
id?: string;
|
|
4700
|
-
|
|
4701
|
-
name?: string;
|
|
4702
|
-
description?: string | null;
|
|
4768
|
+
memory_store_id?: string;
|
|
4703
4769
|
/**
|
|
4704
|
-
*
|
|
4770
|
+
* The text this memory currently holds. Stored once per distinct text per store and shared with every assertion that stated it, so a memory carries no copy of its own.
|
|
4705
4771
|
*/
|
|
4706
|
-
tags?: NullableTagBag;
|
|
4707
|
-
created_at?: Date;
|
|
4708
|
-
updated_at?: Date;
|
|
4709
|
-
};
|
|
4710
|
-
type MemoryEntry = {
|
|
4711
|
-
id?: string;
|
|
4712
|
-
memory_id?: string;
|
|
4713
4772
|
content?: string;
|
|
4714
|
-
source_type?: 'manual' | 'agent' | 'extraction' | 'orchestration';
|
|
4715
4773
|
/**
|
|
4716
|
-
*
|
|
4774
|
+
* Whether there is a source to point at. `conversation` means `source_id` names the conversation this fact was learned in; `manual` means there is nothing to point at — a direct API write, or an agent write made outside a conversation.
|
|
4717
4775
|
*/
|
|
4718
|
-
|
|
4776
|
+
source_type?: 'manual' | 'conversation';
|
|
4719
4777
|
/**
|
|
4720
|
-
*
|
|
4778
|
+
* The conversation this fact was learned in, when `source_type` is `conversation`; null when it is `manual`. Deliberately a loose pointer rather than a foreign key, so deleting the conversation leaves the id in place — the record of where the fact came from outlives its source.
|
|
4721
4779
|
*/
|
|
4722
|
-
|
|
4723
|
-
[key: string]: unknown;
|
|
4724
|
-
} | null;
|
|
4780
|
+
source_id?: string | null;
|
|
4725
4781
|
/**
|
|
4726
|
-
*
|
|
4782
|
+
* Per-memory key-value tags, matched at memory granularity by knowledge search.
|
|
4727
4783
|
*/
|
|
4728
|
-
|
|
4784
|
+
tags?: NullableTagBag;
|
|
4729
4785
|
/**
|
|
4730
|
-
*
|
|
4786
|
+
* Arbitrary structured metadata attached to the memory
|
|
4731
4787
|
*/
|
|
4732
|
-
|
|
4788
|
+
metadata?: {
|
|
4789
|
+
[key: string]: unknown;
|
|
4790
|
+
} | null;
|
|
4733
4791
|
/**
|
|
4734
|
-
* When the
|
|
4792
|
+
* When the memory was superseded. Null means the memory is currently valid. Invalidated memories are excluded from listing, from write deduplication, and from knowledge search, but remain readable by ID — with their original text — for audit.
|
|
4735
4793
|
*/
|
|
4736
4794
|
invalidated_at?: Date | null;
|
|
4737
4795
|
/**
|
|
4738
|
-
* The
|
|
4796
|
+
* The memory that replaced this one, when it was superseded. Null for valid memories.
|
|
4739
4797
|
*/
|
|
4740
|
-
|
|
4798
|
+
superseded_by_memory_id?: string | null;
|
|
4741
4799
|
created_at?: Date;
|
|
4742
4800
|
updated_at?: Date;
|
|
4743
4801
|
};
|
|
4744
|
-
type
|
|
4802
|
+
type MemoryWriteResult = Memory & {
|
|
4803
|
+
/**
|
|
4804
|
+
* The outcome of the write. `created` means the fact was distinct and a new memory holds it. `superseded` means it restated a fact that had changed: the matched memory was invalidated, points at the replacement, and the replacement is what is returned. `skipped` means the fact was already known and the existing memory is returned unchanged. Every outcome is recorded as an assertion, readable at `GET /v1/projects/{project_id}/memories/{memory_id}/assertions`.
|
|
4805
|
+
*/
|
|
4806
|
+
action?: 'created' | 'superseded' | 'skipped';
|
|
4807
|
+
};
|
|
4808
|
+
type MemoryStore = {
|
|
4809
|
+
id?: string;
|
|
4810
|
+
project_id?: string;
|
|
4811
|
+
name?: string;
|
|
4812
|
+
description?: string | null;
|
|
4813
|
+
/**
|
|
4814
|
+
* Key-value tags for filtering in knowledge search.
|
|
4815
|
+
*/
|
|
4816
|
+
tags?: NullableTagBag;
|
|
4817
|
+
/**
|
|
4818
|
+
* The store's duplicate cutoff, or `null` when it has never been set. Reported as `null` rather than as the constant it resolves to: a store with no policy must read differently from one pinned to today's default.
|
|
4819
|
+
*/
|
|
4820
|
+
duplicate_threshold?: number | null;
|
|
4745
4821
|
/**
|
|
4746
|
-
* The
|
|
4822
|
+
* The store's supersede cutoff, or `null` when it has never been set.
|
|
4747
4823
|
*/
|
|
4748
|
-
|
|
4824
|
+
supersede_threshold?: number | null;
|
|
4825
|
+
created_at?: Date;
|
|
4826
|
+
updated_at?: Date;
|
|
4749
4827
|
};
|
|
4750
4828
|
type ModelRouteTarget = {
|
|
4751
4829
|
/**
|
|
@@ -4881,7 +4959,7 @@ type OrchestrationNode = {
|
|
|
4881
4959
|
*/
|
|
4882
4960
|
id: string;
|
|
4883
4961
|
/**
|
|
4884
|
-
* Node execution type. Known types: agent, tool, transform, knowledge,
|
|
4962
|
+
* Node execution type. Known types: agent, tool, transform, knowledge, condition, human, approval, loop, poll, delay, webhook, emit_event, sub_orchestration. Open set — new types may be added in minor releases, and an unrecognized type is accepted at create time (the run fails when the node dispatches), so clients must tolerate unknown values.
|
|
4885
4963
|
*/
|
|
4886
4964
|
type: string;
|
|
4887
4965
|
/**
|
|
@@ -4913,10 +4991,6 @@ type OrchestrationNode = {
|
|
|
4913
4991
|
* For human nodes — constrained choices.
|
|
4914
4992
|
*/
|
|
4915
4993
|
options?: Array<string>;
|
|
4916
|
-
/**
|
|
4917
|
-
* For memory_write nodes — public ID of the target memory.
|
|
4918
|
-
*/
|
|
4919
|
-
memory_id?: string;
|
|
4920
4994
|
/**
|
|
4921
4995
|
* For approval nodes — input-mapping-style object (JSON Logic values) resolved against run state into the proposed tool call's arguments, frozen onto the created approval item.
|
|
4922
4996
|
*
|
|
@@ -14903,7 +14977,7 @@ type SearchKnowledgeData = {
|
|
|
14903
14977
|
*/
|
|
14904
14978
|
rrf_k?: number;
|
|
14905
14979
|
/**
|
|
14906
|
-
* Half-life, in days, of a recency decay applied to **memory** results after fusion: a result's `score` is multiplied by `2 ^ (-age_in_days / recency_half_life_days)`, where age is measured from its `updated_at`. Document results are never decayed. `0` — the default, and the default of the deployment's `KNOWLEDGE_RECENCY_HALF_LIFE_DAYS` — disables the blend entirely; it is a switch, not a lower bound, and sending `0` turns off a deployment-wide decay for this one request. Accepts fractions (`0.5` is twelve hours). How many ranks a given half-life costs depends on `rrf_k`. Only applies when `query` is provided.
|
|
14980
|
+
* Half-life, in days, of a recency decay applied to **memory store** results after fusion: a result's `score` is multiplied by `2 ^ (-age_in_days / recency_half_life_days)`, where age is measured from its `updated_at`. Document results are never decayed. `0` — the default, and the default of the deployment's `KNOWLEDGE_RECENCY_HALF_LIFE_DAYS` — disables the blend entirely; it is a switch, not a lower bound, and sending `0` turns off a deployment-wide decay for this one request. Accepts fractions (`0.5` is twelve hours). How many ranks a given half-life costs depends on `rrf_k`. Only applies when `query` is provided.
|
|
14907
14981
|
*/
|
|
14908
14982
|
recency_half_life_days?: number;
|
|
14909
14983
|
/**
|
|
@@ -14911,9 +14985,9 @@ type SearchKnowledgeData = {
|
|
|
14911
14985
|
*/
|
|
14912
14986
|
limit?: number;
|
|
14913
14987
|
/**
|
|
14914
|
-
* Search
|
|
14988
|
+
* Search memories within these specific memory stores
|
|
14915
14989
|
*/
|
|
14916
|
-
|
|
14990
|
+
memory_store_ids?: Array<string>;
|
|
14917
14991
|
/**
|
|
14918
14992
|
* Filter results to documents whose file path starts with one of these prefixes
|
|
14919
14993
|
*/
|
|
@@ -14923,7 +14997,7 @@ type SearchKnowledgeData = {
|
|
|
14923
14997
|
*/
|
|
14924
14998
|
document_ids?: Array<string>;
|
|
14925
14999
|
/**
|
|
14926
|
-
* Filter results to documents and
|
|
15000
|
+
* Filter results to documents and memories whose `tags` contain every one of these key-value pairs (exact, case-sensitive match). The only filter that scopes both stores, so passing it alone searches both. For memories it matches at memory granularity: a memory is returned when its parent memory store's tags match or its own do.
|
|
14927
15001
|
*/
|
|
14928
15002
|
tags?: TagBag;
|
|
14929
15003
|
};
|
|
@@ -14968,7 +15042,11 @@ type ListMemoriesData = {
|
|
|
14968
15042
|
*/
|
|
14969
15043
|
project_id: string;
|
|
14970
15044
|
};
|
|
14971
|
-
query
|
|
15045
|
+
query: {
|
|
15046
|
+
/**
|
|
15047
|
+
* Memory store to list memories from (mstore_...)
|
|
15048
|
+
*/
|
|
15049
|
+
memory_store_id: string;
|
|
14972
15050
|
/**
|
|
14973
15051
|
* Filter by tag pairs, written `key:value` (split on the first colon, so a value may contain colons). Repeat the parameter for several pairs; **all** must be present with exactly that value.
|
|
14974
15052
|
*
|
|
@@ -14982,6 +15060,10 @@ type ListMemoriesData = {
|
|
|
14982
15060
|
* Number of results to skip
|
|
14983
15061
|
*/
|
|
14984
15062
|
offset?: number;
|
|
15063
|
+
/**
|
|
15064
|
+
* Include invalidated (superseded) memories. They are excluded by default; set this to audit the supersede history.
|
|
15065
|
+
*/
|
|
15066
|
+
include_invalidated?: boolean;
|
|
14985
15067
|
};
|
|
14986
15068
|
url: '/v1/projects/{project_id}/memories';
|
|
14987
15069
|
};
|
|
@@ -14994,6 +15076,10 @@ type ListMemoriesErrors = {
|
|
|
14994
15076
|
* Forbidden
|
|
14995
15077
|
*/
|
|
14996
15078
|
403: unknown;
|
|
15079
|
+
/**
|
|
15080
|
+
* Memory store not found
|
|
15081
|
+
*/
|
|
15082
|
+
404: unknown;
|
|
14997
15083
|
/**
|
|
14998
15084
|
* Internal server error
|
|
14999
15085
|
*/
|
|
@@ -15014,17 +15100,39 @@ type ListMemoriesResponse = ListMemoriesResponses[keyof ListMemoriesResponses];
|
|
|
15014
15100
|
type CreateMemoryData = {
|
|
15015
15101
|
body: {
|
|
15016
15102
|
/**
|
|
15017
|
-
* Memory
|
|
15103
|
+
* Memory store to add the memory to (mstore_...)
|
|
15018
15104
|
*/
|
|
15019
|
-
|
|
15105
|
+
memory_store_id: string;
|
|
15020
15106
|
/**
|
|
15021
|
-
*
|
|
15107
|
+
* The text content of the memory
|
|
15022
15108
|
*/
|
|
15023
|
-
|
|
15109
|
+
content: string;
|
|
15110
|
+
/**
|
|
15111
|
+
* Whether there is a source to point at. `conversation` requires `source_id`; `manual` rejects it.
|
|
15112
|
+
*/
|
|
15113
|
+
source_type?: 'manual' | 'conversation';
|
|
15024
15114
|
/**
|
|
15025
|
-
*
|
|
15115
|
+
* The conversation this fact was learned in. Required when `source_type` is `conversation`, and rejected otherwise.
|
|
15116
|
+
*/
|
|
15117
|
+
source_id?: string;
|
|
15118
|
+
/**
|
|
15119
|
+
* Per-memory key-value tags, used for memory-granularity filtering by `tags` in search-knowledge.
|
|
15026
15120
|
*/
|
|
15027
15121
|
tags?: TagBag;
|
|
15122
|
+
/**
|
|
15123
|
+
* Arbitrary structured metadata attached to the memory
|
|
15124
|
+
*/
|
|
15125
|
+
metadata?: {
|
|
15126
|
+
[key: string]: unknown;
|
|
15127
|
+
};
|
|
15128
|
+
/**
|
|
15129
|
+
* Cosine similarity at or above which the incoming content is a duplicate of an existing memory and the write is skipped. Overrides the store's `duplicate_threshold` for this call; falls back to the store's value, then to `0.95`.
|
|
15130
|
+
*/
|
|
15131
|
+
duplicate_threshold?: number;
|
|
15132
|
+
/**
|
|
15133
|
+
* Cosine similarity at or above which the incoming content restates a fact that has changed: the top match is invalidated and a new memory replaces it. Overrides the store's `supersede_threshold` for this call; falls back to the store's value, then to `0.90`. The effective pair must satisfy `supersede_threshold < duplicate_threshold`, and the check runs against the effective pair — so overriding only one value cannot invert it against the store's other one.
|
|
15134
|
+
*/
|
|
15135
|
+
supersede_threshold?: number;
|
|
15028
15136
|
};
|
|
15029
15137
|
path: {
|
|
15030
15138
|
/**
|
|
@@ -15037,7 +15145,7 @@ type CreateMemoryData = {
|
|
|
15037
15145
|
};
|
|
15038
15146
|
type CreateMemoryErrors = {
|
|
15039
15147
|
/**
|
|
15040
|
-
* Bad request
|
|
15148
|
+
* Bad request — a missing required field, or a threshold pair whose effective values are not `supersede_threshold < duplicate_threshold`.
|
|
15041
15149
|
*/
|
|
15042
15150
|
400: unknown;
|
|
15043
15151
|
/**
|
|
@@ -15048,16 +15156,28 @@ type CreateMemoryErrors = {
|
|
|
15048
15156
|
* Forbidden
|
|
15049
15157
|
*/
|
|
15050
15158
|
403: unknown;
|
|
15159
|
+
/**
|
|
15160
|
+
* Memory store not found
|
|
15161
|
+
*/
|
|
15162
|
+
404: unknown;
|
|
15163
|
+
/**
|
|
15164
|
+
* The project's `storage_bytes` quota is exceeded (`QUOTA_STORAGE_EXCEEDED`). Delete stored content, or raise the quota — no window reset clears a stored total, so no `Retry-After` is sent.
|
|
15165
|
+
*/
|
|
15166
|
+
409: unknown;
|
|
15051
15167
|
/**
|
|
15052
15168
|
* Internal server error
|
|
15053
15169
|
*/
|
|
15054
15170
|
500: unknown;
|
|
15055
15171
|
};
|
|
15056
15172
|
type CreateMemoryResponses = {
|
|
15173
|
+
/**
|
|
15174
|
+
* The write resolved against an existing memory — `action` is `skipped` (the fact was already known) or `superseded` (the fact had changed, and the returned memory is the replacement).
|
|
15175
|
+
*/
|
|
15176
|
+
200: MemoryWriteResult;
|
|
15057
15177
|
/**
|
|
15058
15178
|
* Memory created
|
|
15059
15179
|
*/
|
|
15060
|
-
201:
|
|
15180
|
+
201: MemoryWriteResult;
|
|
15061
15181
|
};
|
|
15062
15182
|
type CreateMemoryResponse = CreateMemoryResponses[keyof CreateMemoryResponses];
|
|
15063
15183
|
type DeleteMemoryData = {
|
|
@@ -15082,7 +15202,7 @@ type DeleteMemoryErrors = {
|
|
|
15082
15202
|
*/
|
|
15083
15203
|
403: unknown;
|
|
15084
15204
|
/**
|
|
15085
|
-
* Memory not found
|
|
15205
|
+
* Memory store or memory not found
|
|
15086
15206
|
*/
|
|
15087
15207
|
404: unknown;
|
|
15088
15208
|
/**
|
|
@@ -15119,7 +15239,7 @@ type GetMemoryErrors = {
|
|
|
15119
15239
|
*/
|
|
15120
15240
|
403: unknown;
|
|
15121
15241
|
/**
|
|
15122
|
-
* Memory not found
|
|
15242
|
+
* Memory store or memory not found
|
|
15123
15243
|
*/
|
|
15124
15244
|
404: unknown;
|
|
15125
15245
|
/**
|
|
@@ -15137,17 +15257,19 @@ type GetMemoryResponse = GetMemoryResponses[keyof GetMemoryResponses];
|
|
|
15137
15257
|
type UpdateMemoryData = {
|
|
15138
15258
|
body: {
|
|
15139
15259
|
/**
|
|
15140
|
-
*
|
|
15260
|
+
* Updated text content
|
|
15141
15261
|
*/
|
|
15142
|
-
|
|
15262
|
+
content?: string;
|
|
15143
15263
|
/**
|
|
15144
|
-
*
|
|
15264
|
+
* Replaces the memory's tags. Pass null or an empty object to clear.
|
|
15145
15265
|
*/
|
|
15146
|
-
|
|
15266
|
+
tags?: NullableTagBag;
|
|
15147
15267
|
/**
|
|
15148
|
-
*
|
|
15268
|
+
* Replaces the memory's metadata. Pass null to clear.
|
|
15149
15269
|
*/
|
|
15150
|
-
|
|
15270
|
+
metadata?: {
|
|
15271
|
+
[key: string]: unknown;
|
|
15272
|
+
} | null;
|
|
15151
15273
|
};
|
|
15152
15274
|
path: {
|
|
15153
15275
|
/**
|
|
@@ -15169,7 +15291,7 @@ type UpdateMemoryErrors = {
|
|
|
15169
15291
|
*/
|
|
15170
15292
|
403: unknown;
|
|
15171
15293
|
/**
|
|
15172
|
-
* Memory not found
|
|
15294
|
+
* Memory store or memory not found
|
|
15173
15295
|
*/
|
|
15174
15296
|
404: unknown;
|
|
15175
15297
|
/**
|
|
@@ -15184,6 +15306,57 @@ type UpdateMemoryResponses = {
|
|
|
15184
15306
|
200: Memory;
|
|
15185
15307
|
};
|
|
15186
15308
|
type UpdateMemoryResponse = UpdateMemoryResponses[keyof UpdateMemoryResponses];
|
|
15309
|
+
type ListMemoryAssertionsData = {
|
|
15310
|
+
body?: never;
|
|
15311
|
+
path: {
|
|
15312
|
+
/**
|
|
15313
|
+
* Project public ID (proj_ prefix).
|
|
15314
|
+
*/
|
|
15315
|
+
project_id: string;
|
|
15316
|
+
memory_id: string;
|
|
15317
|
+
};
|
|
15318
|
+
query?: {
|
|
15319
|
+
/**
|
|
15320
|
+
* Maximum number of results to return
|
|
15321
|
+
*/
|
|
15322
|
+
limit?: number;
|
|
15323
|
+
/**
|
|
15324
|
+
* Number of results to skip
|
|
15325
|
+
*/
|
|
15326
|
+
offset?: number;
|
|
15327
|
+
};
|
|
15328
|
+
url: '/v1/projects/{project_id}/memories/{memory_id}/assertions';
|
|
15329
|
+
};
|
|
15330
|
+
type ListMemoryAssertionsErrors = {
|
|
15331
|
+
/**
|
|
15332
|
+
* Unauthorized
|
|
15333
|
+
*/
|
|
15334
|
+
401: unknown;
|
|
15335
|
+
/**
|
|
15336
|
+
* Forbidden
|
|
15337
|
+
*/
|
|
15338
|
+
403: unknown;
|
|
15339
|
+
/**
|
|
15340
|
+
* Memory store or memory not found
|
|
15341
|
+
*/
|
|
15342
|
+
404: unknown;
|
|
15343
|
+
/**
|
|
15344
|
+
* Internal server error
|
|
15345
|
+
*/
|
|
15346
|
+
500: unknown;
|
|
15347
|
+
};
|
|
15348
|
+
type ListMemoryAssertionsResponses = {
|
|
15349
|
+
/**
|
|
15350
|
+
* List of assertions
|
|
15351
|
+
*/
|
|
15352
|
+
200: {
|
|
15353
|
+
data: Array<MemoryAssertion>;
|
|
15354
|
+
total: number;
|
|
15355
|
+
limit: number;
|
|
15356
|
+
offset: number;
|
|
15357
|
+
};
|
|
15358
|
+
};
|
|
15359
|
+
type ListMemoryAssertionsResponse = ListMemoryAssertionsResponses[keyof ListMemoryAssertionsResponses];
|
|
15187
15360
|
type GetMemoryTagsData = {
|
|
15188
15361
|
body?: never;
|
|
15189
15362
|
path: {
|
|
@@ -15209,7 +15382,7 @@ type GetMemoryTagsErrors = {
|
|
|
15209
15382
|
*/
|
|
15210
15383
|
403: unknown;
|
|
15211
15384
|
/**
|
|
15212
|
-
* Memory not found
|
|
15385
|
+
* Memory store or memory not found
|
|
15213
15386
|
*/
|
|
15214
15387
|
404: unknown;
|
|
15215
15388
|
};
|
|
@@ -15249,7 +15422,7 @@ type MergeMemoryTagsErrors = {
|
|
|
15249
15422
|
*/
|
|
15250
15423
|
403: unknown;
|
|
15251
15424
|
/**
|
|
15252
|
-
* Memory not found
|
|
15425
|
+
* Memory store or memory not found
|
|
15253
15426
|
*/
|
|
15254
15427
|
404: unknown;
|
|
15255
15428
|
};
|
|
@@ -15289,7 +15462,7 @@ type ReplaceMemoryTagsErrors = {
|
|
|
15289
15462
|
*/
|
|
15290
15463
|
403: unknown;
|
|
15291
15464
|
/**
|
|
15292
|
-
* Memory not found
|
|
15465
|
+
* Memory store or memory not found
|
|
15293
15466
|
*/
|
|
15294
15467
|
404: unknown;
|
|
15295
15468
|
};
|
|
@@ -15300,7 +15473,7 @@ type ReplaceMemoryTagsResponses = {
|
|
|
15300
15473
|
200: TagBag;
|
|
15301
15474
|
};
|
|
15302
15475
|
type ReplaceMemoryTagsResponse = ReplaceMemoryTagsResponses[keyof ReplaceMemoryTagsResponses];
|
|
15303
|
-
type
|
|
15476
|
+
type ListMemoryStoresData = {
|
|
15304
15477
|
body?: never;
|
|
15305
15478
|
path: {
|
|
15306
15479
|
/**
|
|
@@ -15308,11 +15481,7 @@ type ListMemoryEntriesData = {
|
|
|
15308
15481
|
*/
|
|
15309
15482
|
project_id: string;
|
|
15310
15483
|
};
|
|
15311
|
-
query
|
|
15312
|
-
/**
|
|
15313
|
-
* Memory container to list entries from (mem_...)
|
|
15314
|
-
*/
|
|
15315
|
-
memory_id: string;
|
|
15484
|
+
query?: {
|
|
15316
15485
|
/**
|
|
15317
15486
|
* Filter by tag pairs, written `key:value` (split on the first colon, so a value may contain colons). Repeat the parameter for several pairs; **all** must be present with exactly that value.
|
|
15318
15487
|
*
|
|
@@ -15326,14 +15495,10 @@ type ListMemoryEntriesData = {
|
|
|
15326
15495
|
* Number of results to skip
|
|
15327
15496
|
*/
|
|
15328
15497
|
offset?: number;
|
|
15329
|
-
/**
|
|
15330
|
-
* Include invalidated (superseded) entries. They are excluded by default; set this to audit the supersede history.
|
|
15331
|
-
*/
|
|
15332
|
-
include_invalidated?: boolean;
|
|
15333
15498
|
};
|
|
15334
|
-
url: '/v1/projects/{project_id}/memory-
|
|
15499
|
+
url: '/v1/projects/{project_id}/memory-stores';
|
|
15335
15500
|
};
|
|
15336
|
-
type
|
|
15501
|
+
type ListMemoryStoresErrors = {
|
|
15337
15502
|
/**
|
|
15338
15503
|
* Unauthorized
|
|
15339
15504
|
*/
|
|
@@ -15342,55 +15507,45 @@ type ListMemoryEntriesErrors = {
|
|
|
15342
15507
|
* Forbidden
|
|
15343
15508
|
*/
|
|
15344
15509
|
403: unknown;
|
|
15345
|
-
/**
|
|
15346
|
-
* Memory not found
|
|
15347
|
-
*/
|
|
15348
|
-
404: unknown;
|
|
15349
15510
|
/**
|
|
15350
15511
|
* Internal server error
|
|
15351
15512
|
*/
|
|
15352
15513
|
500: unknown;
|
|
15353
15514
|
};
|
|
15354
|
-
type
|
|
15515
|
+
type ListMemoryStoresResponses = {
|
|
15355
15516
|
/**
|
|
15356
|
-
* List of memory
|
|
15517
|
+
* List of memory stores
|
|
15357
15518
|
*/
|
|
15358
15519
|
200: {
|
|
15359
|
-
data: Array<
|
|
15520
|
+
data: Array<MemoryStore>;
|
|
15360
15521
|
total: number;
|
|
15361
15522
|
limit: number;
|
|
15362
15523
|
offset: number;
|
|
15363
15524
|
};
|
|
15364
15525
|
};
|
|
15365
|
-
type
|
|
15366
|
-
type
|
|
15526
|
+
type ListMemoryStoresResponse = ListMemoryStoresResponses[keyof ListMemoryStoresResponses];
|
|
15527
|
+
type CreateMemoryStoreData = {
|
|
15367
15528
|
body: {
|
|
15368
15529
|
/**
|
|
15369
|
-
* Memory
|
|
15370
|
-
*/
|
|
15371
|
-
memory_id: string;
|
|
15372
|
-
/**
|
|
15373
|
-
* The text content of the memory entry
|
|
15530
|
+
* Memory store name
|
|
15374
15531
|
*/
|
|
15375
|
-
|
|
15532
|
+
name: string;
|
|
15376
15533
|
/**
|
|
15377
|
-
*
|
|
15534
|
+
* Optional description
|
|
15378
15535
|
*/
|
|
15379
|
-
|
|
15536
|
+
description?: string;
|
|
15380
15537
|
/**
|
|
15381
|
-
*
|
|
15538
|
+
* Optional key-value tags. Scopes the memory store in knowledge search, where every requested pair must match exactly.
|
|
15382
15539
|
*/
|
|
15383
15540
|
tags?: TagBag;
|
|
15384
15541
|
/**
|
|
15385
|
-
*
|
|
15542
|
+
* The store's dedup policy: cosine similarity at or above which an incoming fact is already known and the write is skipped. `null` (the default) uses the algorithm constant `0.95`. A single `POST /v1/projects/{project_id}/memories` call may override it; the agent tool and the post-turn rule never can.
|
|
15386
15543
|
*/
|
|
15387
|
-
|
|
15388
|
-
[key: string]: unknown;
|
|
15389
|
-
};
|
|
15544
|
+
duplicate_threshold?: number | null;
|
|
15390
15545
|
/**
|
|
15391
|
-
* Cosine similarity
|
|
15546
|
+
* Cosine similarity at or above which an incoming fact restates a known one that has changed: the matched memory is invalidated and replaced. `null` (the default) uses the algorithm constant `0.90`. Must be lower than the effective `duplicate_threshold`, or the write is rejected with `400 VALIDATION_FAILED` — equal makes `superseded` unreachable and inverted swallows `skipped`.
|
|
15392
15547
|
*/
|
|
15393
|
-
|
|
15548
|
+
supersede_threshold?: number | null;
|
|
15394
15549
|
};
|
|
15395
15550
|
path: {
|
|
15396
15551
|
/**
|
|
@@ -15399,11 +15554,11 @@ type CreateMemoryEntryData = {
|
|
|
15399
15554
|
project_id: string;
|
|
15400
15555
|
};
|
|
15401
15556
|
query?: never;
|
|
15402
|
-
url: '/v1/projects/{project_id}/memory-
|
|
15557
|
+
url: '/v1/projects/{project_id}/memory-stores';
|
|
15403
15558
|
};
|
|
15404
|
-
type
|
|
15559
|
+
type CreateMemoryStoreErrors = {
|
|
15405
15560
|
/**
|
|
15406
|
-
* Bad request
|
|
15561
|
+
* Bad request — a missing required field, a threshold outside `[0, 1]`, or a pair that is not `supersede_threshold < duplicate_threshold`.
|
|
15407
15562
|
*/
|
|
15408
15563
|
400: unknown;
|
|
15409
15564
|
/**
|
|
@@ -15414,43 +15569,31 @@ type CreateMemoryEntryErrors = {
|
|
|
15414
15569
|
* Forbidden
|
|
15415
15570
|
*/
|
|
15416
15571
|
403: unknown;
|
|
15417
|
-
/**
|
|
15418
|
-
* Memory not found
|
|
15419
|
-
*/
|
|
15420
|
-
404: unknown;
|
|
15421
|
-
/**
|
|
15422
|
-
* The project's `storage_bytes` quota is exceeded (`QUOTA_STORAGE_EXCEEDED`). Delete stored content, or raise the quota — no window reset clears a stored total, so no `Retry-After` is sent.
|
|
15423
|
-
*/
|
|
15424
|
-
409: unknown;
|
|
15425
15572
|
/**
|
|
15426
15573
|
* Internal server error
|
|
15427
15574
|
*/
|
|
15428
15575
|
500: unknown;
|
|
15429
15576
|
};
|
|
15430
|
-
type
|
|
15431
|
-
/**
|
|
15432
|
-
* Memory entry deduplicated (action is "skipped")
|
|
15433
|
-
*/
|
|
15434
|
-
200: MemoryEntryWriteResult;
|
|
15577
|
+
type CreateMemoryStoreResponses = {
|
|
15435
15578
|
/**
|
|
15436
|
-
* Memory
|
|
15579
|
+
* Memory store created
|
|
15437
15580
|
*/
|
|
15438
|
-
201:
|
|
15581
|
+
201: MemoryStore;
|
|
15439
15582
|
};
|
|
15440
|
-
type
|
|
15441
|
-
type
|
|
15583
|
+
type CreateMemoryStoreResponse = CreateMemoryStoreResponses[keyof CreateMemoryStoreResponses];
|
|
15584
|
+
type DeleteMemoryStoreData = {
|
|
15442
15585
|
body?: never;
|
|
15443
15586
|
path: {
|
|
15444
15587
|
/**
|
|
15445
15588
|
* Project public ID (proj_ prefix).
|
|
15446
15589
|
*/
|
|
15447
15590
|
project_id: string;
|
|
15448
|
-
|
|
15591
|
+
memory_store_id: string;
|
|
15449
15592
|
};
|
|
15450
15593
|
query?: never;
|
|
15451
|
-
url: '/v1/projects/{project_id}/memory-
|
|
15594
|
+
url: '/v1/projects/{project_id}/memory-stores/{memory_store_id}';
|
|
15452
15595
|
};
|
|
15453
|
-
type
|
|
15596
|
+
type DeleteMemoryStoreErrors = {
|
|
15454
15597
|
/**
|
|
15455
15598
|
* Unauthorized
|
|
15456
15599
|
*/
|
|
@@ -15460,7 +15603,7 @@ type DeleteMemoryEntryErrors = {
|
|
|
15460
15603
|
*/
|
|
15461
15604
|
403: unknown;
|
|
15462
15605
|
/**
|
|
15463
|
-
* Memory
|
|
15606
|
+
* Memory store not found
|
|
15464
15607
|
*/
|
|
15465
15608
|
404: unknown;
|
|
15466
15609
|
/**
|
|
@@ -15468,26 +15611,26 @@ type DeleteMemoryEntryErrors = {
|
|
|
15468
15611
|
*/
|
|
15469
15612
|
500: unknown;
|
|
15470
15613
|
};
|
|
15471
|
-
type
|
|
15614
|
+
type DeleteMemoryStoreResponses = {
|
|
15472
15615
|
/**
|
|
15473
|
-
* Memory
|
|
15616
|
+
* Memory store deleted
|
|
15474
15617
|
*/
|
|
15475
15618
|
204: void;
|
|
15476
15619
|
};
|
|
15477
|
-
type
|
|
15478
|
-
type
|
|
15620
|
+
type DeleteMemoryStoreResponse = DeleteMemoryStoreResponses[keyof DeleteMemoryStoreResponses];
|
|
15621
|
+
type GetMemoryStoreData = {
|
|
15479
15622
|
body?: never;
|
|
15480
15623
|
path: {
|
|
15481
15624
|
/**
|
|
15482
15625
|
* Project public ID (proj_ prefix).
|
|
15483
15626
|
*/
|
|
15484
15627
|
project_id: string;
|
|
15485
|
-
|
|
15628
|
+
memory_store_id: string;
|
|
15486
15629
|
};
|
|
15487
15630
|
query?: never;
|
|
15488
|
-
url: '/v1/projects/{project_id}/memory-
|
|
15631
|
+
url: '/v1/projects/{project_id}/memory-stores/{memory_store_id}';
|
|
15489
15632
|
};
|
|
15490
|
-
type
|
|
15633
|
+
type GetMemoryStoreErrors = {
|
|
15491
15634
|
/**
|
|
15492
15635
|
* Unauthorized
|
|
15493
15636
|
*/
|
|
@@ -15497,7 +15640,7 @@ type GetMemoryEntryErrors = {
|
|
|
15497
15640
|
*/
|
|
15498
15641
|
403: unknown;
|
|
15499
15642
|
/**
|
|
15500
|
-
* Memory
|
|
15643
|
+
* Memory store not found
|
|
15501
15644
|
*/
|
|
15502
15645
|
404: unknown;
|
|
15503
15646
|
/**
|
|
@@ -15505,41 +15648,51 @@ type GetMemoryEntryErrors = {
|
|
|
15505
15648
|
*/
|
|
15506
15649
|
500: unknown;
|
|
15507
15650
|
};
|
|
15508
|
-
type
|
|
15651
|
+
type GetMemoryStoreResponses = {
|
|
15509
15652
|
/**
|
|
15510
|
-
* Memory
|
|
15653
|
+
* Memory store found
|
|
15511
15654
|
*/
|
|
15512
|
-
200:
|
|
15655
|
+
200: MemoryStore;
|
|
15513
15656
|
};
|
|
15514
|
-
type
|
|
15515
|
-
type
|
|
15657
|
+
type GetMemoryStoreResponse = GetMemoryStoreResponses[keyof GetMemoryStoreResponses];
|
|
15658
|
+
type UpdateMemoryStoreData = {
|
|
15516
15659
|
body: {
|
|
15517
15660
|
/**
|
|
15518
|
-
*
|
|
15661
|
+
* Memory store name
|
|
15519
15662
|
*/
|
|
15520
|
-
|
|
15663
|
+
name?: string;
|
|
15664
|
+
/**
|
|
15665
|
+
* Optional description
|
|
15666
|
+
*/
|
|
15667
|
+
description?: string | null;
|
|
15521
15668
|
/**
|
|
15522
|
-
*
|
|
15669
|
+
* Optional key-value tags. Replaces the stored bag; `null` clears it.
|
|
15523
15670
|
*/
|
|
15524
15671
|
tags?: NullableTagBag;
|
|
15525
15672
|
/**
|
|
15526
|
-
*
|
|
15673
|
+
* The store's dedup policy: cosine similarity at or above which an incoming fact is already known and the write is skipped. `null` (the default) uses the algorithm constant `0.95`. A single `POST /v1/projects/{project_id}/memories` call may override it; the agent tool and the post-turn rule never can.
|
|
15527
15674
|
*/
|
|
15528
|
-
|
|
15529
|
-
|
|
15530
|
-
|
|
15675
|
+
duplicate_threshold?: number | null;
|
|
15676
|
+
/**
|
|
15677
|
+
* Cosine similarity at or above which an incoming fact restates a known one that has changed: the matched memory is invalidated and replaced. `null` (the default) uses the algorithm constant `0.90`. Must be lower than the effective `duplicate_threshold`, or the write is rejected with `400 VALIDATION_FAILED` — equal makes `superseded` unreachable and inverted swallows `skipped`.
|
|
15678
|
+
*/
|
|
15679
|
+
supersede_threshold?: number | null;
|
|
15531
15680
|
};
|
|
15532
15681
|
path: {
|
|
15533
15682
|
/**
|
|
15534
15683
|
* Project public ID (proj_ prefix).
|
|
15535
15684
|
*/
|
|
15536
15685
|
project_id: string;
|
|
15537
|
-
|
|
15686
|
+
memory_store_id: string;
|
|
15538
15687
|
};
|
|
15539
15688
|
query?: never;
|
|
15540
|
-
url: '/v1/projects/{project_id}/memory-
|
|
15689
|
+
url: '/v1/projects/{project_id}/memory-stores/{memory_store_id}';
|
|
15541
15690
|
};
|
|
15542
|
-
type
|
|
15691
|
+
type UpdateMemoryStoreErrors = {
|
|
15692
|
+
/**
|
|
15693
|
+
* Bad request — a threshold outside `[0, 1]`, or a pair that is not `supersede_threshold < duplicate_threshold` once the stored values this request does not replace are applied.
|
|
15694
|
+
*/
|
|
15695
|
+
400: unknown;
|
|
15543
15696
|
/**
|
|
15544
15697
|
* Unauthorized
|
|
15545
15698
|
*/
|
|
@@ -15549,7 +15702,7 @@ type UpdateMemoryEntryErrors = {
|
|
|
15549
15702
|
*/
|
|
15550
15703
|
403: unknown;
|
|
15551
15704
|
/**
|
|
15552
|
-
* Memory
|
|
15705
|
+
* Memory store not found
|
|
15553
15706
|
*/
|
|
15554
15707
|
404: unknown;
|
|
15555
15708
|
/**
|
|
@@ -15557,29 +15710,100 @@ type UpdateMemoryEntryErrors = {
|
|
|
15557
15710
|
*/
|
|
15558
15711
|
500: unknown;
|
|
15559
15712
|
};
|
|
15560
|
-
type
|
|
15713
|
+
type UpdateMemoryStoreResponses = {
|
|
15561
15714
|
/**
|
|
15562
|
-
* Memory
|
|
15715
|
+
* Memory store updated
|
|
15563
15716
|
*/
|
|
15564
|
-
200:
|
|
15717
|
+
200: MemoryStore;
|
|
15565
15718
|
};
|
|
15566
|
-
type
|
|
15567
|
-
type
|
|
15719
|
+
type UpdateMemoryStoreResponse = UpdateMemoryStoreResponses[keyof UpdateMemoryStoreResponses];
|
|
15720
|
+
type ListMemoryStoreAssertionsData = {
|
|
15568
15721
|
body?: never;
|
|
15569
15722
|
path: {
|
|
15570
15723
|
/**
|
|
15571
15724
|
* Project public ID (proj_ prefix).
|
|
15572
15725
|
*/
|
|
15573
15726
|
project_id: string;
|
|
15727
|
+
memory_store_id: string;
|
|
15728
|
+
};
|
|
15729
|
+
query?: {
|
|
15574
15730
|
/**
|
|
15575
|
-
*
|
|
15731
|
+
* Only assertions that came through this door.
|
|
15576
15732
|
*/
|
|
15577
|
-
|
|
15733
|
+
mechanism?: 'tool' | 'rule' | 'api' | 'formation';
|
|
15734
|
+
/**
|
|
15735
|
+
* Only assertions that resolved this way.
|
|
15736
|
+
*/
|
|
15737
|
+
outcome?: 'created' | 'superseded' | 'skipped';
|
|
15738
|
+
/**
|
|
15739
|
+
* Only assertions made during this generation. A generation that does not exist matches nothing rather than widening to the whole store.
|
|
15740
|
+
*/
|
|
15741
|
+
generation_id?: string;
|
|
15742
|
+
/**
|
|
15743
|
+
* Only assertions recorded at or after this instant.
|
|
15744
|
+
*/
|
|
15745
|
+
since?: Date;
|
|
15746
|
+
/**
|
|
15747
|
+
* Maximum number of results to return
|
|
15748
|
+
*/
|
|
15749
|
+
limit?: number;
|
|
15750
|
+
/**
|
|
15751
|
+
* Number of results to skip
|
|
15752
|
+
*/
|
|
15753
|
+
offset?: number;
|
|
15754
|
+
};
|
|
15755
|
+
url: '/v1/projects/{project_id}/memory-stores/{memory_store_id}/assertions';
|
|
15756
|
+
};
|
|
15757
|
+
type ListMemoryStoreAssertionsErrors = {
|
|
15758
|
+
/**
|
|
15759
|
+
* An unknown `mechanism` or `outcome`, or a `since` that is not a timestamp
|
|
15760
|
+
*/
|
|
15761
|
+
400: unknown;
|
|
15762
|
+
/**
|
|
15763
|
+
* Unauthorized
|
|
15764
|
+
*/
|
|
15765
|
+
401: unknown;
|
|
15766
|
+
/**
|
|
15767
|
+
* Forbidden
|
|
15768
|
+
*/
|
|
15769
|
+
403: unknown;
|
|
15770
|
+
/**
|
|
15771
|
+
* Memory store not found
|
|
15772
|
+
*/
|
|
15773
|
+
404: unknown;
|
|
15774
|
+
/**
|
|
15775
|
+
* Internal server error
|
|
15776
|
+
*/
|
|
15777
|
+
500: unknown;
|
|
15778
|
+
};
|
|
15779
|
+
type ListMemoryStoreAssertionsResponses = {
|
|
15780
|
+
/**
|
|
15781
|
+
* List of assertions
|
|
15782
|
+
*/
|
|
15783
|
+
200: {
|
|
15784
|
+
data: Array<MemoryAssertion>;
|
|
15785
|
+
total: number;
|
|
15786
|
+
limit: number;
|
|
15787
|
+
offset: number;
|
|
15788
|
+
};
|
|
15789
|
+
};
|
|
15790
|
+
type ListMemoryStoreAssertionsResponse = ListMemoryStoreAssertionsResponses[keyof ListMemoryStoreAssertionsResponses];
|
|
15791
|
+
type GetMemoryStoreTagsData = {
|
|
15792
|
+
body?: never;
|
|
15793
|
+
path: {
|
|
15794
|
+
/**
|
|
15795
|
+
* Project public ID (proj_ prefix).
|
|
15796
|
+
*/
|
|
15797
|
+
project_id: string;
|
|
15798
|
+
/**
|
|
15799
|
+
* Memory store ID
|
|
15800
|
+
*/
|
|
15801
|
+
memory_store_id: string;
|
|
15578
15802
|
};
|
|
15579
15803
|
query?: never;
|
|
15580
|
-
url: '/v1/projects/{project_id}/memory-
|
|
15804
|
+
url: '/v1/projects/{project_id}/memory-stores/{memory_store_id}/tags';
|
|
15581
15805
|
};
|
|
15582
|
-
type
|
|
15806
|
+
type GetMemoryStoreTagsErrors = {
|
|
15583
15807
|
/**
|
|
15584
15808
|
* Unauthorized
|
|
15585
15809
|
*/
|
|
@@ -15589,18 +15813,18 @@ type GetMemoryEntryTagsErrors = {
|
|
|
15589
15813
|
*/
|
|
15590
15814
|
403: unknown;
|
|
15591
15815
|
/**
|
|
15592
|
-
* Memory
|
|
15816
|
+
* Memory store not found
|
|
15593
15817
|
*/
|
|
15594
15818
|
404: unknown;
|
|
15595
15819
|
};
|
|
15596
|
-
type
|
|
15820
|
+
type GetMemoryStoreTagsResponses = {
|
|
15597
15821
|
/**
|
|
15598
|
-
* Memory
|
|
15822
|
+
* Memory store tags
|
|
15599
15823
|
*/
|
|
15600
15824
|
200: TagBag;
|
|
15601
15825
|
};
|
|
15602
|
-
type
|
|
15603
|
-
type
|
|
15826
|
+
type GetMemoryStoreTagsResponse = GetMemoryStoreTagsResponses[keyof GetMemoryStoreTagsResponses];
|
|
15827
|
+
type MergeMemoryStoreTagsData = {
|
|
15604
15828
|
body: TagBag;
|
|
15605
15829
|
path: {
|
|
15606
15830
|
/**
|
|
@@ -15608,14 +15832,14 @@ type MergeMemoryEntryTagsData = {
|
|
|
15608
15832
|
*/
|
|
15609
15833
|
project_id: string;
|
|
15610
15834
|
/**
|
|
15611
|
-
* Memory
|
|
15835
|
+
* Memory store ID
|
|
15612
15836
|
*/
|
|
15613
|
-
|
|
15837
|
+
memory_store_id: string;
|
|
15614
15838
|
};
|
|
15615
15839
|
query?: never;
|
|
15616
|
-
url: '/v1/projects/{project_id}/memory-
|
|
15840
|
+
url: '/v1/projects/{project_id}/memory-stores/{memory_store_id}/tags';
|
|
15617
15841
|
};
|
|
15618
|
-
type
|
|
15842
|
+
type MergeMemoryStoreTagsErrors = {
|
|
15619
15843
|
/**
|
|
15620
15844
|
* Body is not an object of string values
|
|
15621
15845
|
*/
|
|
@@ -15629,18 +15853,18 @@ type MergeMemoryEntryTagsErrors = {
|
|
|
15629
15853
|
*/
|
|
15630
15854
|
403: unknown;
|
|
15631
15855
|
/**
|
|
15632
|
-
* Memory
|
|
15856
|
+
* Memory store not found
|
|
15633
15857
|
*/
|
|
15634
15858
|
404: unknown;
|
|
15635
15859
|
};
|
|
15636
|
-
type
|
|
15860
|
+
type MergeMemoryStoreTagsResponses = {
|
|
15637
15861
|
/**
|
|
15638
15862
|
* Tags merged
|
|
15639
15863
|
*/
|
|
15640
15864
|
200: TagBag;
|
|
15641
15865
|
};
|
|
15642
|
-
type
|
|
15643
|
-
type
|
|
15866
|
+
type MergeMemoryStoreTagsResponse = MergeMemoryStoreTagsResponses[keyof MergeMemoryStoreTagsResponses];
|
|
15867
|
+
type ReplaceMemoryStoreTagsData = {
|
|
15644
15868
|
body: TagBag;
|
|
15645
15869
|
path: {
|
|
15646
15870
|
/**
|
|
@@ -15648,14 +15872,14 @@ type ReplaceMemoryEntryTagsData = {
|
|
|
15648
15872
|
*/
|
|
15649
15873
|
project_id: string;
|
|
15650
15874
|
/**
|
|
15651
|
-
* Memory
|
|
15875
|
+
* Memory store ID
|
|
15652
15876
|
*/
|
|
15653
|
-
|
|
15877
|
+
memory_store_id: string;
|
|
15654
15878
|
};
|
|
15655
15879
|
query?: never;
|
|
15656
|
-
url: '/v1/projects/{project_id}/memory-
|
|
15880
|
+
url: '/v1/projects/{project_id}/memory-stores/{memory_store_id}/tags';
|
|
15657
15881
|
};
|
|
15658
|
-
type
|
|
15882
|
+
type ReplaceMemoryStoreTagsErrors = {
|
|
15659
15883
|
/**
|
|
15660
15884
|
* Body is not an object of string values
|
|
15661
15885
|
*/
|
|
@@ -15669,17 +15893,17 @@ type ReplaceMemoryEntryTagsErrors = {
|
|
|
15669
15893
|
*/
|
|
15670
15894
|
403: unknown;
|
|
15671
15895
|
/**
|
|
15672
|
-
* Memory
|
|
15896
|
+
* Memory store not found
|
|
15673
15897
|
*/
|
|
15674
15898
|
404: unknown;
|
|
15675
15899
|
};
|
|
15676
|
-
type
|
|
15900
|
+
type ReplaceMemoryStoreTagsResponses = {
|
|
15677
15901
|
/**
|
|
15678
15902
|
* Tags replaced
|
|
15679
15903
|
*/
|
|
15680
15904
|
200: TagBag;
|
|
15681
15905
|
};
|
|
15682
|
-
type
|
|
15906
|
+
type ReplaceMemoryStoreTagsResponse = ReplaceMemoryStoreTagsResponses[keyof ReplaceMemoryStoreTagsResponses];
|
|
15683
15907
|
type ListModelRoutesData = {
|
|
15684
15908
|
body?: never;
|
|
15685
15909
|
path: {
|
|
@@ -21552,7 +21776,7 @@ export declare class Knowledge {
|
|
|
21552
21776
|
/**
|
|
21553
21777
|
* Search knowledge
|
|
21554
21778
|
*
|
|
21555
|
-
* Searches across documents and
|
|
21779
|
+
* Searches across documents and memories using hybrid retrieval — a vector query and a full-text query per source, fused by reciprocal rank — or by file paths, document IDs, memory store IDs, or tags. At least one of `query`, `tags`, `document_paths`, `document_ids`, or `memory_store_ids` must be provided.
|
|
21556
21780
|
*/
|
|
21557
21781
|
static searchKnowledge<ThrowOnError extends boolean = false>(options: Options<SearchKnowledgeData, ThrowOnError>): RequestResult<SearchKnowledgeResponses, SearchKnowledgeErrors, ThrowOnError>;
|
|
21558
21782
|
}
|
|
@@ -21560,33 +21784,39 @@ export declare class Memories {
|
|
|
21560
21784
|
/**
|
|
21561
21785
|
* List memories
|
|
21562
21786
|
*
|
|
21563
|
-
* Returns
|
|
21787
|
+
* Returns all memories in a memory store
|
|
21564
21788
|
*/
|
|
21565
21789
|
static listMemories<ThrowOnError extends boolean = false>(options: Options<ListMemoriesData, ThrowOnError>): RequestResult<ListMemoriesResponses, ListMemoriesErrors, ThrowOnError>;
|
|
21566
21790
|
/**
|
|
21567
21791
|
* Create a memory
|
|
21568
21792
|
*
|
|
21569
|
-
*
|
|
21793
|
+
* Writes a fact to the specified memory store through the standard write algorithm: the content is embedded (or matched to text the store already holds), compared against the most similar currently-valid memory, and resolved to exactly one of three outcomes — `skipped` at or above `duplicate_threshold`, `superseded` at or above `supersede_threshold`, `created` below it. Every call records one assertion, whatever the outcome.
|
|
21570
21794
|
*/
|
|
21571
21795
|
static createMemory<ThrowOnError extends boolean = false>(options: Options<CreateMemoryData, ThrowOnError>): RequestResult<CreateMemoryResponses, CreateMemoryErrors, ThrowOnError>;
|
|
21572
21796
|
/**
|
|
21573
21797
|
* Delete a memory
|
|
21574
21798
|
*
|
|
21575
|
-
* Deletes a memory
|
|
21799
|
+
* Deletes a memory
|
|
21576
21800
|
*/
|
|
21577
21801
|
static deleteMemory<ThrowOnError extends boolean = false>(options: Options<DeleteMemoryData, ThrowOnError>): RequestResult<DeleteMemoryResponses, DeleteMemoryErrors, ThrowOnError>;
|
|
21578
21802
|
/**
|
|
21579
21803
|
* Get a memory
|
|
21580
21804
|
*
|
|
21581
|
-
* Returns a single memory
|
|
21805
|
+
* Returns a single memory by ID
|
|
21582
21806
|
*/
|
|
21583
21807
|
static getMemory<ThrowOnError extends boolean = false>(options: Options<GetMemoryData, ThrowOnError>): RequestResult<GetMemoryResponses, GetMemoryErrors, ThrowOnError>;
|
|
21584
21808
|
/**
|
|
21585
21809
|
* Update a memory
|
|
21586
21810
|
*
|
|
21587
|
-
* Updates an existing memory
|
|
21811
|
+
* Updates an existing memory. Regenerates the embedding if content changes.
|
|
21588
21812
|
*/
|
|
21589
21813
|
static updateMemory<ThrowOnError extends boolean = false>(options: Options<UpdateMemoryData, ThrowOnError>): RequestResult<UpdateMemoryResponses, UpdateMemoryErrors, ThrowOnError>;
|
|
21814
|
+
/**
|
|
21815
|
+
* List a memory's assertions
|
|
21816
|
+
*
|
|
21817
|
+
* Returns every write that resolved into this memory, oldest first: the one that created it, the duplicates it absorbed, and the assertion that superseded another memory in its favour. A superseded memory keeps its own assertions, so the chain can be walked in both directions.
|
|
21818
|
+
*/
|
|
21819
|
+
static listMemoryAssertions<ThrowOnError extends boolean = false>(options: Options<ListMemoryAssertionsData, ThrowOnError>): RequestResult<ListMemoryAssertionsResponses, ListMemoryAssertionsErrors, ThrowOnError>;
|
|
21590
21820
|
/**
|
|
21591
21821
|
* Get memory tags
|
|
21592
21822
|
*
|
|
@@ -21606,55 +21836,61 @@ export declare class Memories {
|
|
|
21606
21836
|
*/
|
|
21607
21837
|
static replaceMemoryTags<ThrowOnError extends boolean = false>(options: Options<ReplaceMemoryTagsData, ThrowOnError>): RequestResult<ReplaceMemoryTagsResponses, ReplaceMemoryTagsErrors, ThrowOnError>;
|
|
21608
21838
|
}
|
|
21609
|
-
export declare class
|
|
21839
|
+
export declare class MemoryStores {
|
|
21840
|
+
/**
|
|
21841
|
+
* List memory stores
|
|
21842
|
+
*
|
|
21843
|
+
* Returns a list of memory store configurations for a project
|
|
21844
|
+
*/
|
|
21845
|
+
static listMemoryStores<ThrowOnError extends boolean = false>(options: Options<ListMemoryStoresData, ThrowOnError>): RequestResult<ListMemoryStoresResponses, ListMemoryStoresErrors, ThrowOnError>;
|
|
21610
21846
|
/**
|
|
21611
|
-
*
|
|
21847
|
+
* Create a memory store
|
|
21612
21848
|
*
|
|
21613
|
-
*
|
|
21849
|
+
* Creates a new memory store configuration in a project
|
|
21614
21850
|
*/
|
|
21615
|
-
static
|
|
21851
|
+
static createMemoryStore<ThrowOnError extends boolean = false>(options: Options<CreateMemoryStoreData, ThrowOnError>): RequestResult<CreateMemoryStoreResponses, CreateMemoryStoreErrors, ThrowOnError>;
|
|
21616
21852
|
/**
|
|
21617
|
-
*
|
|
21853
|
+
* Delete a memory store
|
|
21618
21854
|
*
|
|
21619
|
-
*
|
|
21855
|
+
* Deletes a memory store configuration
|
|
21620
21856
|
*/
|
|
21621
|
-
static
|
|
21857
|
+
static deleteMemoryStore<ThrowOnError extends boolean = false>(options: Options<DeleteMemoryStoreData, ThrowOnError>): RequestResult<DeleteMemoryStoreResponses, DeleteMemoryStoreErrors, ThrowOnError>;
|
|
21622
21858
|
/**
|
|
21623
|
-
*
|
|
21859
|
+
* Get a memory store
|
|
21624
21860
|
*
|
|
21625
|
-
*
|
|
21861
|
+
* Returns a single memory store configuration by ID
|
|
21626
21862
|
*/
|
|
21627
|
-
static
|
|
21863
|
+
static getMemoryStore<ThrowOnError extends boolean = false>(options: Options<GetMemoryStoreData, ThrowOnError>): RequestResult<GetMemoryStoreResponses, GetMemoryStoreErrors, ThrowOnError>;
|
|
21628
21864
|
/**
|
|
21629
|
-
*
|
|
21865
|
+
* Update a memory store
|
|
21630
21866
|
*
|
|
21631
|
-
*
|
|
21867
|
+
* Updates an existing memory store configuration
|
|
21632
21868
|
*/
|
|
21633
|
-
static
|
|
21869
|
+
static updateMemoryStore<ThrowOnError extends boolean = false>(options: Options<UpdateMemoryStoreData, ThrowOnError>): RequestResult<UpdateMemoryStoreResponses, UpdateMemoryStoreErrors, ThrowOnError>;
|
|
21634
21870
|
/**
|
|
21635
|
-
*
|
|
21871
|
+
* List a memory store's write assertions
|
|
21636
21872
|
*
|
|
21637
|
-
*
|
|
21873
|
+
* Returns the store's write ledger, newest first: one row per write attempt, skips included. This is how "which write path is filling this store?" is asked — a question no column on a memory row could answer, because a skipped write produced no memory at all.
|
|
21638
21874
|
*/
|
|
21639
|
-
static
|
|
21875
|
+
static listMemoryStoreAssertions<ThrowOnError extends boolean = false>(options: Options<ListMemoryStoreAssertionsData, ThrowOnError>): RequestResult<ListMemoryStoreAssertionsResponses, ListMemoryStoreAssertionsErrors, ThrowOnError>;
|
|
21640
21876
|
/**
|
|
21641
|
-
* Get memory
|
|
21877
|
+
* Get memory store tags
|
|
21642
21878
|
*
|
|
21643
|
-
* Returns all tags attached to the memory
|
|
21879
|
+
* Returns all tags attached to the memory store
|
|
21644
21880
|
*/
|
|
21645
|
-
static
|
|
21881
|
+
static getMemoryStoreTags<ThrowOnError extends boolean = false>(options: Options<GetMemoryStoreTagsData, ThrowOnError>): RequestResult<GetMemoryStoreTagsResponses, GetMemoryStoreTagsErrors, ThrowOnError>;
|
|
21646
21882
|
/**
|
|
21647
|
-
* Merge memory
|
|
21883
|
+
* Merge memory store tags
|
|
21648
21884
|
*
|
|
21649
|
-
* Merges provided tags into the memory
|
|
21885
|
+
* Merges provided tags into the memory store's existing tags (existing tags are preserved unless overridden)
|
|
21650
21886
|
*/
|
|
21651
|
-
static
|
|
21887
|
+
static mergeMemoryStoreTags<ThrowOnError extends boolean = false>(options: Options<MergeMemoryStoreTagsData, ThrowOnError>): RequestResult<MergeMemoryStoreTagsResponses, MergeMemoryStoreTagsErrors, ThrowOnError>;
|
|
21652
21888
|
/**
|
|
21653
|
-
* Replace memory
|
|
21889
|
+
* Replace memory store tags
|
|
21654
21890
|
*
|
|
21655
|
-
* Replaces all tags on the memory
|
|
21891
|
+
* Replaces all tags on the memory store with the provided tags (not merged)
|
|
21656
21892
|
*/
|
|
21657
|
-
static
|
|
21893
|
+
static replaceMemoryStoreTags<ThrowOnError extends boolean = false>(options: Options<ReplaceMemoryStoreTagsData, ThrowOnError>): RequestResult<ReplaceMemoryStoreTagsResponses, ReplaceMemoryStoreTagsErrors, ThrowOnError>;
|
|
21658
21894
|
}
|
|
21659
21895
|
export declare class ModelRoutes {
|
|
21660
21896
|
/**
|
|
@@ -21974,7 +22210,7 @@ export declare class Quotas {
|
|
|
21974
22210
|
*
|
|
21975
22211
|
* Creates a project-scoped quota. `requests` is valid for `scope: project`/`api_key`; `tokens` and `cost_usd` are valid for `scope: project`/`agent`/`actor`; `storage_bytes` is valid for `scope: project` only. Any other scope/metric pair is rejected with 400 (no attribution exists to enforce it). An `actor` quota caps one end user's spend, matched from the generation's session; a null `scope_ref` means one budget *per* actor rather than a pooled project total. A `cost_usd` quota may name one `meter_type` to cap; omitting it caps every priced meter. A duplicate quota (same project, scope, scope_ref, metric, window, meter_type) is rejected with 409.
|
|
21976
22212
|
*
|
|
21977
|
-
* `storage_bytes` caps a stored total rather than a windowed one, so it takes `window: current` and every other metric refuses that value (400 either way). It is enforced at the corpus write paths — file upload and create, document create, document ingest and re-ingest, memory
|
|
22213
|
+
* `storage_bytes` caps a stored total rather than a windowed one, so it takes `window: current` and every other metric refuses that value (400 either way). It is enforced at the corpus write paths — file upload and create, document create, document ingest and re-ingest, memory create — with `409 QUOTA_STORAGE_EXCEEDED` and no `Retry-After`, since no window reset clears a footprint.
|
|
21978
22214
|
*/
|
|
21979
22215
|
static createQuota<ThrowOnError extends boolean = false>(options: Options<CreateQuotaData, ThrowOnError>): RequestResult<CreateQuotaResponses, CreateQuotaErrors, ThrowOnError>;
|
|
21980
22216
|
/**
|
|
@@ -22553,7 +22789,7 @@ export declare class NaturaliClient {
|
|
|
22553
22789
|
readonly ingestionRules: typeof IngestionRules;
|
|
22554
22790
|
readonly knowledge: typeof Knowledge;
|
|
22555
22791
|
readonly memories: typeof Memories;
|
|
22556
|
-
readonly
|
|
22792
|
+
readonly memoryStores: typeof MemoryStores;
|
|
22557
22793
|
readonly modelRoutes: typeof ModelRoutes;
|
|
22558
22794
|
readonly quotas: typeof Quotas;
|
|
22559
22795
|
readonly models: typeof Models;
|
|
@@ -22573,4 +22809,4 @@ export declare class NaturaliClient {
|
|
|
22573
22809
|
constructor({ token, headers }?: NaturaliClientOptions);
|
|
22574
22810
|
}
|
|
22575
22811
|
//#endregion
|
|
22576
|
-
export type { AbortAgentReleaseData, AbortAgentReleaseError, AbortAgentReleaseErrors, AbortAgentReleaseResponse, AbortAgentReleaseResponses, AcceptedGenerationResponse, AcknowledgeExceptionData, AcknowledgeExceptionErrors, AcknowledgeExceptionResponse, AcknowledgeExceptionResponses, Acknowledgement, ActivityEntry, ActorRecord, ActorResourceProperties, AddConversationMessageData, AddConversationMessageError, AddConversationMessageErrors, AddConversationMessageResponse, AddConversationMessageResponses, AddProjectMemberData, AddProjectMemberError, AddProjectMemberErrors, AddProjectMemberResponse, AddProjectMemberResponses, AddSessionMessageData, AddSessionMessageError, AddSessionMessageErrors, AddSessionMessageRequest, AddSessionMessageResponse, AddSessionMessageResponse2, AddSessionMessageResponses, AddSessionMessageSaved, Address, AddressActionSet, AddressList, AdminUser, AdminUserPage, Agent, AgentGenerationResponse, AgentRelease, AgentResourceProperties, AgentVersion, AggregateScores, AiProviderResourceProperties, ApiKeyCreate, ApiKeyCreated, ApiKeyId, ApiKeyList, ApiKeyRecord, ApiKeyUpdate, ApprovalId, ApprovalItem, ApprovalRecurrenceGroup, ApproveApprovalData, ApproveApprovalErrors, ApproveApprovalResponse, ApproveApprovalResponses, AssistantChannel, AssistantGrant, AssistantGrantList, AssistantLinkPreview, AssistantLinkRedeem, AssistantScope, AuditEntry, AuthSession, BaselineComparison, CallToolData, CallToolError, CallToolErrors, CallToolRequest, CallToolResponses, CancelEvalRunData, CancelEvalRunErrors, CancelEvalRunResponse, CancelEvalRunResponses, CancelOrchestrationRunData, CancelOrchestrationRunErrors, CancelOrchestrationRunResponse, CancelOrchestrationRunResponses, Chain, ChainId, Channel, ChannelCreate, ChannelDefaultAction, ChannelDefaultActionInput, ChannelId, ChannelKind, ChannelKindList, ChannelList, ChannelPredicate, ChannelRoute, ChannelRouteList, ChannelRouteWrite, ChannelSurface, ChannelUpdate, ClientOptions, ContainsScorer, Conversation, ConversationId, ConversationList, ConversationMessage, ConversationMessageList, ConversationMessageRecord, ConversationRecord, ConversationResourceProperties, CreateActorData, CreateActorError, CreateActorErrors, CreateActorResponse, CreateActorResponses, CreateAgentData, CreateAgentError, CreateAgentErrors, CreateAgentGenerationData, CreateAgentGenerationError, CreateAgentGenerationErrors, CreateAgentGenerationRequest, CreateAgentGenerationResponse, CreateAgentGenerationResponses, CreateAgentRequest, CreateAgentResponse, CreateAgentResponses, CreateAiProviderData, CreateAiProviderErrors, CreateAiProviderResponse, CreateAiProviderResponses, CreateApiKeyData, CreateApiKeyError, CreateApiKeyErrors, CreateApiKeyResponse, CreateApiKeyResponses, CreateChannelData, CreateChannelError, CreateChannelErrors, CreateChannelResponse, CreateChannelResponses, CreateChannelRouteData, CreateChannelRouteError, CreateChannelRouteErrors, CreateChannelRouteResponse, CreateChannelRouteResponses, CreateConversationData, CreateConversationError, CreateConversationErrors, CreateConversationResponse, CreateConversationResponses, CreateDatasetData, CreateDatasetErrors, CreateDatasetItemData, CreateDatasetItemErrors, CreateDatasetItemFromGenerationData, CreateDatasetItemFromGenerationErrors, CreateDatasetItemFromGenerationResponse, CreateDatasetItemFromGenerationResponses, CreateDatasetItemResponse, CreateDatasetItemResponses, CreateDatasetResponse, CreateDatasetResponses, CreateDocumentData, CreateDocumentError, CreateDocumentErrors, CreateDocumentResponse, CreateDocumentResponses, CreateEmbeddingsData, CreateEmbeddingsError, CreateEmbeddingsErrors, CreateEmbeddingsResponse, CreateEmbeddingsResponses, CreateEvalData, CreateEvalErrors, CreateEvalResponse, CreateEvalResponses, CreateFileData, CreateFileError, CreateFileErrors, CreateFileResponse, CreateFileResponses, CreateFormationData, CreateFormationErrors, CreateFormationResponse, CreateFormationResponses, CreateGuardrailData, CreateGuardrailError, CreateGuardrailErrors, CreateGuardrailRequest, CreateGuardrailResponse, CreateGuardrailResponses, CreateIngestionRuleData, CreateIngestionRuleErrors, CreateIngestionRuleResponse, CreateIngestionRuleResponses, CreateMemoryData, CreateMemoryEntryData, CreateMemoryEntryErrors, CreateMemoryEntryResponse, CreateMemoryEntryResponses, CreateMemoryErrors, CreateMemoryResponse, CreateMemoryResponses, CreateModelRouteData, CreateModelRouteErrors, CreateModelRouteResponse, CreateModelRouteResponses, CreateOrchestrationData, CreateOrchestrationErrors, CreateOrchestrationRequest, CreateOrchestrationResponse, CreateOrchestrationResponses, CreateProjectData, CreateProjectError, CreateProjectErrors, CreateProjectResponse, CreateProjectResponses, CreateProjectUsageThresholdData, CreateProjectUsageThresholdError, CreateProjectUsageThresholdErrors, CreateProjectUsageThresholdResponse, CreateProjectUsageThresholdResponses, CreateQuotaData, CreateQuotaErrors, CreateQuotaResponse, CreateQuotaResponses, CreateSecretData, CreateSecretErrors, CreateSecretResponse, CreateSecretResponses, CreateSessionData, CreateSessionError, CreateSessionErrors, CreateSessionRequest, CreateSessionResponse, CreateSessionResponses, CreateTaskData, CreateTaskErrors, CreateTaskRequest, CreateTaskResponse, CreateTaskResponses, CreateToolData, CreateToolError, CreateToolErrors, CreateToolRequest, CreateToolResponse, CreateToolResponses, CreateTriggerData, CreateTriggerErrors, CreateTriggerRequest, CreateTriggerResponse, CreateTriggerResponses, CreateWebhookData, CreateWebhookError, CreateWebhookErrors, CreateWebhookResponse, CreateWebhookResponses, CreateWorkflowData, CreateWorkflowErrors, CreateWorkflowRequest, CreateWorkflowResponse, CreateWorkflowResponses, CreditEntry, CreditEntryPage, CreditGrant, CreditGrantResult, Cursor, Dataset, DatasetItem, DatasetItemInput, DatasetItemResourceProperties, DatasetResourceProperties, DeleteActorData, DeleteActorError, DeleteActorErrors, DeleteActorResponse, DeleteActorResponses, DeleteAddressData, DeleteAddressError, DeleteAddressErrors, DeleteAddressResponse, DeleteAddressResponses, DeleteAgentData, DeleteAgentError, DeleteAgentErrors, DeleteAgentResponse, DeleteAgentResponses, DeleteAiProviderData, DeleteAiProviderErrors, DeleteAiProviderResponse, DeleteAiProviderResponses, DeleteApiKeyData, DeleteApiKeyError, DeleteApiKeyErrors, DeleteApiKeyResponse, DeleteApiKeyResponses, DeleteChannelData, DeleteChannelError, DeleteChannelErrors, DeleteChannelResponse, DeleteChannelResponses, DeleteChannelRouteData, DeleteChannelRouteError, DeleteChannelRouteErrors, DeleteChannelRouteResponse, DeleteChannelRouteResponses, DeleteConversationData, DeleteConversationError, DeleteConversationErrors, DeleteConversationResponse, DeleteConversationResponses, DeleteDatasetData, DeleteDatasetErrors, DeleteDatasetItemData, DeleteDatasetItemErrors, DeleteDatasetItemResponse, DeleteDatasetItemResponses, DeleteDatasetResponse, DeleteDatasetResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteEvalData, DeleteEvalErrors, DeleteEvalResponse, DeleteEvalResponses, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponses, DeleteFormationData, DeleteFormationErrors, DeleteFormationResponse, DeleteFormationResponses, DeleteGuardrailData, DeleteGuardrailError, DeleteGuardrailErrors, DeleteGuardrailResponse, DeleteGuardrailResponses, DeleteIngestionRuleData, DeleteIngestionRuleErrors, DeleteIngestionRuleResponse, DeleteIngestionRuleResponses, DeleteMemoryData, DeleteMemoryEntryData, DeleteMemoryEntryErrors, DeleteMemoryEntryResponse, DeleteMemoryEntryResponses, DeleteMemoryErrors, DeleteMemoryResponse, DeleteMemoryResponses, DeleteModelRouteData, DeleteModelRouteErrors, DeleteModelRouteResponse, DeleteModelRouteResponses, DeleteOrchestrationData, DeleteOrchestrationErrors, DeleteOrchestrationResponse, DeleteOrchestrationResponses, DeleteProjectData, DeleteProjectError, DeleteProjectErrors, DeleteProjectResponse, DeleteProjectResponses, DeleteProjectUsageThresholdData, DeleteProjectUsageThresholdError, DeleteProjectUsageThresholdErrors, DeleteProjectUsageThresholdResponse, DeleteProjectUsageThresholdResponses, DeleteQuotaData, DeleteQuotaErrors, DeleteQuotaResponse, DeleteQuotaResponses, DeleteSecretData, DeleteSecretErrors, DeleteSecretResponses, DeleteSessionData, DeleteSessionError, DeleteSessionErrors, DeleteSessionResponse, DeleteSessionResponses, DeleteTaskData, DeleteTaskErrors, DeleteTaskResponse, DeleteTaskResponses, DeleteToolData, DeleteToolError, DeleteToolErrors, DeleteToolResponse, DeleteToolResponses, DeleteTriggerData, DeleteTriggerErrors, DeleteTriggerResponse, DeleteTriggerResponses, DeleteWebhookData, DeleteWebhookError, DeleteWebhookErrors, DeleteWebhookResponse, DeleteWebhookResponses, DeleteWorkflowData, DeleteWorkflowErrors, DeleteWorkflowResponse, DeleteWorkflowResponses, DeliveryId, DiscordModes, DocumentKnowledgeResult, DocumentMessageContent, DocumentRecord, DocumentResourceProperties, DocumentStatusRecord, DownloadFileBase64Data, DownloadFileBase64Error, DownloadFileBase64Errors, DownloadFileBase64Response, DownloadFileBase64Responses, DownloadFileData, DownloadFileError, DownloadFileErrors, DownloadFileResponse, DownloadFileResponses, EmbeddingSimilarityScorer, EmbeddingsResponse, ErrorResponse, Eval, EvalResourceProperties, EvalResult, EvalRun, EvaluateGuardrailData, EvaluateGuardrailError, EvaluateGuardrailErrors, EvaluateGuardrailResponse, EvaluateGuardrailResponses, Event, EventSubscription, EventType, ExactMatchScorer, ExceptionId, ExceptionItem, ExportAuditEntriesData, ExportAuditEntriesErrors, ExportAuditEntriesResponse, ExportAuditEntriesResponses, FileRecord, FileRecordWritable, FileResourceProperties, FireTriggerData, FireTriggerErrors, FireTriggerRequest, FireTriggerResponse, FireTriggerResponses, Force, ForkSessionData, ForkSessionError, ForkSessionErrors, ForkSessionRequest, ForkSessionResponse, ForkSessionResponses, Formation, FormationError, FormationEvent, FormationOperation, FormationResource, FormationTemplate, FormationTemplateInput, GenerateConversationMessageCompleted, GenerateConversationMessageData, GenerateConversationMessageError, GenerateConversationMessageErrors, GenerateConversationMessageRequiresAction, GenerateConversationMessageResponse, GenerateConversationMessageResponse2, GenerateConversationMessageResponses, GenerateSessionRequest, GenerateSessionResponse, GenerateSessionResponseData, GenerateSessionResponseError, GenerateSessionResponseErrors, GenerateSessionResponseResponse, GenerateSessionResponseResponses, Generation, GenerationTranscript, GetActorData, GetActorError, GetActorErrors, GetActorResponse, GetActorResponses, GetActorTagsData, GetActorTagsError, GetActorTagsErrors, GetActorTagsResponse, GetActorTagsResponses, GetAddressData, GetAddressError, GetAddressErrors, GetAddressResponse, GetAddressResponses, GetAdminPriceBookData, GetAdminPriceBookError, GetAdminPriceBookErrors, GetAdminPriceBookResponse, GetAdminPriceBookResponses, GetAgentData, GetAgentError, GetAgentErrors, GetAgentResponse, GetAgentResponses, GetAgentVersionData, GetAgentVersionError, GetAgentVersionErrors, GetAgentVersionResponse, GetAgentVersionResponses, GetAiProviderData, GetAiProviderErrors, GetAiProviderPricesData, GetAiProviderPricesErrors, GetAiProviderPricesResponse, GetAiProviderPricesResponses, GetAiProviderResponse, GetAiProviderResponses, GetApiKeyData, GetApiKeyError, GetApiKeyErrors, GetApiKeyResponse, GetApiKeyResponses, GetApprovalData, GetApprovalErrors, GetApprovalResponse, GetApprovalResponses, GetAuditEntryData, GetAuditEntryErrors, GetAuditEntryResponse, GetAuditEntryResponses, GetChainData, GetChainErrors, GetChainResponse, GetChainResponses, GetChannelConversationData, GetChannelConversationError, GetChannelConversationErrors, GetChannelConversationResponse, GetChannelConversationResponses, GetChannelData, GetChannelError, GetChannelErrors, GetChannelResponse, GetChannelResponses, GetChannelRouteData, GetChannelRouteError, GetChannelRouteErrors, GetChannelRouteResponse, GetChannelRouteResponses, GetConversationData, GetConversationError, GetConversationErrors, GetConversationResponse, GetConversationResponses, GetConversationTagsData, GetConversationTagsError, GetConversationTagsErrors, GetConversationTagsResponse, GetConversationTagsResponses, GetCurrentUserBillingData, GetCurrentUserBillingError, GetCurrentUserBillingErrors, GetCurrentUserBillingResponse, GetCurrentUserBillingResponses, GetCurrentUserData, GetCurrentUserError, GetCurrentUserErrors, GetCurrentUserResponse, GetCurrentUserResponses, GetCurrentUserUsageData, GetCurrentUserUsageError, GetCurrentUserUsageErrors, GetCurrentUserUsageResponse, GetCurrentUserUsageResponses, GetDatasetData, GetDatasetErrors, GetDatasetResponse, GetDatasetResponses, GetDocumentData, GetDocumentError, GetDocumentErrors, GetDocumentResponse, GetDocumentResponses, GetDocumentStatusData, GetDocumentStatusError, GetDocumentStatusErrors, GetDocumentStatusResponse, GetDocumentStatusResponses, GetDocumentTagsData, GetDocumentTagsError, GetDocumentTagsErrors, GetDocumentTagsResponse, GetDocumentTagsResponses, GetEvalData, GetEvalErrors, GetEvalResponse, GetEvalResponses, GetEvalRunData, GetEvalRunErrors, GetEvalRunResponse, GetEvalRunResponses, GetExceptionData, GetExceptionErrors, GetExceptionResponse, GetExceptionResponses, GetFileData, GetFileError, GetFileErrors, GetFileResponse, GetFileResponses, GetFileTagsData, GetFileTagsError, GetFileTagsErrors, GetFileTagsResponse, GetFileTagsResponses, GetFormationData, GetFormationErrors, GetFormationResponse, GetFormationResponses, GetGenerationData, GetGenerationError, GetGenerationErrors, GetGenerationResponse, GetGenerationResponses, GetGenerationTranscriptData, GetGenerationTranscriptError, GetGenerationTranscriptErrors, GetGenerationTranscriptResponse, GetGenerationTranscriptResponses, GetGuardrailData, GetGuardrailError, GetGuardrailErrors, GetGuardrailResponse, GetGuardrailResponses, GetGuardrailVersionData, GetGuardrailVersionError, GetGuardrailVersionErrors, GetGuardrailVersionResponse, GetGuardrailVersionResponses, GetIngestionRuleData, GetIngestionRuleErrors, GetIngestionRuleResponse, GetIngestionRuleResponses, GetMemoryData, GetMemoryEntryData, GetMemoryEntryErrors, GetMemoryEntryResponse, GetMemoryEntryResponses, GetMemoryEntryTagsData, GetMemoryEntryTagsErrors, GetMemoryEntryTagsResponse, GetMemoryEntryTagsResponses, GetMemoryErrors, GetMemoryResponse, GetMemoryResponses, GetMemoryTagsData, GetMemoryTagsErrors, GetMemoryTagsResponse, GetMemoryTagsResponses, GetModelData, GetModelError, GetModelErrors, GetModelResponse, GetModelResponses, GetModelRouteData, GetModelRouteErrors, GetModelRouteResponse, GetModelRouteResponses, GetOrchestrationData, GetOrchestrationErrors, GetOrchestrationResponse, GetOrchestrationResponses, GetOrchestrationRunData, GetOrchestrationRunErrors, GetOrchestrationRunResponse, GetOrchestrationRunResponses, GetOrchestrationVersionData, GetOrchestrationVersionErrors, GetOrchestrationVersionResponse, GetOrchestrationVersionResponses, GetProjectData, GetProjectError, GetProjectErrors, GetProjectResponse, GetProjectResponses, GetProjectUsageData, GetProjectUsageError, GetProjectUsageErrors, GetProjectUsageReceiptData, GetProjectUsageReceiptError, GetProjectUsageReceiptErrors, GetProjectUsageReceiptResponse, GetProjectUsageReceiptResponses, GetProjectUsageResponse, GetProjectUsageResponses, GetQueueStatsData, GetQueueStatsErrors, GetQueueStatsResponse, GetQueueStatsResponses, GetQuotaData, GetQuotaErrors, GetQuotaResponse, GetQuotaResponses, GetSecretData, GetSecretErrors, GetSecretResponse, GetSecretResponses, GetSessionData, GetSessionError, GetSessionErrors, GetSessionResponse, GetSessionResponses, GetSessionTagsData, GetSessionTagsError, GetSessionTagsErrors, GetSessionTagsResponse, GetSessionTagsResponses, GetTaskData, GetTaskErrors, GetTaskHistoryData, GetTaskHistoryErrors, GetTaskHistoryResponse, GetTaskHistoryResponses, GetTaskResponse, GetTaskResponses, GetToolData, GetToolError, GetToolErrors, GetToolResponse, GetToolResponses, GetTraceData, GetTraceError, GetTraceErrors, GetTraceResponse, GetTraceResponses, GetTraceTreeData, GetTraceTreeError, GetTraceTreeErrors, GetTraceTreeResponse, GetTraceTreeResponses, GetTriggerData, GetTriggerErrors, GetTriggerFiringData, GetTriggerFiringErrors, GetTriggerFiringResponse, GetTriggerFiringResponses, GetTriggerResponse, GetTriggerResponses, GetTriggerSecretData, GetTriggerSecretErrors, GetTriggerSecretResponse, GetTriggerSecretResponses, GetWebhookData, GetWebhookDeliveryData, GetWebhookDeliveryError, GetWebhookDeliveryErrors, GetWebhookDeliveryResponse, GetWebhookDeliveryResponses, GetWebhookError, GetWebhookErrors, GetWebhookResponse, GetWebhookResponses, GetWorkflowData, GetWorkflowErrors, GetWorkflowResponse, GetWorkflowResponses, GetWorkflowVersionData, GetWorkflowVersionErrors, GetWorkflowVersionResponse, GetWorkflowVersionResponses, GrantId, GrantUserCreditData, GrantUserCreditError, GrantUserCreditErrors, GrantUserCreditResponse, GrantUserCreditResponses, GrantUserPlanData, GrantUserPlanError, GrantUserPlanErrors, GrantUserPlanResponse, GrantUserPlanResponses, GrantableProjectRole, Guardrail, GuardrailDocument, GuardrailEvaluation, GuardrailResourceProperties, GuardrailVersion, HumanInputRequest, IdempotencyKey, Identifier, IngestDocumentData, IngestDocumentError, IngestDocumentErrors, IngestDocumentResponse, IngestDocumentResponses, IngestedDocumentRecord, IngestionRule, IngestionRuleResourceProperties, JsonLogicScorer, KnowledgeResult, Limit, LinkToken, ListActivityData, ListActivityErrors, ListActivityResponse, ListActivityResponses, ListActorsData, ListActorsError, ListActorsErrors, ListActorsResponse, ListActorsResponses, ListAddressConversationsData, ListAddressConversationsError, ListAddressConversationsErrors, ListAddressConversationsResponse, ListAddressConversationsResponses, ListAddressesData, ListAddressesError, ListAddressesErrors, ListAddressesResponse, ListAddressesResponses, ListAgentVersionsData, ListAgentVersionsError, ListAgentVersionsErrors, ListAgentVersionsResponse, ListAgentVersionsResponses, ListAgentsData, ListAgentsError, ListAgentsErrors, ListAgentsResponse, ListAgentsResponses, ListAiProviderModelsData, ListAiProviderModelsErrors, ListAiProviderModelsResponse, ListAiProviderModelsResponses, ListAiProvidersData, ListAiProvidersErrors, ListAiProvidersResponse, ListAiProvidersResponses, ListApiKeysData, ListApiKeysError, ListApiKeysErrors, ListApiKeysResponse, ListApiKeysResponses, ListApprovalRecurrencesData, ListApprovalRecurrencesErrors, ListApprovalRecurrencesResponse, ListApprovalRecurrencesResponses, ListApprovalsData, ListApprovalsErrors, ListApprovalsResponse, ListApprovalsResponses, ListAssistantGrantsData, ListAssistantGrantsError, ListAssistantGrantsErrors, ListAssistantGrantsResponse, ListAssistantGrantsResponses, ListAuditEntriesData, ListAuditEntriesErrors, ListAuditEntriesResponse, ListAuditEntriesResponses, ListChainsData, ListChainsErrors, ListChainsResponse, ListChainsResponses, ListChannelConversationMessagesData, ListChannelConversationMessagesError, ListChannelConversationMessagesErrors, ListChannelConversationMessagesResponse, ListChannelConversationMessagesResponses, ListChannelConversationsData, ListChannelConversationsError, ListChannelConversationsErrors, ListChannelConversationsResponse, ListChannelConversationsResponses, ListChannelKindsData, ListChannelKindsError, ListChannelKindsErrors, ListChannelKindsResponse, ListChannelKindsResponses, ListChannelRoutesData, ListChannelRoutesError, ListChannelRoutesErrors, ListChannelRoutesResponse, ListChannelRoutesResponses, ListChannelsData, ListChannelsError, ListChannelsErrors, ListChannelsResponse, ListChannelsResponses, ListConversationMessagesData, ListConversationMessagesError, ListConversationMessagesErrors, ListConversationMessagesResponse, ListConversationMessagesResponses, ListConversationsData, ListConversationsError, ListConversationsErrors, ListConversationsResponse, ListConversationsResponses, ListDatasetItemsData, ListDatasetItemsErrors, ListDatasetItemsResponse, ListDatasetItemsResponses, ListDatasetsData, ListDatasetsErrors, ListDatasetsResponse, ListDatasetsResponses, ListDocumentsData, ListDocumentsError, ListDocumentsErrors, ListDocumentsResponse, ListDocumentsResponses, ListEvalResultsData, ListEvalResultsErrors, ListEvalResultsResponse, ListEvalResultsResponses, ListEvalRunsData, ListEvalRunsErrors, ListEvalRunsResponse, ListEvalRunsResponses, ListEvalsData, ListEvalsErrors, ListEvalsResponse, ListEvalsResponses, ListExceptionsData, ListExceptionsErrors, ListExceptionsResponse, ListExceptionsResponses, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, ListFormationEventsData, ListFormationEventsErrors, ListFormationEventsResponse, ListFormationEventsResponses, ListFormationsData, ListFormationsErrors, ListFormationsResponse, ListFormationsResponses, ListGenerationsData, ListGenerationsError, ListGenerationsErrors, ListGenerationsResponse, ListGenerationsResponses, ListGuardrailVersionsData, ListGuardrailVersionsError, ListGuardrailVersionsErrors, ListGuardrailVersionsResponse, ListGuardrailVersionsResponses, ListGuardrailsData, ListGuardrailsError, ListGuardrailsErrors, ListGuardrailsResponse, ListGuardrailsResponses, ListIngestionRulesData, ListIngestionRulesErrors, ListIngestionRulesResponse, ListIngestionRulesResponses, ListMemoriesData, ListMemoriesErrors, ListMemoriesResponse, ListMemoriesResponses, ListMemoryEntriesData, ListMemoryEntriesErrors, ListMemoryEntriesResponse, ListMemoryEntriesResponses, ListModelRoutesData, ListModelRoutesErrors, ListModelRoutesResponse, ListModelRoutesResponses, ListModelsData, ListModelsError, ListModelsErrors, ListModelsResponse, ListModelsResponses, ListOrchestrationRunsData, ListOrchestrationRunsErrors, ListOrchestrationRunsResponse, ListOrchestrationRunsResponses, ListOrchestrationVersionsData, ListOrchestrationVersionsErrors, ListOrchestrationVersionsResponse, ListOrchestrationVersionsResponses, ListOrchestrationsData, ListOrchestrationsErrors, ListOrchestrationsResponse, ListOrchestrationsResponses, ListProjectChannelRoutesData, ListProjectChannelRoutesError, ListProjectChannelRoutesErrors, ListProjectChannelRoutesResponse, ListProjectChannelRoutesResponses, ListProjectMembersData, ListProjectMembersError, ListProjectMembersErrors, ListProjectMembersResponse, ListProjectMembersResponses, ListProjectUsageEventsData, ListProjectUsageEventsError, ListProjectUsageEventsErrors, ListProjectUsageEventsResponse, ListProjectUsageEventsResponses, ListProjectUsageThresholdsData, ListProjectUsageThresholdsError, ListProjectUsageThresholdsErrors, ListProjectUsageThresholdsResponse, ListProjectUsageThresholdsResponses, ListProjectsData, ListProjectsError, ListProjectsErrors, ListProjectsResponse, ListProjectsResponses, ListQuotasData, ListQuotasErrors, ListQuotasResponse, ListQuotasResponses, ListSecretsData, ListSecretsErrors, ListSecretsResponse, ListSecretsResponses, ListSessionForksData, ListSessionForksError, ListSessionForksErrors, ListSessionForksResponse, ListSessionForksResponses, ListSessionsData, ListSessionsError, ListSessionsErrors, ListSessionsResponse, ListSessionsResponses, ListTasksData, ListTasksErrors, ListTasksResponse, ListTasksResponses, ListToolsData, ListToolsError, ListToolsErrors, ListToolsResponse, ListToolsResponses, ListTracesData, ListTracesError, ListTracesErrors, ListTracesResponse, ListTracesResponses, ListTriggerFiringsData, ListTriggerFiringsErrors, ListTriggerFiringsResponse, ListTriggerFiringsResponses, ListTriggersData, ListTriggersErrors, ListTriggersResponse, ListTriggersResponses, ListUserCreditsData, ListUserCreditsError, ListUserCreditsErrors, ListUserCreditsResponse, ListUserCreditsResponses, ListUserPlanHistoryData, ListUserPlanHistoryError, ListUserPlanHistoryErrors, ListUserPlanHistoryResponse, ListUserPlanHistoryResponses, ListUsersData, ListUsersError, ListUsersErrors, ListUsersResponse, ListUsersResponses, ListWebhookDeliveriesData, ListWebhookDeliveriesError, ListWebhookDeliveriesErrors, ListWebhookDeliveriesResponse, ListWebhookDeliveriesResponses, ListWebhooksData, ListWebhooksError, ListWebhooksErrors, ListWebhooksResponse, ListWebhooksResponses, ListWorkflowVersionsData, ListWorkflowVersionsErrors, ListWorkflowVersionsResponse, ListWorkflowVersionsResponses, ListWorkflowsData, ListWorkflowsErrors, ListWorkflowsResponse, ListWorkflowsResponses, LlmJudgeScorer, LogoutData, LogoutError, LogoutErrors, LogoutRequest, LogoutResponse, LogoutResponses, Memory, MemoryEntry, MemoryEntryResourceProperties, MemoryEntryWriteResult, MemoryKnowledgeResult, MemoryResourceProperties, MergeActorTagsData, MergeActorTagsError, MergeActorTagsErrors, MergeActorTagsResponse, MergeActorTagsResponses, MergeConversationTagsData, MergeConversationTagsError, MergeConversationTagsErrors, MergeConversationTagsResponse, MergeConversationTagsResponses, MergeDocumentTagsData, MergeDocumentTagsError, MergeDocumentTagsErrors, MergeDocumentTagsResponse, MergeDocumentTagsResponses, MergeFileTagsData, MergeFileTagsError, MergeFileTagsErrors, MergeFileTagsResponse, MergeFileTagsResponses, MergeMemoryEntryTagsData, MergeMemoryEntryTagsErrors, MergeMemoryEntryTagsResponse, MergeMemoryEntryTagsResponses, MergeMemoryTagsData, MergeMemoryTagsErrors, MergeMemoryTagsResponse, MergeMemoryTagsResponses, MergeSessionTagsData, MergeSessionTagsError, MergeSessionTagsErrors, MergeSessionTagsResponse, MergeSessionTagsResponses, MessagesLimit, Model, ModelList, ModelName, ModelRoute, ModelRouteResourceProperties, ModelRouteTarget, NaturaliClientOptions, NodeExecution, NullableTagBag, Offset, OpenChannelConversationData, OpenChannelConversationError, OpenChannelConversationErrors, OpenChannelConversationResponse, OpenChannelConversationResponses, Options, Orchestration, OrchestrationEdge, OrchestrationId, OrchestrationNode, OrchestrationResourceProperties, OrchestrationRun, OrchestrationRunId, OrchestrationVersion, OutputSchemaScorer, ParameterDeclaration, PatchAgentData, PatchAgentError, PatchAgentErrors, PatchAgentResponse, PatchAgentResponses, PauseOrchestrationRunData, PauseOrchestrationRunErrors, PauseOrchestrationRunRequest, PauseOrchestrationRunResponse, PauseOrchestrationRunResponses, PauseTaskData, PauseTaskErrors, PauseTaskRequest, PauseTaskResponse, PauseTaskResponses, PlanChange, PlanEvent, PlanEventPage, PlanFormationData, PlanFormationErrors, PlanFormationResponse, PlanFormationResponses, PlanResult, PreviewAssistantLinkData, PreviewAssistantLinkError, PreviewAssistantLinkErrors, PreviewAssistantLinkResponse, PreviewAssistantLinkResponses, Price, PriceBook, Project, ProjectCreate, ProjectId, ProjectList, ProjectMember, ProjectMemberCreate, ProjectMemberList, ProjectMemberUpdate, ProjectRole, ProjectRuns, ProjectUpdate, ProjectUsage, ProjectUsageDistinct, ProjectUsageEvent, ProjectUsageEventPage, ProjectUsageFilters, ProjectUsageGroups, ProjectUsageReceipt, PromoteAgentReleaseData, PromoteAgentReleaseError, PromoteAgentReleaseErrors, PromoteAgentReleaseResponse, PromoteAgentReleaseResponses, ProviderModelsResponse, ProviderPrice, ProviderPricesResponse, PurgeGenerationContentData, PurgeGenerationContentError, PurgeGenerationContentErrors, PurgeGenerationContentResponse, PurgeGenerationContentResponses, PurgeTraceContentData, PurgeTraceContentError, PurgeTraceContentErrors, PurgeTraceContentResponse, PurgeTraceContentResponses, QueueStats, Quota, QuotaResourceProperties, RedeemAssistantLinkData, RedeemAssistantLinkError, RedeemAssistantLinkErrors, RedeemAssistantLinkResponse, RedeemAssistantLinkResponses, RedeliverWebhookDeliveryData, RedeliverWebhookDeliveryError, RedeliverWebhookDeliveryErrors, RedeliverWebhookDeliveryResponse, RedeliverWebhookDeliveryResponses, RefreshRequest, RefreshSessionData, RefreshSessionError, RefreshSessionErrors, RefreshSessionResponse, RefreshSessionResponses, ReingestDocumentData, ReingestDocumentError, ReingestDocumentErrors, ReingestDocumentResponse, ReingestDocumentResponses, RejectApprovalData, RejectApprovalErrors, RejectApprovalResponse, RejectApprovalResponses, RemoveConversationMessageData, RemoveConversationMessageError, RemoveConversationMessageErrors, RemoveConversationMessageResponse, RemoveConversationMessageResponses, RemoveProjectMemberData, RemoveProjectMemberError, RemoveProjectMemberErrors, RemoveProjectMemberResponse, RemoveProjectMemberResponses, ReplaceActorTagsData, ReplaceActorTagsError, ReplaceActorTagsErrors, ReplaceActorTagsResponse, ReplaceActorTagsResponses, ReplaceConversationTagsData, ReplaceConversationTagsError, ReplaceConversationTagsErrors, ReplaceConversationTagsResponse, ReplaceConversationTagsResponses, ReplaceDocumentTagsData, ReplaceDocumentTagsError, ReplaceDocumentTagsErrors, ReplaceDocumentTagsResponse, ReplaceDocumentTagsResponses, ReplaceFileTagsData, ReplaceFileTagsError, ReplaceFileTagsErrors, ReplaceFileTagsResponse, ReplaceFileTagsResponses, ReplaceMemoryEntryTagsData, ReplaceMemoryEntryTagsErrors, ReplaceMemoryEntryTagsResponse, ReplaceMemoryEntryTagsResponses, ReplaceMemoryTagsData, ReplaceMemoryTagsErrors, ReplaceMemoryTagsResponse, ReplaceMemoryTagsResponses, ReplaceSessionTagsData, ReplaceSessionTagsError, ReplaceSessionTagsErrors, ReplaceSessionTagsResponse, ReplaceSessionTagsResponses, RequestSignInCodeData, RequestSignInCodeError, RequestSignInCodeErrors, RequestSignInCodeResponse, RequestSignInCodeResponses, RequiredAction, ResolveExceptionData, ResolveExceptionErrors, ResolveExceptionResponse, ResolveExceptionResponses, ResourceDeclaration, RestoreAgentVersionData, RestoreAgentVersionError, RestoreAgentVersionErrors, RestoreAgentVersionRequest, RestoreAgentVersionResponse, RestoreAgentVersionResponses, RestoreGuardrailVersionData, RestoreGuardrailVersionError, RestoreGuardrailVersionErrors, RestoreGuardrailVersionRequest, RestoreGuardrailVersionResponse, RestoreGuardrailVersionResponses, RestoreOrchestrationVersionData, RestoreOrchestrationVersionErrors, RestoreOrchestrationVersionRequest, RestoreOrchestrationVersionResponse, RestoreOrchestrationVersionResponses, RestoreWorkflowVersionData, RestoreWorkflowVersionErrors, RestoreWorkflowVersionRequest, RestoreWorkflowVersionResponse, RestoreWorkflowVersionResponses, ResumeOrchestrationRunData, ResumeOrchestrationRunErrors, ResumeOrchestrationRunResponse, ResumeOrchestrationRunResponses, ResumeTaskData, ResumeTaskErrors, ResumeTaskResponse, ResumeTaskResponses, RevokeAssistantGrantData, RevokeAssistantGrantError, RevokeAssistantGrantErrors, RevokeAssistantGrantResponse, RevokeAssistantGrantResponses, RotateApiKeyData, RotateApiKeyError, RotateApiKeyErrors, RotateApiKeyResponse, RotateApiKeyResponses, RotateTriggerSecretData, RotateTriggerSecretErrors, RotateTriggerSecretResponse, RotateTriggerSecretResponses, RotateWebhookSecretData, RotateWebhookSecretError, RotateWebhookSecretErrors, RotateWebhookSecretResponse, RotateWebhookSecretResponses, RouteId, ScorerResult, Scorers, SearchKnowledgeData, SearchKnowledgeError, SearchKnowledgeErrors, SearchKnowledgeResponse, SearchKnowledgeResponses, SecretResourceProperties, SendSessionMessageResponse, SessionId, SessionRecord, SessionResourceProperties, SetAddressActionData, SetAddressActionError, SetAddressActionErrors, SetAddressActionResponse, SetAddressActionResponses, SetAgentReleaseData, SetAgentReleaseError, SetAgentReleaseErrors, SetAgentReleaseRequest, SetAgentReleaseResponse, SetAgentReleaseResponses, SignInCodeRequest, SignInCodeVerify, StartEvalRunData, StartEvalRunErrors, StartEvalRunResponse, StartEvalRunResponses, StartOrchestrationRunData, StartOrchestrationRunErrors, StartOrchestrationRunRequest, StartOrchestrationRunResponse, StartOrchestrationRunResponses, SubmitAgentToolOutputsData, SubmitAgentToolOutputsError, SubmitAgentToolOutputsErrors, SubmitAgentToolOutputsResponse, SubmitAgentToolOutputsResponses, SubmitHumanInputData, SubmitHumanInputErrors, SubmitHumanInputResponse, SubmitHumanInputResponses, SubmitSessionToolOutputsData, SubmitSessionToolOutputsError, SubmitSessionToolOutputsErrors, SubmitSessionToolOutputsRequest, SubmitSessionToolOutputsResponse, SubmitSessionToolOutputsResponses, SubmitToolOutputsRequest, TagBag, TagsQuery, Task, TaskTransition, Tool, ToolBinding, ToolOutputMessageContent, ToolResourceProperties, ToolScorer, Trace, TraceTreeNode, TranscriptStep, TranscriptToolCall, TranscriptToolResult, TransitionTaskData, TransitionTaskErrors, TransitionTaskRequest, TransitionTaskResponse, TransitionTaskResponses, Trigger, TriggerFiring, TriggerFiringListResponse, TriggerResourceProperties, TriggerSecretResponse, TriggerWithSecret, UnauthorizedFormationAction, UpdateActorData, UpdateActorError, UpdateActorErrors, UpdateActorResponse, UpdateActorResponses, UpdateAgentData, UpdateAgentError, UpdateAgentErrors, UpdateAgentRequest, UpdateAgentResponse, UpdateAgentResponses, UpdateAiProviderData, UpdateAiProviderErrors, UpdateAiProviderPricesData, UpdateAiProviderPricesErrors, UpdateAiProviderPricesResponse, UpdateAiProviderPricesResponses, UpdateAiProviderResponses, UpdateApiKeyData, UpdateApiKeyError, UpdateApiKeyErrors, UpdateApiKeyResponse, UpdateApiKeyResponses, UpdateChannelData, UpdateChannelError, UpdateChannelErrors, UpdateChannelResponse, UpdateChannelResponses, UpdateChannelRouteData, UpdateChannelRouteError, UpdateChannelRouteErrors, UpdateChannelRouteResponse, UpdateChannelRouteResponses, UpdateConversationData, UpdateConversationError, UpdateConversationErrors, UpdateConversationResponse, UpdateConversationResponses, UpdateCurrentUserData, UpdateCurrentUserError, UpdateCurrentUserErrors, UpdateCurrentUserResponse, UpdateCurrentUserResponses, UpdateDatasetData, UpdateDatasetErrors, UpdateDatasetItemData, UpdateDatasetItemErrors, UpdateDatasetItemResponse, UpdateDatasetItemResponses, UpdateDatasetResponse, UpdateDatasetResponses, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateEvalData, UpdateEvalErrors, UpdateEvalResponse, UpdateEvalResponses, UpdateFileMetadataData, UpdateFileMetadataError, UpdateFileMetadataErrors, UpdateFileMetadataResponse, UpdateFileMetadataResponses, UpdateFormationData, UpdateFormationErrors, UpdateFormationResponse, UpdateFormationResponses, UpdateGenerationData, UpdateGenerationError, UpdateGenerationErrors, UpdateGenerationRequest, UpdateGenerationResponse, UpdateGenerationResponses, UpdateGuardrailData, UpdateGuardrailError, UpdateGuardrailErrors, UpdateGuardrailRequest, UpdateGuardrailResponse, UpdateGuardrailResponses, UpdateIngestionRuleData, UpdateIngestionRuleErrors, UpdateIngestionRuleResponse, UpdateIngestionRuleResponses, UpdateMemoryData, UpdateMemoryEntryData, UpdateMemoryEntryErrors, UpdateMemoryEntryResponse, UpdateMemoryEntryResponses, UpdateMemoryErrors, UpdateMemoryResponse, UpdateMemoryResponses, UpdateModelRouteData, UpdateModelRouteErrors, UpdateModelRouteResponse, UpdateModelRouteResponses, UpdateOrchestrationData, UpdateOrchestrationErrors, UpdateOrchestrationRequest, UpdateOrchestrationResponse, UpdateOrchestrationResponses, UpdateProjectData, UpdateProjectError, UpdateProjectErrors, UpdateProjectMemberData, UpdateProjectMemberError, UpdateProjectMemberErrors, UpdateProjectMemberResponse, UpdateProjectMemberResponses, UpdateProjectResponse, UpdateProjectResponses, UpdateQuotaData, UpdateQuotaErrors, UpdateQuotaResponse, UpdateQuotaResponses, UpdateSecretData, UpdateSecretErrors, UpdateSecretResponses, UpdateSessionData, UpdateSessionError, UpdateSessionErrors, UpdateSessionRequest, UpdateSessionResponse, UpdateSessionResponses, UpdateTaskData, UpdateTaskErrors, UpdateTaskRequest, UpdateTaskResponse, UpdateTaskResponses, UpdateToolData, UpdateToolError, UpdateToolErrors, UpdateToolRequest, UpdateToolResponse, UpdateToolResponses, UpdateTriggerData, UpdateTriggerErrors, UpdateTriggerRequest, UpdateTriggerResponse, UpdateTriggerResponses, UpdateUserRolesData, UpdateUserRolesError, UpdateUserRolesErrors, UpdateUserRolesResponse, UpdateUserRolesResponses, UpdateWebhookData, UpdateWebhookError, UpdateWebhookErrors, UpdateWebhookResponse, UpdateWebhookResponses, UpdateWorkflowData, UpdateWorkflowErrors, UpdateWorkflowRequest, UpdateWorkflowResponse, UpdateWorkflowResponses, UploadFileBase64Data, UploadFileBase64Error, UploadFileBase64Errors, UploadFileBase64Request, UploadFileBase64Response, UploadFileBase64Responses, UploadFileData, UploadFileError, UploadFileErrors, UploadFileResponse, UploadFileResponses, UpsertProviderPricesRequest, UsageActionId, UsageActorId, UsageAgentId, UsageAiProviderId, UsageComponent, UsageComponents, UsageEventComponent, UsageGenerationId, UsageGroup, UsageMeterType, UsageOrchestrationId, UsageOrchestrationRunId, UsageSessionId, UsageSource, UsageThreshold, UsageThresholdCreate, UsageTokens, UsageTotals, UsageTraceId, UsageTriggerId, User, UserBilling, UserPlanGrant, UserRolesUpdate, UserUpdate, UserUsage, ValidateFormationData, ValidateFormationErrors, ValidateFormationResponse, ValidateFormationResponses, ValidateOrchestrationData, ValidateOrchestrationErrors, ValidateOrchestrationRequest, ValidateOrchestrationResponse, ValidateOrchestrationResponses, ValidationError, ValidationResult, VerifySignInCodeData, VerifySignInCodeError, VerifySignInCodeErrors, VerifySignInCodeResponse, VerifySignInCodeResponses, Webhook, WebhookCreate, WebhookDelivery, WebhookDeliveryList, WebhookId, WebhookList, WebhookUpdate, WebhookWithSecret, Workflow, WorkflowResourceProperties, WorkflowState, WorkflowTransition, WorkflowVersion };
|
|
22812
|
+
export type { AbortAgentReleaseData, AbortAgentReleaseError, AbortAgentReleaseErrors, AbortAgentReleaseResponse, AbortAgentReleaseResponses, AcceptedGenerationResponse, AcknowledgeExceptionData, AcknowledgeExceptionErrors, AcknowledgeExceptionResponse, AcknowledgeExceptionResponses, Acknowledgement, ActivityEntry, ActorRecord, ActorResourceProperties, AddConversationMessageData, AddConversationMessageError, AddConversationMessageErrors, AddConversationMessageResponse, AddConversationMessageResponses, AddProjectMemberData, AddProjectMemberError, AddProjectMemberErrors, AddProjectMemberResponse, AddProjectMemberResponses, AddSessionMessageData, AddSessionMessageError, AddSessionMessageErrors, AddSessionMessageRequest, AddSessionMessageResponse, AddSessionMessageResponse2, AddSessionMessageResponses, AddSessionMessageSaved, Address, AddressActionSet, AddressList, AdminUser, AdminUserPage, Agent, AgentGenerationResponse, AgentRelease, AgentResourceProperties, AgentVersion, AggregateScores, AiProviderResourceProperties, ApiKeyCreate, ApiKeyCreated, ApiKeyId, ApiKeyList, ApiKeyRecord, ApiKeyUpdate, ApprovalId, ApprovalItem, ApprovalRecurrenceGroup, ApproveApprovalData, ApproveApprovalErrors, ApproveApprovalResponse, ApproveApprovalResponses, AssistantChannel, AssistantGrant, AssistantGrantList, AssistantLinkPreview, AssistantLinkRedeem, AssistantScope, AuditEntry, AuthSession, BaselineComparison, CallToolData, CallToolError, CallToolErrors, CallToolRequest, CallToolResponses, CancelEvalRunData, CancelEvalRunErrors, CancelEvalRunResponse, CancelEvalRunResponses, CancelOrchestrationRunData, CancelOrchestrationRunErrors, CancelOrchestrationRunResponse, CancelOrchestrationRunResponses, Chain, ChainId, Channel, ChannelCreate, ChannelDefaultAction, ChannelDefaultActionInput, ChannelId, ChannelKind, ChannelKindList, ChannelList, ChannelPredicate, ChannelRoute, ChannelRouteList, ChannelRouteWrite, ChannelSurface, ChannelUpdate, ClientOptions, ContainsScorer, Conversation, ConversationId, ConversationList, ConversationMessage, ConversationMessageList, ConversationMessageRecord, ConversationRecord, ConversationResourceProperties, CreateActorData, CreateActorError, CreateActorErrors, CreateActorResponse, CreateActorResponses, CreateAgentData, CreateAgentError, CreateAgentErrors, CreateAgentGenerationData, CreateAgentGenerationError, CreateAgentGenerationErrors, CreateAgentGenerationRequest, CreateAgentGenerationResponse, CreateAgentGenerationResponses, CreateAgentRequest, CreateAgentResponse, CreateAgentResponses, CreateAiProviderData, CreateAiProviderErrors, CreateAiProviderResponse, CreateAiProviderResponses, CreateApiKeyData, CreateApiKeyError, CreateApiKeyErrors, CreateApiKeyResponse, CreateApiKeyResponses, CreateChannelData, CreateChannelError, CreateChannelErrors, CreateChannelResponse, CreateChannelResponses, CreateChannelRouteData, CreateChannelRouteError, CreateChannelRouteErrors, CreateChannelRouteResponse, CreateChannelRouteResponses, CreateConversationData, CreateConversationError, CreateConversationErrors, CreateConversationResponse, CreateConversationResponses, CreateDatasetData, CreateDatasetErrors, CreateDatasetItemData, CreateDatasetItemErrors, CreateDatasetItemFromGenerationData, CreateDatasetItemFromGenerationErrors, CreateDatasetItemFromGenerationResponse, CreateDatasetItemFromGenerationResponses, CreateDatasetItemResponse, CreateDatasetItemResponses, CreateDatasetResponse, CreateDatasetResponses, CreateDocumentData, CreateDocumentError, CreateDocumentErrors, CreateDocumentResponse, CreateDocumentResponses, CreateEmbeddingsData, CreateEmbeddingsError, CreateEmbeddingsErrors, CreateEmbeddingsResponse, CreateEmbeddingsResponses, CreateEvalData, CreateEvalErrors, CreateEvalResponse, CreateEvalResponses, CreateFileData, CreateFileError, CreateFileErrors, CreateFileResponse, CreateFileResponses, CreateFormationData, CreateFormationErrors, CreateFormationResponse, CreateFormationResponses, CreateGuardrailData, CreateGuardrailError, CreateGuardrailErrors, CreateGuardrailRequest, CreateGuardrailResponse, CreateGuardrailResponses, CreateIngestionRuleData, CreateIngestionRuleErrors, CreateIngestionRuleResponse, CreateIngestionRuleResponses, CreateMemoryData, CreateMemoryErrors, CreateMemoryResponse, CreateMemoryResponses, CreateMemoryStoreData, CreateMemoryStoreErrors, CreateMemoryStoreResponse, CreateMemoryStoreResponses, CreateModelRouteData, CreateModelRouteErrors, CreateModelRouteResponse, CreateModelRouteResponses, CreateOrchestrationData, CreateOrchestrationErrors, CreateOrchestrationRequest, CreateOrchestrationResponse, CreateOrchestrationResponses, CreateProjectData, CreateProjectError, CreateProjectErrors, CreateProjectResponse, CreateProjectResponses, CreateProjectUsageThresholdData, CreateProjectUsageThresholdError, CreateProjectUsageThresholdErrors, CreateProjectUsageThresholdResponse, CreateProjectUsageThresholdResponses, CreateQuotaData, CreateQuotaErrors, CreateQuotaResponse, CreateQuotaResponses, CreateSecretData, CreateSecretErrors, CreateSecretResponse, CreateSecretResponses, CreateSessionData, CreateSessionError, CreateSessionErrors, CreateSessionRequest, CreateSessionResponse, CreateSessionResponses, CreateTaskData, CreateTaskErrors, CreateTaskRequest, CreateTaskResponse, CreateTaskResponses, CreateToolData, CreateToolError, CreateToolErrors, CreateToolRequest, CreateToolResponse, CreateToolResponses, CreateTriggerData, CreateTriggerErrors, CreateTriggerRequest, CreateTriggerResponse, CreateTriggerResponses, CreateWebhookData, CreateWebhookError, CreateWebhookErrors, CreateWebhookResponse, CreateWebhookResponses, CreateWorkflowData, CreateWorkflowErrors, CreateWorkflowRequest, CreateWorkflowResponse, CreateWorkflowResponses, CreditEntry, CreditEntryPage, CreditGrant, CreditGrantResult, Cursor, Dataset, DatasetItem, DatasetItemInput, DatasetItemResourceProperties, DatasetResourceProperties, DeleteActorData, DeleteActorError, DeleteActorErrors, DeleteActorResponse, DeleteActorResponses, DeleteAddressData, DeleteAddressError, DeleteAddressErrors, DeleteAddressResponse, DeleteAddressResponses, DeleteAgentData, DeleteAgentError, DeleteAgentErrors, DeleteAgentResponse, DeleteAgentResponses, DeleteAiProviderData, DeleteAiProviderErrors, DeleteAiProviderResponse, DeleteAiProviderResponses, DeleteApiKeyData, DeleteApiKeyError, DeleteApiKeyErrors, DeleteApiKeyResponse, DeleteApiKeyResponses, DeleteChannelData, DeleteChannelError, DeleteChannelErrors, DeleteChannelResponse, DeleteChannelResponses, DeleteChannelRouteData, DeleteChannelRouteError, DeleteChannelRouteErrors, DeleteChannelRouteResponse, DeleteChannelRouteResponses, DeleteConversationData, DeleteConversationError, DeleteConversationErrors, DeleteConversationResponse, DeleteConversationResponses, DeleteDatasetData, DeleteDatasetErrors, DeleteDatasetItemData, DeleteDatasetItemErrors, DeleteDatasetItemResponse, DeleteDatasetItemResponses, DeleteDatasetResponse, DeleteDatasetResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteEvalData, DeleteEvalErrors, DeleteEvalResponse, DeleteEvalResponses, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponses, DeleteFormationData, DeleteFormationErrors, DeleteFormationResponse, DeleteFormationResponses, DeleteGuardrailData, DeleteGuardrailError, DeleteGuardrailErrors, DeleteGuardrailResponse, DeleteGuardrailResponses, DeleteIngestionRuleData, DeleteIngestionRuleErrors, DeleteIngestionRuleResponse, DeleteIngestionRuleResponses, DeleteMemoryData, DeleteMemoryErrors, DeleteMemoryResponse, DeleteMemoryResponses, DeleteMemoryStoreData, DeleteMemoryStoreErrors, DeleteMemoryStoreResponse, DeleteMemoryStoreResponses, DeleteModelRouteData, DeleteModelRouteErrors, DeleteModelRouteResponse, DeleteModelRouteResponses, DeleteOrchestrationData, DeleteOrchestrationErrors, DeleteOrchestrationResponse, DeleteOrchestrationResponses, DeleteProjectData, DeleteProjectError, DeleteProjectErrors, DeleteProjectResponse, DeleteProjectResponses, DeleteProjectUsageThresholdData, DeleteProjectUsageThresholdError, DeleteProjectUsageThresholdErrors, DeleteProjectUsageThresholdResponse, DeleteProjectUsageThresholdResponses, DeleteQuotaData, DeleteQuotaErrors, DeleteQuotaResponse, DeleteQuotaResponses, DeleteSecretData, DeleteSecretErrors, DeleteSecretResponses, DeleteSessionData, DeleteSessionError, DeleteSessionErrors, DeleteSessionResponse, DeleteSessionResponses, DeleteTaskData, DeleteTaskErrors, DeleteTaskResponse, DeleteTaskResponses, DeleteToolData, DeleteToolError, DeleteToolErrors, DeleteToolResponse, DeleteToolResponses, DeleteTriggerData, DeleteTriggerErrors, DeleteTriggerResponse, DeleteTriggerResponses, DeleteWebhookData, DeleteWebhookError, DeleteWebhookErrors, DeleteWebhookResponse, DeleteWebhookResponses, DeleteWorkflowData, DeleteWorkflowErrors, DeleteWorkflowResponse, DeleteWorkflowResponses, DeliveryId, DiscordModes, DocumentKnowledgeResult, DocumentMessageContent, DocumentRecord, DocumentResourceProperties, DocumentStatusRecord, DownloadFileBase64Data, DownloadFileBase64Error, DownloadFileBase64Errors, DownloadFileBase64Response, DownloadFileBase64Responses, DownloadFileData, DownloadFileError, DownloadFileErrors, DownloadFileResponse, DownloadFileResponses, EmbeddingSimilarityScorer, EmbeddingsResponse, ErrorResponse, Eval, EvalResourceProperties, EvalResult, EvalRun, EvaluateGuardrailData, EvaluateGuardrailError, EvaluateGuardrailErrors, EvaluateGuardrailResponse, EvaluateGuardrailResponses, Event, EventSubscription, EventType, ExactMatchScorer, ExceptionId, ExceptionItem, ExportAuditEntriesData, ExportAuditEntriesErrors, ExportAuditEntriesResponse, ExportAuditEntriesResponses, FileRecord, FileRecordWritable, FileResourceProperties, FireTriggerData, FireTriggerErrors, FireTriggerRequest, FireTriggerResponse, FireTriggerResponses, Force, ForkSessionData, ForkSessionError, ForkSessionErrors, ForkSessionRequest, ForkSessionResponse, ForkSessionResponses, Formation, FormationError, FormationEvent, FormationOperation, FormationResource, FormationTemplate, FormationTemplateInput, GenerateConversationMessageCompleted, GenerateConversationMessageData, GenerateConversationMessageError, GenerateConversationMessageErrors, GenerateConversationMessageRequiresAction, GenerateConversationMessageResponse, GenerateConversationMessageResponse2, GenerateConversationMessageResponses, GenerateSessionRequest, GenerateSessionResponse, GenerateSessionResponseData, GenerateSessionResponseError, GenerateSessionResponseErrors, GenerateSessionResponseResponse, GenerateSessionResponseResponses, Generation, GenerationTranscript, GetActorData, GetActorError, GetActorErrors, GetActorResponse, GetActorResponses, GetActorTagsData, GetActorTagsError, GetActorTagsErrors, GetActorTagsResponse, GetActorTagsResponses, GetAddressData, GetAddressError, GetAddressErrors, GetAddressResponse, GetAddressResponses, GetAdminPriceBookData, GetAdminPriceBookError, GetAdminPriceBookErrors, GetAdminPriceBookResponse, GetAdminPriceBookResponses, GetAgentData, GetAgentError, GetAgentErrors, GetAgentResponse, GetAgentResponses, GetAgentVersionData, GetAgentVersionError, GetAgentVersionErrors, GetAgentVersionResponse, GetAgentVersionResponses, GetAiProviderData, GetAiProviderErrors, GetAiProviderPricesData, GetAiProviderPricesErrors, GetAiProviderPricesResponse, GetAiProviderPricesResponses, GetAiProviderResponse, GetAiProviderResponses, GetApiKeyData, GetApiKeyError, GetApiKeyErrors, GetApiKeyResponse, GetApiKeyResponses, GetApprovalData, GetApprovalErrors, GetApprovalResponse, GetApprovalResponses, GetAuditEntryData, GetAuditEntryErrors, GetAuditEntryResponse, GetAuditEntryResponses, GetChainData, GetChainErrors, GetChainResponse, GetChainResponses, GetChannelConversationData, GetChannelConversationError, GetChannelConversationErrors, GetChannelConversationResponse, GetChannelConversationResponses, GetChannelData, GetChannelError, GetChannelErrors, GetChannelResponse, GetChannelResponses, GetChannelRouteData, GetChannelRouteError, GetChannelRouteErrors, GetChannelRouteResponse, GetChannelRouteResponses, GetConversationData, GetConversationError, GetConversationErrors, GetConversationResponse, GetConversationResponses, GetConversationTagsData, GetConversationTagsError, GetConversationTagsErrors, GetConversationTagsResponse, GetConversationTagsResponses, GetCurrentUserBillingData, GetCurrentUserBillingError, GetCurrentUserBillingErrors, GetCurrentUserBillingResponse, GetCurrentUserBillingResponses, GetCurrentUserData, GetCurrentUserError, GetCurrentUserErrors, GetCurrentUserResponse, GetCurrentUserResponses, GetCurrentUserUsageData, GetCurrentUserUsageError, GetCurrentUserUsageErrors, GetCurrentUserUsageResponse, GetCurrentUserUsageResponses, GetDatasetData, GetDatasetErrors, GetDatasetResponse, GetDatasetResponses, GetDocumentData, GetDocumentError, GetDocumentErrors, GetDocumentResponse, GetDocumentResponses, GetDocumentStatusData, GetDocumentStatusError, GetDocumentStatusErrors, GetDocumentStatusResponse, GetDocumentStatusResponses, GetDocumentTagsData, GetDocumentTagsError, GetDocumentTagsErrors, GetDocumentTagsResponse, GetDocumentTagsResponses, GetEvalData, GetEvalErrors, GetEvalResponse, GetEvalResponses, GetEvalRunData, GetEvalRunErrors, GetEvalRunResponse, GetEvalRunResponses, GetExceptionData, GetExceptionErrors, GetExceptionResponse, GetExceptionResponses, GetFileData, GetFileError, GetFileErrors, GetFileResponse, GetFileResponses, GetFileTagsData, GetFileTagsError, GetFileTagsErrors, GetFileTagsResponse, GetFileTagsResponses, GetFormationData, GetFormationErrors, GetFormationResponse, GetFormationResponses, GetGenerationData, GetGenerationError, GetGenerationErrors, GetGenerationResponse, GetGenerationResponses, GetGenerationTranscriptData, GetGenerationTranscriptError, GetGenerationTranscriptErrors, GetGenerationTranscriptResponse, GetGenerationTranscriptResponses, GetGuardrailData, GetGuardrailError, GetGuardrailErrors, GetGuardrailResponse, GetGuardrailResponses, GetGuardrailVersionData, GetGuardrailVersionError, GetGuardrailVersionErrors, GetGuardrailVersionResponse, GetGuardrailVersionResponses, GetIngestionRuleData, GetIngestionRuleErrors, GetIngestionRuleResponse, GetIngestionRuleResponses, GetMemoryData, GetMemoryErrors, GetMemoryResponse, GetMemoryResponses, GetMemoryStoreData, GetMemoryStoreErrors, GetMemoryStoreResponse, GetMemoryStoreResponses, GetMemoryStoreTagsData, GetMemoryStoreTagsErrors, GetMemoryStoreTagsResponse, GetMemoryStoreTagsResponses, GetMemoryTagsData, GetMemoryTagsErrors, GetMemoryTagsResponse, GetMemoryTagsResponses, GetModelData, GetModelError, GetModelErrors, GetModelResponse, GetModelResponses, GetModelRouteData, GetModelRouteErrors, GetModelRouteResponse, GetModelRouteResponses, GetOrchestrationData, GetOrchestrationErrors, GetOrchestrationResponse, GetOrchestrationResponses, GetOrchestrationRunData, GetOrchestrationRunErrors, GetOrchestrationRunResponse, GetOrchestrationRunResponses, GetOrchestrationVersionData, GetOrchestrationVersionErrors, GetOrchestrationVersionResponse, GetOrchestrationVersionResponses, GetProjectData, GetProjectError, GetProjectErrors, GetProjectResponse, GetProjectResponses, GetProjectUsageData, GetProjectUsageError, GetProjectUsageErrors, GetProjectUsageReceiptData, GetProjectUsageReceiptError, GetProjectUsageReceiptErrors, GetProjectUsageReceiptResponse, GetProjectUsageReceiptResponses, GetProjectUsageResponse, GetProjectUsageResponses, GetQueueStatsData, GetQueueStatsErrors, GetQueueStatsResponse, GetQueueStatsResponses, GetQuotaData, GetQuotaErrors, GetQuotaResponse, GetQuotaResponses, GetSecretData, GetSecretErrors, GetSecretResponse, GetSecretResponses, GetSessionData, GetSessionError, GetSessionErrors, GetSessionResponse, GetSessionResponses, GetSessionTagsData, GetSessionTagsError, GetSessionTagsErrors, GetSessionTagsResponse, GetSessionTagsResponses, GetTaskData, GetTaskErrors, GetTaskHistoryData, GetTaskHistoryErrors, GetTaskHistoryResponse, GetTaskHistoryResponses, GetTaskResponse, GetTaskResponses, GetToolData, GetToolError, GetToolErrors, GetToolResponse, GetToolResponses, GetTraceData, GetTraceError, GetTraceErrors, GetTraceResponse, GetTraceResponses, GetTraceTreeData, GetTraceTreeError, GetTraceTreeErrors, GetTraceTreeResponse, GetTraceTreeResponses, GetTriggerData, GetTriggerErrors, GetTriggerFiringData, GetTriggerFiringErrors, GetTriggerFiringResponse, GetTriggerFiringResponses, GetTriggerResponse, GetTriggerResponses, GetTriggerSecretData, GetTriggerSecretErrors, GetTriggerSecretResponse, GetTriggerSecretResponses, GetWebhookData, GetWebhookDeliveryData, GetWebhookDeliveryError, GetWebhookDeliveryErrors, GetWebhookDeliveryResponse, GetWebhookDeliveryResponses, GetWebhookError, GetWebhookErrors, GetWebhookResponse, GetWebhookResponses, GetWorkflowData, GetWorkflowErrors, GetWorkflowResponse, GetWorkflowResponses, GetWorkflowVersionData, GetWorkflowVersionErrors, GetWorkflowVersionResponse, GetWorkflowVersionResponses, GrantId, GrantUserCreditData, GrantUserCreditError, GrantUserCreditErrors, GrantUserCreditResponse, GrantUserCreditResponses, GrantUserPlanData, GrantUserPlanError, GrantUserPlanErrors, GrantUserPlanResponse, GrantUserPlanResponses, GrantableProjectRole, Guardrail, GuardrailDocument, GuardrailEvaluation, GuardrailResourceProperties, GuardrailVersion, HumanInputRequest, IdempotencyKey, Identifier, IngestDocumentData, IngestDocumentError, IngestDocumentErrors, IngestDocumentResponse, IngestDocumentResponses, IngestedDocumentRecord, IngestionRule, IngestionRuleResourceProperties, JsonLogicScorer, KnowledgeResult, Limit, LinkToken, ListActivityData, ListActivityErrors, ListActivityResponse, ListActivityResponses, ListActorsData, ListActorsError, ListActorsErrors, ListActorsResponse, ListActorsResponses, ListAddressConversationsData, ListAddressConversationsError, ListAddressConversationsErrors, ListAddressConversationsResponse, ListAddressConversationsResponses, ListAddressesData, ListAddressesError, ListAddressesErrors, ListAddressesResponse, ListAddressesResponses, ListAgentVersionsData, ListAgentVersionsError, ListAgentVersionsErrors, ListAgentVersionsResponse, ListAgentVersionsResponses, ListAgentsData, ListAgentsError, ListAgentsErrors, ListAgentsResponse, ListAgentsResponses, ListAiProviderModelsData, ListAiProviderModelsErrors, ListAiProviderModelsResponse, ListAiProviderModelsResponses, ListAiProvidersData, ListAiProvidersErrors, ListAiProvidersResponse, ListAiProvidersResponses, ListApiKeysData, ListApiKeysError, ListApiKeysErrors, ListApiKeysResponse, ListApiKeysResponses, ListApprovalRecurrencesData, ListApprovalRecurrencesErrors, ListApprovalRecurrencesResponse, ListApprovalRecurrencesResponses, ListApprovalsData, ListApprovalsErrors, ListApprovalsResponse, ListApprovalsResponses, ListAssistantGrantsData, ListAssistantGrantsError, ListAssistantGrantsErrors, ListAssistantGrantsResponse, ListAssistantGrantsResponses, ListAuditEntriesData, ListAuditEntriesErrors, ListAuditEntriesResponse, ListAuditEntriesResponses, ListChainsData, ListChainsErrors, ListChainsResponse, ListChainsResponses, ListChannelConversationMessagesData, ListChannelConversationMessagesError, ListChannelConversationMessagesErrors, ListChannelConversationMessagesResponse, ListChannelConversationMessagesResponses, ListChannelConversationsData, ListChannelConversationsError, ListChannelConversationsErrors, ListChannelConversationsResponse, ListChannelConversationsResponses, ListChannelKindsData, ListChannelKindsError, ListChannelKindsErrors, ListChannelKindsResponse, ListChannelKindsResponses, ListChannelRoutesData, ListChannelRoutesError, ListChannelRoutesErrors, ListChannelRoutesResponse, ListChannelRoutesResponses, ListChannelsData, ListChannelsError, ListChannelsErrors, ListChannelsResponse, ListChannelsResponses, ListConversationMessagesData, ListConversationMessagesError, ListConversationMessagesErrors, ListConversationMessagesResponse, ListConversationMessagesResponses, ListConversationsData, ListConversationsError, ListConversationsErrors, ListConversationsResponse, ListConversationsResponses, ListDatasetItemsData, ListDatasetItemsErrors, ListDatasetItemsResponse, ListDatasetItemsResponses, ListDatasetsData, ListDatasetsErrors, ListDatasetsResponse, ListDatasetsResponses, ListDocumentsData, ListDocumentsError, ListDocumentsErrors, ListDocumentsResponse, ListDocumentsResponses, ListEvalResultsData, ListEvalResultsErrors, ListEvalResultsResponse, ListEvalResultsResponses, ListEvalRunsData, ListEvalRunsErrors, ListEvalRunsResponse, ListEvalRunsResponses, ListEvalsData, ListEvalsErrors, ListEvalsResponse, ListEvalsResponses, ListExceptionsData, ListExceptionsErrors, ListExceptionsResponse, ListExceptionsResponses, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, ListFormationEventsData, ListFormationEventsErrors, ListFormationEventsResponse, ListFormationEventsResponses, ListFormationsData, ListFormationsErrors, ListFormationsResponse, ListFormationsResponses, ListGenerationsData, ListGenerationsError, ListGenerationsErrors, ListGenerationsResponse, ListGenerationsResponses, ListGuardrailVersionsData, ListGuardrailVersionsError, ListGuardrailVersionsErrors, ListGuardrailVersionsResponse, ListGuardrailVersionsResponses, ListGuardrailsData, ListGuardrailsError, ListGuardrailsErrors, ListGuardrailsResponse, ListGuardrailsResponses, ListIngestionRulesData, ListIngestionRulesErrors, ListIngestionRulesResponse, ListIngestionRulesResponses, ListMemoriesData, ListMemoriesErrors, ListMemoriesResponse, ListMemoriesResponses, ListMemoryAssertionsData, ListMemoryAssertionsErrors, ListMemoryAssertionsResponse, ListMemoryAssertionsResponses, ListMemoryStoreAssertionsData, ListMemoryStoreAssertionsErrors, ListMemoryStoreAssertionsResponse, ListMemoryStoreAssertionsResponses, ListMemoryStoresData, ListMemoryStoresErrors, ListMemoryStoresResponse, ListMemoryStoresResponses, ListModelRoutesData, ListModelRoutesErrors, ListModelRoutesResponse, ListModelRoutesResponses, ListModelsData, ListModelsError, ListModelsErrors, ListModelsResponse, ListModelsResponses, ListOrchestrationRunsData, ListOrchestrationRunsErrors, ListOrchestrationRunsResponse, ListOrchestrationRunsResponses, ListOrchestrationVersionsData, ListOrchestrationVersionsErrors, ListOrchestrationVersionsResponse, ListOrchestrationVersionsResponses, ListOrchestrationsData, ListOrchestrationsErrors, ListOrchestrationsResponse, ListOrchestrationsResponses, ListProjectChannelRoutesData, ListProjectChannelRoutesError, ListProjectChannelRoutesErrors, ListProjectChannelRoutesResponse, ListProjectChannelRoutesResponses, ListProjectMembersData, ListProjectMembersError, ListProjectMembersErrors, ListProjectMembersResponse, ListProjectMembersResponses, ListProjectUsageEventsData, ListProjectUsageEventsError, ListProjectUsageEventsErrors, ListProjectUsageEventsResponse, ListProjectUsageEventsResponses, ListProjectUsageThresholdsData, ListProjectUsageThresholdsError, ListProjectUsageThresholdsErrors, ListProjectUsageThresholdsResponse, ListProjectUsageThresholdsResponses, ListProjectsData, ListProjectsError, ListProjectsErrors, ListProjectsResponse, ListProjectsResponses, ListQuotasData, ListQuotasErrors, ListQuotasResponse, ListQuotasResponses, ListSecretsData, ListSecretsErrors, ListSecretsResponse, ListSecretsResponses, ListSessionForksData, ListSessionForksError, ListSessionForksErrors, ListSessionForksResponse, ListSessionForksResponses, ListSessionsData, ListSessionsError, ListSessionsErrors, ListSessionsResponse, ListSessionsResponses, ListTasksData, ListTasksErrors, ListTasksResponse, ListTasksResponses, ListToolsData, ListToolsError, ListToolsErrors, ListToolsResponse, ListToolsResponses, ListTracesData, ListTracesError, ListTracesErrors, ListTracesResponse, ListTracesResponses, ListTriggerFiringsData, ListTriggerFiringsErrors, ListTriggerFiringsResponse, ListTriggerFiringsResponses, ListTriggersData, ListTriggersErrors, ListTriggersResponse, ListTriggersResponses, ListUserCreditsData, ListUserCreditsError, ListUserCreditsErrors, ListUserCreditsResponse, ListUserCreditsResponses, ListUserPlanHistoryData, ListUserPlanHistoryError, ListUserPlanHistoryErrors, ListUserPlanHistoryResponse, ListUserPlanHistoryResponses, ListUsersData, ListUsersError, ListUsersErrors, ListUsersResponse, ListUsersResponses, ListWebhookDeliveriesData, ListWebhookDeliveriesError, ListWebhookDeliveriesErrors, ListWebhookDeliveriesResponse, ListWebhookDeliveriesResponses, ListWebhooksData, ListWebhooksError, ListWebhooksErrors, ListWebhooksResponse, ListWebhooksResponses, ListWorkflowVersionsData, ListWorkflowVersionsErrors, ListWorkflowVersionsResponse, ListWorkflowVersionsResponses, ListWorkflowsData, ListWorkflowsErrors, ListWorkflowsResponse, ListWorkflowsResponses, LlmJudgeScorer, LogoutData, LogoutError, LogoutErrors, LogoutRequest, LogoutResponse, LogoutResponses, Memory, MemoryAssertion, MemoryKnowledgeResult, MemoryResourceProperties, MemoryStore, MemoryStoreResourceProperties, MemoryWriteResult, MergeActorTagsData, MergeActorTagsError, MergeActorTagsErrors, MergeActorTagsResponse, MergeActorTagsResponses, MergeConversationTagsData, MergeConversationTagsError, MergeConversationTagsErrors, MergeConversationTagsResponse, MergeConversationTagsResponses, MergeDocumentTagsData, MergeDocumentTagsError, MergeDocumentTagsErrors, MergeDocumentTagsResponse, MergeDocumentTagsResponses, MergeFileTagsData, MergeFileTagsError, MergeFileTagsErrors, MergeFileTagsResponse, MergeFileTagsResponses, MergeMemoryStoreTagsData, MergeMemoryStoreTagsErrors, MergeMemoryStoreTagsResponse, MergeMemoryStoreTagsResponses, MergeMemoryTagsData, MergeMemoryTagsErrors, MergeMemoryTagsResponse, MergeMemoryTagsResponses, MergeSessionTagsData, MergeSessionTagsError, MergeSessionTagsErrors, MergeSessionTagsResponse, MergeSessionTagsResponses, MessagesLimit, Model, ModelList, ModelName, ModelRoute, ModelRouteResourceProperties, ModelRouteTarget, NaturaliClientOptions, NodeExecution, NullableTagBag, Offset, OpenChannelConversationData, OpenChannelConversationError, OpenChannelConversationErrors, OpenChannelConversationResponse, OpenChannelConversationResponses, Options, Orchestration, OrchestrationEdge, OrchestrationId, OrchestrationNode, OrchestrationResourceProperties, OrchestrationRun, OrchestrationRunId, OrchestrationVersion, OutputSchemaScorer, ParameterDeclaration, PatchAgentData, PatchAgentError, PatchAgentErrors, PatchAgentResponse, PatchAgentResponses, PauseOrchestrationRunData, PauseOrchestrationRunErrors, PauseOrchestrationRunRequest, PauseOrchestrationRunResponse, PauseOrchestrationRunResponses, PauseTaskData, PauseTaskErrors, PauseTaskRequest, PauseTaskResponse, PauseTaskResponses, PlanChange, PlanEvent, PlanEventPage, PlanFormationData, PlanFormationErrors, PlanFormationResponse, PlanFormationResponses, PlanResult, PreviewAssistantLinkData, PreviewAssistantLinkError, PreviewAssistantLinkErrors, PreviewAssistantLinkResponse, PreviewAssistantLinkResponses, Price, PriceBook, Project, ProjectCreate, ProjectId, ProjectList, ProjectMember, ProjectMemberCreate, ProjectMemberList, ProjectMemberUpdate, ProjectRole, ProjectRuns, ProjectUpdate, ProjectUsage, ProjectUsageDistinct, ProjectUsageEvent, ProjectUsageEventPage, ProjectUsageFilters, ProjectUsageGroups, ProjectUsageReceipt, PromoteAgentReleaseData, PromoteAgentReleaseError, PromoteAgentReleaseErrors, PromoteAgentReleaseResponse, PromoteAgentReleaseResponses, ProviderModelsResponse, ProviderPrice, ProviderPricesResponse, PurgeGenerationContentData, PurgeGenerationContentError, PurgeGenerationContentErrors, PurgeGenerationContentResponse, PurgeGenerationContentResponses, PurgeTraceContentData, PurgeTraceContentError, PurgeTraceContentErrors, PurgeTraceContentResponse, PurgeTraceContentResponses, QueueStats, Quota, QuotaResourceProperties, RedeemAssistantLinkData, RedeemAssistantLinkError, RedeemAssistantLinkErrors, RedeemAssistantLinkResponse, RedeemAssistantLinkResponses, RedeliverWebhookDeliveryData, RedeliverWebhookDeliveryError, RedeliverWebhookDeliveryErrors, RedeliverWebhookDeliveryResponse, RedeliverWebhookDeliveryResponses, RefreshRequest, RefreshSessionData, RefreshSessionError, RefreshSessionErrors, RefreshSessionResponse, RefreshSessionResponses, ReingestDocumentData, ReingestDocumentError, ReingestDocumentErrors, ReingestDocumentResponse, ReingestDocumentResponses, RejectApprovalData, RejectApprovalErrors, RejectApprovalResponse, RejectApprovalResponses, RemoveConversationMessageData, RemoveConversationMessageError, RemoveConversationMessageErrors, RemoveConversationMessageResponse, RemoveConversationMessageResponses, RemoveProjectMemberData, RemoveProjectMemberError, RemoveProjectMemberErrors, RemoveProjectMemberResponse, RemoveProjectMemberResponses, ReplaceActorTagsData, ReplaceActorTagsError, ReplaceActorTagsErrors, ReplaceActorTagsResponse, ReplaceActorTagsResponses, ReplaceConversationTagsData, ReplaceConversationTagsError, ReplaceConversationTagsErrors, ReplaceConversationTagsResponse, ReplaceConversationTagsResponses, ReplaceDocumentTagsData, ReplaceDocumentTagsError, ReplaceDocumentTagsErrors, ReplaceDocumentTagsResponse, ReplaceDocumentTagsResponses, ReplaceFileTagsData, ReplaceFileTagsError, ReplaceFileTagsErrors, ReplaceFileTagsResponse, ReplaceFileTagsResponses, ReplaceMemoryStoreTagsData, ReplaceMemoryStoreTagsErrors, ReplaceMemoryStoreTagsResponse, ReplaceMemoryStoreTagsResponses, ReplaceMemoryTagsData, ReplaceMemoryTagsErrors, ReplaceMemoryTagsResponse, ReplaceMemoryTagsResponses, ReplaceSessionTagsData, ReplaceSessionTagsError, ReplaceSessionTagsErrors, ReplaceSessionTagsResponse, ReplaceSessionTagsResponses, RequestSignInCodeData, RequestSignInCodeError, RequestSignInCodeErrors, RequestSignInCodeResponse, RequestSignInCodeResponses, RequiredAction, ResolveExceptionData, ResolveExceptionErrors, ResolveExceptionResponse, ResolveExceptionResponses, ResourceDeclaration, RestoreAgentVersionData, RestoreAgentVersionError, RestoreAgentVersionErrors, RestoreAgentVersionRequest, RestoreAgentVersionResponse, RestoreAgentVersionResponses, RestoreGuardrailVersionData, RestoreGuardrailVersionError, RestoreGuardrailVersionErrors, RestoreGuardrailVersionRequest, RestoreGuardrailVersionResponse, RestoreGuardrailVersionResponses, RestoreOrchestrationVersionData, RestoreOrchestrationVersionErrors, RestoreOrchestrationVersionRequest, RestoreOrchestrationVersionResponse, RestoreOrchestrationVersionResponses, RestoreWorkflowVersionData, RestoreWorkflowVersionErrors, RestoreWorkflowVersionRequest, RestoreWorkflowVersionResponse, RestoreWorkflowVersionResponses, ResumeOrchestrationRunData, ResumeOrchestrationRunErrors, ResumeOrchestrationRunResponse, ResumeOrchestrationRunResponses, ResumeTaskData, ResumeTaskErrors, ResumeTaskResponse, ResumeTaskResponses, RevokeAssistantGrantData, RevokeAssistantGrantError, RevokeAssistantGrantErrors, RevokeAssistantGrantResponse, RevokeAssistantGrantResponses, RotateApiKeyData, RotateApiKeyError, RotateApiKeyErrors, RotateApiKeyResponse, RotateApiKeyResponses, RotateTriggerSecretData, RotateTriggerSecretErrors, RotateTriggerSecretResponse, RotateTriggerSecretResponses, RotateWebhookSecretData, RotateWebhookSecretError, RotateWebhookSecretErrors, RotateWebhookSecretResponse, RotateWebhookSecretResponses, RouteId, ScorerResult, Scorers, SearchKnowledgeData, SearchKnowledgeError, SearchKnowledgeErrors, SearchKnowledgeResponse, SearchKnowledgeResponses, SecretResourceProperties, SendSessionMessageResponse, SessionId, SessionRecord, SessionResourceProperties, SetAddressActionData, SetAddressActionError, SetAddressActionErrors, SetAddressActionResponse, SetAddressActionResponses, SetAgentReleaseData, SetAgentReleaseError, SetAgentReleaseErrors, SetAgentReleaseRequest, SetAgentReleaseResponse, SetAgentReleaseResponses, SignInCodeRequest, SignInCodeVerify, StartEvalRunData, StartEvalRunErrors, StartEvalRunResponse, StartEvalRunResponses, StartOrchestrationRunData, StartOrchestrationRunErrors, StartOrchestrationRunRequest, StartOrchestrationRunResponse, StartOrchestrationRunResponses, SubmitAgentToolOutputsData, SubmitAgentToolOutputsError, SubmitAgentToolOutputsErrors, SubmitAgentToolOutputsResponse, SubmitAgentToolOutputsResponses, SubmitHumanInputData, SubmitHumanInputErrors, SubmitHumanInputResponse, SubmitHumanInputResponses, SubmitSessionToolOutputsData, SubmitSessionToolOutputsError, SubmitSessionToolOutputsErrors, SubmitSessionToolOutputsRequest, SubmitSessionToolOutputsResponse, SubmitSessionToolOutputsResponses, SubmitToolOutputsRequest, TagBag, TagsQuery, Task, TaskTransition, Tool, ToolBinding, ToolOutputMessageContent, ToolResourceProperties, ToolScorer, Trace, TraceTreeNode, TranscriptStep, TranscriptToolCall, TranscriptToolResult, TransitionTaskData, TransitionTaskErrors, TransitionTaskRequest, TransitionTaskResponse, TransitionTaskResponses, Trigger, TriggerFiring, TriggerFiringListResponse, TriggerResourceProperties, TriggerSecretResponse, TriggerWithSecret, UnauthorizedFormationAction, UpdateActorData, UpdateActorError, UpdateActorErrors, UpdateActorResponse, UpdateActorResponses, UpdateAgentData, UpdateAgentError, UpdateAgentErrors, UpdateAgentRequest, UpdateAgentResponse, UpdateAgentResponses, UpdateAiProviderData, UpdateAiProviderErrors, UpdateAiProviderPricesData, UpdateAiProviderPricesErrors, UpdateAiProviderPricesResponse, UpdateAiProviderPricesResponses, UpdateAiProviderResponses, UpdateApiKeyData, UpdateApiKeyError, UpdateApiKeyErrors, UpdateApiKeyResponse, UpdateApiKeyResponses, UpdateChannelData, UpdateChannelError, UpdateChannelErrors, UpdateChannelResponse, UpdateChannelResponses, UpdateChannelRouteData, UpdateChannelRouteError, UpdateChannelRouteErrors, UpdateChannelRouteResponse, UpdateChannelRouteResponses, UpdateConversationData, UpdateConversationError, UpdateConversationErrors, UpdateConversationResponse, UpdateConversationResponses, UpdateCurrentUserData, UpdateCurrentUserError, UpdateCurrentUserErrors, UpdateCurrentUserResponse, UpdateCurrentUserResponses, UpdateDatasetData, UpdateDatasetErrors, UpdateDatasetItemData, UpdateDatasetItemErrors, UpdateDatasetItemResponse, UpdateDatasetItemResponses, UpdateDatasetResponse, UpdateDatasetResponses, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateEvalData, UpdateEvalErrors, UpdateEvalResponse, UpdateEvalResponses, UpdateFileMetadataData, UpdateFileMetadataError, UpdateFileMetadataErrors, UpdateFileMetadataResponse, UpdateFileMetadataResponses, UpdateFormationData, UpdateFormationErrors, UpdateFormationResponse, UpdateFormationResponses, UpdateGenerationData, UpdateGenerationError, UpdateGenerationErrors, UpdateGenerationRequest, UpdateGenerationResponse, UpdateGenerationResponses, UpdateGuardrailData, UpdateGuardrailError, UpdateGuardrailErrors, UpdateGuardrailRequest, UpdateGuardrailResponse, UpdateGuardrailResponses, UpdateIngestionRuleData, UpdateIngestionRuleErrors, UpdateIngestionRuleResponse, UpdateIngestionRuleResponses, UpdateMemoryData, UpdateMemoryErrors, UpdateMemoryResponse, UpdateMemoryResponses, UpdateMemoryStoreData, UpdateMemoryStoreErrors, UpdateMemoryStoreResponse, UpdateMemoryStoreResponses, UpdateModelRouteData, UpdateModelRouteErrors, UpdateModelRouteResponse, UpdateModelRouteResponses, UpdateOrchestrationData, UpdateOrchestrationErrors, UpdateOrchestrationRequest, UpdateOrchestrationResponse, UpdateOrchestrationResponses, UpdateProjectData, UpdateProjectError, UpdateProjectErrors, UpdateProjectMemberData, UpdateProjectMemberError, UpdateProjectMemberErrors, UpdateProjectMemberResponse, UpdateProjectMemberResponses, UpdateProjectResponse, UpdateProjectResponses, UpdateQuotaData, UpdateQuotaErrors, UpdateQuotaResponse, UpdateQuotaResponses, UpdateSecretData, UpdateSecretErrors, UpdateSecretResponses, UpdateSessionData, UpdateSessionError, UpdateSessionErrors, UpdateSessionRequest, UpdateSessionResponse, UpdateSessionResponses, UpdateTaskData, UpdateTaskErrors, UpdateTaskRequest, UpdateTaskResponse, UpdateTaskResponses, UpdateToolData, UpdateToolError, UpdateToolErrors, UpdateToolRequest, UpdateToolResponse, UpdateToolResponses, UpdateTriggerData, UpdateTriggerErrors, UpdateTriggerRequest, UpdateTriggerResponse, UpdateTriggerResponses, UpdateUserRolesData, UpdateUserRolesError, UpdateUserRolesErrors, UpdateUserRolesResponse, UpdateUserRolesResponses, UpdateWebhookData, UpdateWebhookError, UpdateWebhookErrors, UpdateWebhookResponse, UpdateWebhookResponses, UpdateWorkflowData, UpdateWorkflowErrors, UpdateWorkflowRequest, UpdateWorkflowResponse, UpdateWorkflowResponses, UploadFileBase64Data, UploadFileBase64Error, UploadFileBase64Errors, UploadFileBase64Request, UploadFileBase64Response, UploadFileBase64Responses, UploadFileData, UploadFileError, UploadFileErrors, UploadFileResponse, UploadFileResponses, UpsertProviderPricesRequest, UsageActionId, UsageActorId, UsageAgentId, UsageAiProviderId, UsageComponent, UsageComponents, UsageEventComponent, UsageGenerationId, UsageGroup, UsageMeterType, UsageOrchestrationId, UsageOrchestrationRunId, UsageSessionId, UsageSource, UsageThreshold, UsageThresholdCreate, UsageTokens, UsageTotals, UsageTraceId, UsageTriggerId, User, UserBilling, UserPlanGrant, UserRolesUpdate, UserUpdate, UserUsage, ValidateFormationData, ValidateFormationErrors, ValidateFormationResponse, ValidateFormationResponses, ValidateOrchestrationData, ValidateOrchestrationErrors, ValidateOrchestrationRequest, ValidateOrchestrationResponse, ValidateOrchestrationResponses, ValidationError, ValidationResult, VerifySignInCodeData, VerifySignInCodeError, VerifySignInCodeErrors, VerifySignInCodeResponse, VerifySignInCodeResponses, Webhook, WebhookCreate, WebhookDelivery, WebhookDeliveryList, WebhookId, WebhookList, WebhookUpdate, WebhookWithSecret, Workflow, WorkflowResourceProperties, WorkflowState, WorkflowTransition, WorkflowVersion };
|