@naturali/sdk 0.127.10 → 0.128.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.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
- memory_ids?: Array<string>;
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 memory entries alike.
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
- write_memory_id?: string | null;
765
+ write_memory_store_id?: string | null;
766
766
  /**
767
- * Automatic fact extraction from completed generation turns (requires write_memory_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 through the standard dedup/merge/skip algorithm.
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 memories it resolves keep their own histories and are pinned at generation time.
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
- memory_ids?: Array<string>;
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 memory entries alike.
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
- write_memory_id?: string | null;
984
+ write_memory_store_id?: string | null;
985
985
  /**
986
- * Automatic fact extraction from completed generation turns (requires write_memory_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 through the standard dedup/merge/skip algorithm.
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
- memory_ids?: Array<string>;
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 memory entries alike.
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
- write_memory_id?: string | null;
1101
+ write_memory_store_id?: string | null;
1102
1102
  /**
1103
- * Automatic fact extraction from completed generation turns (requires write_memory_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 through the standard dedup/merge/skip algorithm.
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 `write_memory_id`. Has no effect on streaming or `requires_action` turns, which never extract.
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 (memory_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.
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
- memory_ids?: Array<string>;
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 memory entries alike.
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 memory entries are injected into every generation.
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 memories to retrieve from
3042
+ * Public IDs of memory stores to retrieve from
3043
3043
  */
3044
- memory_ids?: Array<string>;
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 memory entries whose tags contain all these key-value pairs.
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
- write_memory_id?: string | null;
3068
+ write_memory_store_id?: string | null;
3069
3069
  /**
3070
- * Automatic fact extraction from completed generation turns (requires write_memory_id). Pass `true` to enable with defaults, or an object to customize the provider, model, and prompt used for the extraction completion.
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,43 @@ 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 MemoryResourceProperties = {
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
3387
  };
3388
3388
  /**
3389
- * Adds a single text entry to a memory store.
3389
+ * Adds a single memory to a memory store.
3390
3390
  */
3391
- type MemoryEntryResourceProperties = {
3391
+ type MemoryResourceProperties = {
3392
3392
  /**
3393
- * Public ID of the parent memory (or ref expression)
3393
+ * Public ID of the parent memory store (or ref expression)
3394
3394
  */
3395
- memory_id: string;
3395
+ memory_store_id: string;
3396
3396
  /**
3397
- * Text content of the memory entry
3397
+ * Text content of the memory
3398
3398
  */
3399
3399
  content: string;
3400
3400
  /**
3401
- * How this entry was created (defaults to manual)
3401
+ * Whether there is a source to point at (defaults to manual). `conversation` requires `source_id`.
3402
+ */
3403
+ source_type?: 'manual' | 'conversation';
3404
+ /**
3405
+ * The conversation this fact was learned in, when `source_type` is `conversation`; null when it is `manual`.
3402
3406
  */
3403
- source_type?: 'manual' | 'agent' | 'extraction' | 'orchestration';
3407
+ source_id?: string | null;
3404
3408
  /**
3405
- * Per-entry key-value tags for entry-granularity filtering in knowledge search.
3409
+ * Per-memory key-value tags for memory-granularity filtering in knowledge search.
3406
3410
  */
3407
3411
  tags?: NullableTagBag;
3408
3412
  /**
3409
- * Arbitrary structured metadata attached to the entry
3413
+ * Arbitrary structured metadata attached to the memory
3410
3414
  */
3411
3415
  metadata?: {
3412
3416
  [key: string]: unknown;
@@ -3630,7 +3634,7 @@ type IngestionRuleResourceProperties = {
3630
3634
  } | null;
3631
3635
  };
3632
3636
  /**
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`, `memory_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.
3637
+ * 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
3638
  */
3635
3639
  type OrchestrationResourceProperties = {
3636
3640
  /**
@@ -3642,7 +3646,7 @@ type OrchestrationResourceProperties = {
3642
3646
  */
3643
3647
  description?: string | null;
3644
3648
  /**
3645
- * Ordered list of node definitions. A node's resource references (`agent_id`, `tool_id`, `memory_id`, `orchestration_id`) may use `{ "ref": "LogicalId" }` to bind to other resources in the template.
3649
+ * 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
3650
  */
3647
3651
  nodes: Array<{
3648
3652
  [key: string]: unknown;
@@ -3777,7 +3781,7 @@ type GuardrailResourceProperties = {
3777
3781
  };
3778
3782
  type ResourceDeclaration = {
3779
3783
  /**
3780
- * Resource type. The types this API accepts are `ai_provider`, `tool`, `agent`, `actor`, `conversation`, `dataset`, `dataset_item`, `document`, `file`, `guardrail`, `ingestion_rule`, `memory`, `memory_entry`, `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.
3784
+ * 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
3785
  *
3782
3786
  * 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
3787
  *
@@ -3813,7 +3817,7 @@ type FormationResource = {
3813
3817
  */
3814
3818
  logical_id?: string;
3815
3819
  /**
3816
- * Resource type (e.g. agent, memory)
3820
+ * Resource type (e.g. agent, memory store)
3817
3821
  */
3818
3822
  resource_type?: string;
3819
3823
  /**
@@ -4099,7 +4103,7 @@ type Generation = {
4099
4103
  */
4100
4104
  agent_version?: number | null;
4101
4105
  /**
4102
- * Memory-extraction summary recorded for this generation. Set when the agent's `knowledge_config.extraction` produced one for this turn.
4106
+ * Memory store-extraction summary recorded for this generation. Set when the agent's `knowledge_config.extraction` produced one for this turn.
4103
4107
  *
4104
4108
  */
4105
4109
  extraction?: {
@@ -4108,11 +4112,11 @@ type Generation = {
4108
4112
  */
4109
4113
  candidates?: number;
4110
4114
  /**
4111
- * Number of new memory entries created
4115
+ * Number of new memories created
4112
4116
  */
4113
4117
  created?: number;
4114
4118
  /**
4115
- * Number of existing memory entries updated
4119
+ * Number of existing memories updated
4116
4120
  */
4117
4121
  updated?: number;
4118
4122
  /**
@@ -4663,19 +4667,19 @@ type MemoryKnowledgeResult = {
4663
4667
  */
4664
4668
  source_type: 'memory';
4665
4669
  /**
4666
- * Public ID of the memory entry
4670
+ * Public ID of the memory
4667
4671
  */
4668
- entry_id: string;
4672
+ memory_id: string;
4669
4673
  /**
4670
- * Public ID of the parent memory
4674
+ * Public ID of the parent memory store
4671
4675
  */
4672
- memory_id: string;
4676
+ memory_store_id: string;
4673
4677
  /**
4674
- * Human-readable name of the parent memory
4678
+ * Human-readable name of the parent memory store
4675
4679
  */
4676
- memory_name: string;
4680
+ memory_store_name: string;
4677
4681
  /**
4678
- * Text content of the memory entry
4682
+ * Text content of the memory
4679
4683
  */
4680
4684
  content: string;
4681
4685
  /**
@@ -4697,56 +4701,55 @@ type MemoryKnowledgeResult = {
4697
4701
  };
4698
4702
  type Memory = {
4699
4703
  id?: string;
4700
- project_id?: string;
4701
- name?: string;
4702
- description?: string | null;
4704
+ memory_store_id?: string;
4705
+ content?: string;
4703
4706
  /**
4704
- * Key-value tags for filtering in knowledge search.
4707
+ * 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.
4705
4708
  */
4706
- tags?: NullableTagBag;
4707
- created_at?: Date;
4708
- updated_at?: Date;
4709
- };
4710
- type MemoryEntry = {
4711
- id?: string;
4712
- memory_id?: string;
4713
- content?: string;
4714
- source_type?: 'manual' | 'agent' | 'extraction' | 'orchestration';
4709
+ source_type?: 'manual' | 'conversation';
4715
4710
  /**
4716
- * Per-entry key-value tags, matched at entry granularity by knowledge search.
4711
+ * 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.
4712
+ */
4713
+ source_id?: string | null;
4714
+ /**
4715
+ * Per-memory key-value tags, matched at memory granularity by knowledge search.
4717
4716
  */
4718
4717
  tags?: NullableTagBag;
4719
4718
  /**
4720
- * Arbitrary structured metadata attached to the entry
4719
+ * Arbitrary structured metadata attached to the memory
4721
4720
  */
4722
4721
  metadata?: {
4723
4722
  [key: string]: unknown;
4724
4723
  } | null;
4725
4724
  /**
4726
- * The generation whose turn produced this entry. Set for entries written by the `write_memory` tool and by automatic extraction; null for manual and orchestration writes. Recorded when the entry is created and never rewritten by a later merge.
4727
- */
4728
- source_generation_id?: string | null;
4729
- /**
4730
- * The conversation the producing turn belonged to. Null when the entry did not come from a conversation (a direct agent generation, a manual write, or an orchestration write).
4731
- */
4732
- source_conversation_id?: string | null;
4733
- /**
4734
- * When the entry was superseded. Null means the entry is currently valid. Invalidated entries are excluded from listing, from write deduplication, and from knowledge search, but remain readable by ID for audit.
4725
+ * 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 for audit.
4735
4726
  */
4736
4727
  invalidated_at?: Date | null;
4737
4728
  /**
4738
- * The entry that replaced this one, when it was superseded. Null for valid entries.
4729
+ * The memory that replaced this one, when it was superseded. Null for valid memories.
4739
4730
  */
4740
- superseded_by_entry_id?: string | null;
4731
+ superseded_by_memory_id?: string | null;
4741
4732
  created_at?: Date;
4742
4733
  updated_at?: Date;
4743
4734
  };
4744
- type MemoryEntryWriteResult = MemoryEntry & {
4735
+ type MemoryWriteResult = Memory & {
4745
4736
  /**
4746
- * The outcome of the write operation. `updated` means an existing entry was rewritten to absorb the incoming fact — it is produced only by the LLM consolidation on agent write paths (the `write_memory` tool and automatic extraction), never by this endpoint, which creates instead of merging. `superseded` means the incoming content contradicted an existing entry, which was invalidated and replaced — it is produced by the LLM-arbitrated write path and does not occur until that ships.
4737
+ * The outcome of the write operation. `updated` means an existing memory was rewritten to absorb the incoming fact — it is produced only by the LLM consolidation on agent write paths (the `write_memory` tool and automatic extraction), never by this endpoint, which creates instead of merging. `superseded` means the incoming content contradicted an existing memory, which was invalidated and replaced — it is produced by the LLM-arbitrated write path and does not occur until that ships.
4747
4738
  */
4748
4739
  action?: 'created' | 'updated' | 'skipped' | 'superseded';
4749
4740
  };
4741
+ type MemoryStore = {
4742
+ id?: string;
4743
+ project_id?: string;
4744
+ name?: string;
4745
+ description?: string | null;
4746
+ /**
4747
+ * Key-value tags for filtering in knowledge search.
4748
+ */
4749
+ tags?: NullableTagBag;
4750
+ created_at?: Date;
4751
+ updated_at?: Date;
4752
+ };
4750
4753
  type ModelRouteTarget = {
4751
4754
  /**
4752
4755
  * AI provider in the route's project
@@ -4881,7 +4884,7 @@ type OrchestrationNode = {
4881
4884
  */
4882
4885
  id: string;
4883
4886
  /**
4884
- * Node execution type. Known types: agent, tool, transform, knowledge, memory_write, 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.
4887
+ * 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
4888
  */
4886
4889
  type: string;
4887
4890
  /**
@@ -4913,10 +4916,6 @@ type OrchestrationNode = {
4913
4916
  * For human nodes — constrained choices.
4914
4917
  */
4915
4918
  options?: Array<string>;
4916
- /**
4917
- * For memory_write nodes — public ID of the target memory.
4918
- */
4919
- memory_id?: string;
4920
4919
  /**
4921
4920
  * 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
4921
  *
@@ -14903,7 +14902,7 @@ type SearchKnowledgeData = {
14903
14902
  */
14904
14903
  rrf_k?: number;
14905
14904
  /**
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.
14905
+ * 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
14906
  */
14908
14907
  recency_half_life_days?: number;
14909
14908
  /**
@@ -14911,9 +14910,9 @@ type SearchKnowledgeData = {
14911
14910
  */
14912
14911
  limit?: number;
14913
14912
  /**
14914
- * Search entries within these specific memories
14913
+ * Search memories within these specific memory stores
14915
14914
  */
14916
- memory_ids?: Array<string>;
14915
+ memory_store_ids?: Array<string>;
14917
14916
  /**
14918
14917
  * Filter results to documents whose file path starts with one of these prefixes
14919
14918
  */
@@ -14923,7 +14922,7 @@ type SearchKnowledgeData = {
14923
14922
  */
14924
14923
  document_ids?: Array<string>;
14925
14924
  /**
14926
- * Filter results to documents and memory entries 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 memory it matches at entry granularity: an entry is returned when its parent memory's tags match or its own do.
14925
+ * 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
14926
  */
14928
14927
  tags?: TagBag;
14929
14928
  };
@@ -14968,7 +14967,11 @@ type ListMemoriesData = {
14968
14967
  */
14969
14968
  project_id: string;
14970
14969
  };
14971
- query?: {
14970
+ query: {
14971
+ /**
14972
+ * Memory store to list memories from (mstore_...)
14973
+ */
14974
+ memory_store_id: string;
14972
14975
  /**
14973
14976
  * 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
14977
  *
@@ -14982,6 +14985,10 @@ type ListMemoriesData = {
14982
14985
  * Number of results to skip
14983
14986
  */
14984
14987
  offset?: number;
14988
+ /**
14989
+ * Include invalidated (superseded) memories. They are excluded by default; set this to audit the supersede history.
14990
+ */
14991
+ include_invalidated?: boolean;
14985
14992
  };
14986
14993
  url: '/v1/projects/{project_id}/memories';
14987
14994
  };
@@ -14994,6 +15001,10 @@ type ListMemoriesErrors = {
14994
15001
  * Forbidden
14995
15002
  */
14996
15003
  403: unknown;
15004
+ /**
15005
+ * Memory store not found
15006
+ */
15007
+ 404: unknown;
14997
15008
  /**
14998
15009
  * Internal server error
14999
15010
  */
@@ -15014,17 +15025,35 @@ type ListMemoriesResponse = ListMemoriesResponses[keyof ListMemoriesResponses];
15014
15025
  type CreateMemoryData = {
15015
15026
  body: {
15016
15027
  /**
15017
- * Memory name
15028
+ * Memory store to add the memory to (mstore_...)
15018
15029
  */
15019
- name: string;
15030
+ memory_store_id: string;
15020
15031
  /**
15021
- * Optional description
15032
+ * The text content of the memory
15022
15033
  */
15023
- description?: string;
15034
+ content: string;
15024
15035
  /**
15025
- * Optional key-value tags. Scopes the memory in knowledge search, where every requested pair must match exactly.
15036
+ * Whether there is a source to point at. `conversation` requires `source_id`; `manual` rejects it.
15037
+ */
15038
+ source_type?: 'manual' | 'conversation';
15039
+ /**
15040
+ * The conversation this fact was learned in. Required when `source_type` is `conversation`, and rejected otherwise.
15041
+ */
15042
+ source_id?: string;
15043
+ /**
15044
+ * Per-memory key-value tags, used for memory-granularity filtering by `tags` in search-knowledge.
15026
15045
  */
15027
15046
  tags?: TagBag;
15047
+ /**
15048
+ * Arbitrary structured metadata attached to the memory
15049
+ */
15050
+ metadata?: {
15051
+ [key: string]: unknown;
15052
+ };
15053
+ /**
15054
+ * Cosine similarity score at or above which the incoming content is considered a duplicate of an existing memory and skipped (default 0.95). Below it the memory is always created.
15055
+ */
15056
+ duplicate_threshold?: number;
15028
15057
  };
15029
15058
  path: {
15030
15059
  /**
@@ -15037,7 +15066,7 @@ type CreateMemoryData = {
15037
15066
  };
15038
15067
  type CreateMemoryErrors = {
15039
15068
  /**
15040
- * Bad request (missing required fields or invalid config)
15069
+ * Bad request (missing required fields)
15041
15070
  */
15042
15071
  400: unknown;
15043
15072
  /**
@@ -15048,16 +15077,28 @@ type CreateMemoryErrors = {
15048
15077
  * Forbidden
15049
15078
  */
15050
15079
  403: unknown;
15080
+ /**
15081
+ * Memory store not found
15082
+ */
15083
+ 404: unknown;
15084
+ /**
15085
+ * 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.
15086
+ */
15087
+ 409: unknown;
15051
15088
  /**
15052
15089
  * Internal server error
15053
15090
  */
15054
15091
  500: unknown;
15055
15092
  };
15056
15093
  type CreateMemoryResponses = {
15094
+ /**
15095
+ * Memory deduplicated (action is "skipped")
15096
+ */
15097
+ 200: MemoryWriteResult;
15057
15098
  /**
15058
15099
  * Memory created
15059
15100
  */
15060
- 201: Memory;
15101
+ 201: MemoryWriteResult;
15061
15102
  };
15062
15103
  type CreateMemoryResponse = CreateMemoryResponses[keyof CreateMemoryResponses];
15063
15104
  type DeleteMemoryData = {
@@ -15082,7 +15123,7 @@ type DeleteMemoryErrors = {
15082
15123
  */
15083
15124
  403: unknown;
15084
15125
  /**
15085
- * Memory not found
15126
+ * Memory store or memory not found
15086
15127
  */
15087
15128
  404: unknown;
15088
15129
  /**
@@ -15119,7 +15160,7 @@ type GetMemoryErrors = {
15119
15160
  */
15120
15161
  403: unknown;
15121
15162
  /**
15122
- * Memory not found
15163
+ * Memory store or memory not found
15123
15164
  */
15124
15165
  404: unknown;
15125
15166
  /**
@@ -15137,17 +15178,19 @@ type GetMemoryResponse = GetMemoryResponses[keyof GetMemoryResponses];
15137
15178
  type UpdateMemoryData = {
15138
15179
  body: {
15139
15180
  /**
15140
- * Memory name
15181
+ * Updated text content
15141
15182
  */
15142
- name?: string;
15183
+ content?: string;
15143
15184
  /**
15144
- * Optional description
15185
+ * Replaces the memory's tags. Pass null or an empty object to clear.
15145
15186
  */
15146
- description?: string | null;
15187
+ tags?: NullableTagBag;
15147
15188
  /**
15148
- * Optional key-value tags. Replaces the stored bag; `null` clears it.
15189
+ * Replaces the memory's metadata. Pass null to clear.
15149
15190
  */
15150
- tags?: NullableTagBag;
15191
+ metadata?: {
15192
+ [key: string]: unknown;
15193
+ } | null;
15151
15194
  };
15152
15195
  path: {
15153
15196
  /**
@@ -15169,7 +15212,7 @@ type UpdateMemoryErrors = {
15169
15212
  */
15170
15213
  403: unknown;
15171
15214
  /**
15172
- * Memory not found
15215
+ * Memory store or memory not found
15173
15216
  */
15174
15217
  404: unknown;
15175
15218
  /**
@@ -15209,7 +15252,7 @@ type GetMemoryTagsErrors = {
15209
15252
  */
15210
15253
  403: unknown;
15211
15254
  /**
15212
- * Memory not found
15255
+ * Memory store or memory not found
15213
15256
  */
15214
15257
  404: unknown;
15215
15258
  };
@@ -15249,7 +15292,7 @@ type MergeMemoryTagsErrors = {
15249
15292
  */
15250
15293
  403: unknown;
15251
15294
  /**
15252
- * Memory not found
15295
+ * Memory store or memory not found
15253
15296
  */
15254
15297
  404: unknown;
15255
15298
  };
@@ -15289,7 +15332,7 @@ type ReplaceMemoryTagsErrors = {
15289
15332
  */
15290
15333
  403: unknown;
15291
15334
  /**
15292
- * Memory not found
15335
+ * Memory store or memory not found
15293
15336
  */
15294
15337
  404: unknown;
15295
15338
  };
@@ -15300,7 +15343,7 @@ type ReplaceMemoryTagsResponses = {
15300
15343
  200: TagBag;
15301
15344
  };
15302
15345
  type ReplaceMemoryTagsResponse = ReplaceMemoryTagsResponses[keyof ReplaceMemoryTagsResponses];
15303
- type ListMemoryEntriesData = {
15346
+ type ListMemoryStoresData = {
15304
15347
  body?: never;
15305
15348
  path: {
15306
15349
  /**
@@ -15308,11 +15351,7 @@ type ListMemoryEntriesData = {
15308
15351
  */
15309
15352
  project_id: string;
15310
15353
  };
15311
- query: {
15312
- /**
15313
- * Memory container to list entries from (mem_...)
15314
- */
15315
- memory_id: string;
15354
+ query?: {
15316
15355
  /**
15317
15356
  * 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
15357
  *
@@ -15326,14 +15365,10 @@ type ListMemoryEntriesData = {
15326
15365
  * Number of results to skip
15327
15366
  */
15328
15367
  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
15368
  };
15334
- url: '/v1/projects/{project_id}/memory-entries';
15369
+ url: '/v1/projects/{project_id}/memory-stores';
15335
15370
  };
15336
- type ListMemoryEntriesErrors = {
15371
+ type ListMemoryStoresErrors = {
15337
15372
  /**
15338
15373
  * Unauthorized
15339
15374
  */
@@ -15342,55 +15377,37 @@ type ListMemoryEntriesErrors = {
15342
15377
  * Forbidden
15343
15378
  */
15344
15379
  403: unknown;
15345
- /**
15346
- * Memory not found
15347
- */
15348
- 404: unknown;
15349
15380
  /**
15350
15381
  * Internal server error
15351
15382
  */
15352
15383
  500: unknown;
15353
15384
  };
15354
- type ListMemoryEntriesResponses = {
15385
+ type ListMemoryStoresResponses = {
15355
15386
  /**
15356
- * List of memory entries
15387
+ * List of memory stores
15357
15388
  */
15358
15389
  200: {
15359
- data: Array<MemoryEntry>;
15390
+ data: Array<MemoryStore>;
15360
15391
  total: number;
15361
15392
  limit: number;
15362
15393
  offset: number;
15363
15394
  };
15364
15395
  };
15365
- type ListMemoryEntriesResponse = ListMemoryEntriesResponses[keyof ListMemoryEntriesResponses];
15366
- type CreateMemoryEntryData = {
15396
+ type ListMemoryStoresResponse = ListMemoryStoresResponses[keyof ListMemoryStoresResponses];
15397
+ type CreateMemoryStoreData = {
15367
15398
  body: {
15368
15399
  /**
15369
- * Memory container to add the entry to (mem_...)
15400
+ * Memory store name
15370
15401
  */
15371
- memory_id: string;
15372
- /**
15373
- * The text content of the memory entry
15374
- */
15375
- content: string;
15402
+ name: string;
15376
15403
  /**
15377
- * How this entry was created
15404
+ * Optional description
15378
15405
  */
15379
- source_type?: 'manual' | 'agent' | 'extraction' | 'orchestration';
15406
+ description?: string;
15380
15407
  /**
15381
- * Per-entry key-value tags, used for entry-granularity filtering by `tags` in search-knowledge.
15408
+ * Optional key-value tags. Scopes the memory store in knowledge search, where every requested pair must match exactly.
15382
15409
  */
15383
15410
  tags?: TagBag;
15384
- /**
15385
- * Arbitrary structured metadata attached to the entry
15386
- */
15387
- metadata?: {
15388
- [key: string]: unknown;
15389
- };
15390
- /**
15391
- * Cosine similarity score at or above which the incoming content is considered a duplicate of an existing entry and skipped (default 0.95). Below it the entry is always created.
15392
- */
15393
- duplicate_threshold?: number;
15394
15411
  };
15395
15412
  path: {
15396
15413
  /**
@@ -15399,11 +15416,11 @@ type CreateMemoryEntryData = {
15399
15416
  project_id: string;
15400
15417
  };
15401
15418
  query?: never;
15402
- url: '/v1/projects/{project_id}/memory-entries';
15419
+ url: '/v1/projects/{project_id}/memory-stores';
15403
15420
  };
15404
- type CreateMemoryEntryErrors = {
15421
+ type CreateMemoryStoreErrors = {
15405
15422
  /**
15406
- * Bad request (missing required fields)
15423
+ * Bad request (missing required fields or invalid config)
15407
15424
  */
15408
15425
  400: unknown;
15409
15426
  /**
@@ -15414,43 +15431,31 @@ type CreateMemoryEntryErrors = {
15414
15431
  * Forbidden
15415
15432
  */
15416
15433
  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
15434
  /**
15426
15435
  * Internal server error
15427
15436
  */
15428
15437
  500: unknown;
15429
15438
  };
15430
- type CreateMemoryEntryResponses = {
15431
- /**
15432
- * Memory entry deduplicated (action is "skipped")
15433
- */
15434
- 200: MemoryEntryWriteResult;
15439
+ type CreateMemoryStoreResponses = {
15435
15440
  /**
15436
- * Memory entry created
15441
+ * Memory store created
15437
15442
  */
15438
- 201: MemoryEntryWriteResult;
15443
+ 201: MemoryStore;
15439
15444
  };
15440
- type CreateMemoryEntryResponse = CreateMemoryEntryResponses[keyof CreateMemoryEntryResponses];
15441
- type DeleteMemoryEntryData = {
15445
+ type CreateMemoryStoreResponse = CreateMemoryStoreResponses[keyof CreateMemoryStoreResponses];
15446
+ type DeleteMemoryStoreData = {
15442
15447
  body?: never;
15443
15448
  path: {
15444
15449
  /**
15445
15450
  * Project public ID (proj_ prefix).
15446
15451
  */
15447
15452
  project_id: string;
15448
- entry_id: string;
15453
+ memory_store_id: string;
15449
15454
  };
15450
15455
  query?: never;
15451
- url: '/v1/projects/{project_id}/memory-entries/{entry_id}';
15456
+ url: '/v1/projects/{project_id}/memory-stores/{memory_store_id}';
15452
15457
  };
15453
- type DeleteMemoryEntryErrors = {
15458
+ type DeleteMemoryStoreErrors = {
15454
15459
  /**
15455
15460
  * Unauthorized
15456
15461
  */
@@ -15460,7 +15465,7 @@ type DeleteMemoryEntryErrors = {
15460
15465
  */
15461
15466
  403: unknown;
15462
15467
  /**
15463
- * Memory or entry not found
15468
+ * Memory store not found
15464
15469
  */
15465
15470
  404: unknown;
15466
15471
  /**
@@ -15468,26 +15473,26 @@ type DeleteMemoryEntryErrors = {
15468
15473
  */
15469
15474
  500: unknown;
15470
15475
  };
15471
- type DeleteMemoryEntryResponses = {
15476
+ type DeleteMemoryStoreResponses = {
15472
15477
  /**
15473
- * Memory entry deleted
15478
+ * Memory store deleted
15474
15479
  */
15475
15480
  204: void;
15476
15481
  };
15477
- type DeleteMemoryEntryResponse = DeleteMemoryEntryResponses[keyof DeleteMemoryEntryResponses];
15478
- type GetMemoryEntryData = {
15482
+ type DeleteMemoryStoreResponse = DeleteMemoryStoreResponses[keyof DeleteMemoryStoreResponses];
15483
+ type GetMemoryStoreData = {
15479
15484
  body?: never;
15480
15485
  path: {
15481
15486
  /**
15482
15487
  * Project public ID (proj_ prefix).
15483
15488
  */
15484
15489
  project_id: string;
15485
- entry_id: string;
15490
+ memory_store_id: string;
15486
15491
  };
15487
15492
  query?: never;
15488
- url: '/v1/projects/{project_id}/memory-entries/{entry_id}';
15493
+ url: '/v1/projects/{project_id}/memory-stores/{memory_store_id}';
15489
15494
  };
15490
- type GetMemoryEntryErrors = {
15495
+ type GetMemoryStoreErrors = {
15491
15496
  /**
15492
15497
  * Unauthorized
15493
15498
  */
@@ -15497,7 +15502,7 @@ type GetMemoryEntryErrors = {
15497
15502
  */
15498
15503
  403: unknown;
15499
15504
  /**
15500
- * Memory or entry not found
15505
+ * Memory store not found
15501
15506
  */
15502
15507
  404: unknown;
15503
15508
  /**
@@ -15505,41 +15510,39 @@ type GetMemoryEntryErrors = {
15505
15510
  */
15506
15511
  500: unknown;
15507
15512
  };
15508
- type GetMemoryEntryResponses = {
15513
+ type GetMemoryStoreResponses = {
15509
15514
  /**
15510
- * Memory entry found
15515
+ * Memory store found
15511
15516
  */
15512
- 200: MemoryEntry;
15517
+ 200: MemoryStore;
15513
15518
  };
15514
- type GetMemoryEntryResponse = GetMemoryEntryResponses[keyof GetMemoryEntryResponses];
15515
- type UpdateMemoryEntryData = {
15519
+ type GetMemoryStoreResponse = GetMemoryStoreResponses[keyof GetMemoryStoreResponses];
15520
+ type UpdateMemoryStoreData = {
15516
15521
  body: {
15517
15522
  /**
15518
- * Updated text content
15523
+ * Memory store name
15519
15524
  */
15520
- content?: string;
15525
+ name?: string;
15521
15526
  /**
15522
- * Replaces the entry's tags. Pass null or an empty object to clear.
15527
+ * Optional description
15523
15528
  */
15524
- tags?: NullableTagBag;
15529
+ description?: string | null;
15525
15530
  /**
15526
- * Replaces the entry's metadata. Pass null to clear.
15531
+ * Optional key-value tags. Replaces the stored bag; `null` clears it.
15527
15532
  */
15528
- metadata?: {
15529
- [key: string]: unknown;
15530
- } | null;
15533
+ tags?: NullableTagBag;
15531
15534
  };
15532
15535
  path: {
15533
15536
  /**
15534
15537
  * Project public ID (proj_ prefix).
15535
15538
  */
15536
15539
  project_id: string;
15537
- entry_id: string;
15540
+ memory_store_id: string;
15538
15541
  };
15539
15542
  query?: never;
15540
- url: '/v1/projects/{project_id}/memory-entries/{entry_id}';
15543
+ url: '/v1/projects/{project_id}/memory-stores/{memory_store_id}';
15541
15544
  };
15542
- type UpdateMemoryEntryErrors = {
15545
+ type UpdateMemoryStoreErrors = {
15543
15546
  /**
15544
15547
  * Unauthorized
15545
15548
  */
@@ -15549,7 +15552,7 @@ type UpdateMemoryEntryErrors = {
15549
15552
  */
15550
15553
  403: unknown;
15551
15554
  /**
15552
- * Memory or entry not found
15555
+ * Memory store not found
15553
15556
  */
15554
15557
  404: unknown;
15555
15558
  /**
@@ -15557,14 +15560,14 @@ type UpdateMemoryEntryErrors = {
15557
15560
  */
15558
15561
  500: unknown;
15559
15562
  };
15560
- type UpdateMemoryEntryResponses = {
15563
+ type UpdateMemoryStoreResponses = {
15561
15564
  /**
15562
- * Memory entry updated
15565
+ * Memory store updated
15563
15566
  */
15564
- 200: MemoryEntry;
15567
+ 200: MemoryStore;
15565
15568
  };
15566
- type UpdateMemoryEntryResponse = UpdateMemoryEntryResponses[keyof UpdateMemoryEntryResponses];
15567
- type GetMemoryEntryTagsData = {
15569
+ type UpdateMemoryStoreResponse = UpdateMemoryStoreResponses[keyof UpdateMemoryStoreResponses];
15570
+ type GetMemoryStoreTagsData = {
15568
15571
  body?: never;
15569
15572
  path: {
15570
15573
  /**
@@ -15572,14 +15575,14 @@ type GetMemoryEntryTagsData = {
15572
15575
  */
15573
15576
  project_id: string;
15574
15577
  /**
15575
- * Memory entry ID
15578
+ * Memory store ID
15576
15579
  */
15577
- entry_id: string;
15580
+ memory_store_id: string;
15578
15581
  };
15579
15582
  query?: never;
15580
- url: '/v1/projects/{project_id}/memory-entries/{entry_id}/tags';
15583
+ url: '/v1/projects/{project_id}/memory-stores/{memory_store_id}/tags';
15581
15584
  };
15582
- type GetMemoryEntryTagsErrors = {
15585
+ type GetMemoryStoreTagsErrors = {
15583
15586
  /**
15584
15587
  * Unauthorized
15585
15588
  */
@@ -15589,18 +15592,18 @@ type GetMemoryEntryTagsErrors = {
15589
15592
  */
15590
15593
  403: unknown;
15591
15594
  /**
15592
- * Memory or entry not found
15595
+ * Memory store not found
15593
15596
  */
15594
15597
  404: unknown;
15595
15598
  };
15596
- type GetMemoryEntryTagsResponses = {
15599
+ type GetMemoryStoreTagsResponses = {
15597
15600
  /**
15598
- * Memory entry tags
15601
+ * Memory store tags
15599
15602
  */
15600
15603
  200: TagBag;
15601
15604
  };
15602
- type GetMemoryEntryTagsResponse = GetMemoryEntryTagsResponses[keyof GetMemoryEntryTagsResponses];
15603
- type MergeMemoryEntryTagsData = {
15605
+ type GetMemoryStoreTagsResponse = GetMemoryStoreTagsResponses[keyof GetMemoryStoreTagsResponses];
15606
+ type MergeMemoryStoreTagsData = {
15604
15607
  body: TagBag;
15605
15608
  path: {
15606
15609
  /**
@@ -15608,14 +15611,14 @@ type MergeMemoryEntryTagsData = {
15608
15611
  */
15609
15612
  project_id: string;
15610
15613
  /**
15611
- * Memory entry ID
15614
+ * Memory store ID
15612
15615
  */
15613
- entry_id: string;
15616
+ memory_store_id: string;
15614
15617
  };
15615
15618
  query?: never;
15616
- url: '/v1/projects/{project_id}/memory-entries/{entry_id}/tags';
15619
+ url: '/v1/projects/{project_id}/memory-stores/{memory_store_id}/tags';
15617
15620
  };
15618
- type MergeMemoryEntryTagsErrors = {
15621
+ type MergeMemoryStoreTagsErrors = {
15619
15622
  /**
15620
15623
  * Body is not an object of string values
15621
15624
  */
@@ -15629,18 +15632,18 @@ type MergeMemoryEntryTagsErrors = {
15629
15632
  */
15630
15633
  403: unknown;
15631
15634
  /**
15632
- * Memory or entry not found
15635
+ * Memory store not found
15633
15636
  */
15634
15637
  404: unknown;
15635
15638
  };
15636
- type MergeMemoryEntryTagsResponses = {
15639
+ type MergeMemoryStoreTagsResponses = {
15637
15640
  /**
15638
15641
  * Tags merged
15639
15642
  */
15640
15643
  200: TagBag;
15641
15644
  };
15642
- type MergeMemoryEntryTagsResponse = MergeMemoryEntryTagsResponses[keyof MergeMemoryEntryTagsResponses];
15643
- type ReplaceMemoryEntryTagsData = {
15645
+ type MergeMemoryStoreTagsResponse = MergeMemoryStoreTagsResponses[keyof MergeMemoryStoreTagsResponses];
15646
+ type ReplaceMemoryStoreTagsData = {
15644
15647
  body: TagBag;
15645
15648
  path: {
15646
15649
  /**
@@ -15648,14 +15651,14 @@ type ReplaceMemoryEntryTagsData = {
15648
15651
  */
15649
15652
  project_id: string;
15650
15653
  /**
15651
- * Memory entry ID
15654
+ * Memory store ID
15652
15655
  */
15653
- entry_id: string;
15656
+ memory_store_id: string;
15654
15657
  };
15655
15658
  query?: never;
15656
- url: '/v1/projects/{project_id}/memory-entries/{entry_id}/tags';
15659
+ url: '/v1/projects/{project_id}/memory-stores/{memory_store_id}/tags';
15657
15660
  };
15658
- type ReplaceMemoryEntryTagsErrors = {
15661
+ type ReplaceMemoryStoreTagsErrors = {
15659
15662
  /**
15660
15663
  * Body is not an object of string values
15661
15664
  */
@@ -15669,17 +15672,17 @@ type ReplaceMemoryEntryTagsErrors = {
15669
15672
  */
15670
15673
  403: unknown;
15671
15674
  /**
15672
- * Memory or entry not found
15675
+ * Memory store not found
15673
15676
  */
15674
15677
  404: unknown;
15675
15678
  };
15676
- type ReplaceMemoryEntryTagsResponses = {
15679
+ type ReplaceMemoryStoreTagsResponses = {
15677
15680
  /**
15678
15681
  * Tags replaced
15679
15682
  */
15680
15683
  200: TagBag;
15681
15684
  };
15682
- type ReplaceMemoryEntryTagsResponse = ReplaceMemoryEntryTagsResponses[keyof ReplaceMemoryEntryTagsResponses];
15685
+ type ReplaceMemoryStoreTagsResponse = ReplaceMemoryStoreTagsResponses[keyof ReplaceMemoryStoreTagsResponses];
15683
15686
  type ListModelRoutesData = {
15684
15687
  body?: never;
15685
15688
  path: {
@@ -21552,7 +21555,7 @@ export declare class Knowledge {
21552
21555
  /**
21553
21556
  * Search knowledge
21554
21557
  *
21555
- * Searches across documents and memory entries using hybrid retrieval — a vector query and a full-text query per source, fused by reciprocal rank — or by file paths, document IDs, memory IDs, or tags. At least one of `query`, `tags`, `document_paths`, `document_ids`, or `memory_ids` must be provided.
21558
+ * 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
21559
  */
21557
21560
  static searchKnowledge<ThrowOnError extends boolean = false>(options: Options<SearchKnowledgeData, ThrowOnError>): RequestResult<SearchKnowledgeResponses, SearchKnowledgeErrors, ThrowOnError>;
21558
21561
  }
@@ -21560,31 +21563,31 @@ export declare class Memories {
21560
21563
  /**
21561
21564
  * List memories
21562
21565
  *
21563
- * Returns a list of memory configurations for a project
21566
+ * Returns all memories in a memory store
21564
21567
  */
21565
21568
  static listMemories<ThrowOnError extends boolean = false>(options: Options<ListMemoriesData, ThrowOnError>): RequestResult<ListMemoriesResponses, ListMemoriesErrors, ThrowOnError>;
21566
21569
  /**
21567
21570
  * Create a memory
21568
21571
  *
21569
- * Creates a new memory configuration in a project
21572
+ * Creates a new memory in the specified memory store. Automatically generates an embedding for semantic search, and skips the write when an existing memory is a near-duplicate (see `duplicate_threshold`). A merely similar fact is stored as its own memory: this path has no agent context and therefore no model to consolidate two facts into one.
21570
21573
  */
21571
21574
  static createMemory<ThrowOnError extends boolean = false>(options: Options<CreateMemoryData, ThrowOnError>): RequestResult<CreateMemoryResponses, CreateMemoryErrors, ThrowOnError>;
21572
21575
  /**
21573
21576
  * Delete a memory
21574
21577
  *
21575
- * Deletes a memory configuration
21578
+ * Deletes a memory
21576
21579
  */
21577
21580
  static deleteMemory<ThrowOnError extends boolean = false>(options: Options<DeleteMemoryData, ThrowOnError>): RequestResult<DeleteMemoryResponses, DeleteMemoryErrors, ThrowOnError>;
21578
21581
  /**
21579
21582
  * Get a memory
21580
21583
  *
21581
- * Returns a single memory configuration by ID
21584
+ * Returns a single memory by ID
21582
21585
  */
21583
21586
  static getMemory<ThrowOnError extends boolean = false>(options: Options<GetMemoryData, ThrowOnError>): RequestResult<GetMemoryResponses, GetMemoryErrors, ThrowOnError>;
21584
21587
  /**
21585
21588
  * Update a memory
21586
21589
  *
21587
- * Updates an existing memory configuration
21590
+ * Updates an existing memory. Regenerates the embedding if content changes.
21588
21591
  */
21589
21592
  static updateMemory<ThrowOnError extends boolean = false>(options: Options<UpdateMemoryData, ThrowOnError>): RequestResult<UpdateMemoryResponses, UpdateMemoryErrors, ThrowOnError>;
21590
21593
  /**
@@ -21606,55 +21609,55 @@ export declare class Memories {
21606
21609
  */
21607
21610
  static replaceMemoryTags<ThrowOnError extends boolean = false>(options: Options<ReplaceMemoryTagsData, ThrowOnError>): RequestResult<ReplaceMemoryTagsResponses, ReplaceMemoryTagsErrors, ThrowOnError>;
21608
21611
  }
21609
- export declare class MemoryEntries {
21612
+ export declare class MemoryStores {
21610
21613
  /**
21611
- * List memory entries
21614
+ * List memory stores
21612
21615
  *
21613
- * Returns all entries in a memory container
21616
+ * Returns a list of memory store configurations for a project
21614
21617
  */
21615
- static listMemoryEntries<ThrowOnError extends boolean = false>(options: Options<ListMemoryEntriesData, ThrowOnError>): RequestResult<ListMemoryEntriesResponses, ListMemoryEntriesErrors, ThrowOnError>;
21618
+ static listMemoryStores<ThrowOnError extends boolean = false>(options: Options<ListMemoryStoresData, ThrowOnError>): RequestResult<ListMemoryStoresResponses, ListMemoryStoresErrors, ThrowOnError>;
21616
21619
  /**
21617
- * Create a memory entry
21620
+ * Create a memory store
21618
21621
  *
21619
- * Creates a new entry in the specified memory container. Automatically generates an embedding for semantic search, and skips the write when an existing entry is a near-duplicate (see `duplicate_threshold`). A merely similar fact is stored as its own entry: this path has no agent context and therefore no model to consolidate two facts into one.
21622
+ * Creates a new memory store configuration in a project
21620
21623
  */
21621
- static createMemoryEntry<ThrowOnError extends boolean = false>(options: Options<CreateMemoryEntryData, ThrowOnError>): RequestResult<CreateMemoryEntryResponses, CreateMemoryEntryErrors, ThrowOnError>;
21624
+ static createMemoryStore<ThrowOnError extends boolean = false>(options: Options<CreateMemoryStoreData, ThrowOnError>): RequestResult<CreateMemoryStoreResponses, CreateMemoryStoreErrors, ThrowOnError>;
21622
21625
  /**
21623
- * Delete a memory entry
21626
+ * Delete a memory store
21624
21627
  *
21625
- * Deletes a memory entry
21628
+ * Deletes a memory store configuration
21626
21629
  */
21627
- static deleteMemoryEntry<ThrowOnError extends boolean = false>(options: Options<DeleteMemoryEntryData, ThrowOnError>): RequestResult<DeleteMemoryEntryResponses, DeleteMemoryEntryErrors, ThrowOnError>;
21630
+ static deleteMemoryStore<ThrowOnError extends boolean = false>(options: Options<DeleteMemoryStoreData, ThrowOnError>): RequestResult<DeleteMemoryStoreResponses, DeleteMemoryStoreErrors, ThrowOnError>;
21628
21631
  /**
21629
- * Get a memory entry
21632
+ * Get a memory store
21630
21633
  *
21631
- * Returns a single memory entry by ID
21634
+ * Returns a single memory store configuration by ID
21632
21635
  */
21633
- static getMemoryEntry<ThrowOnError extends boolean = false>(options: Options<GetMemoryEntryData, ThrowOnError>): RequestResult<GetMemoryEntryResponses, GetMemoryEntryErrors, ThrowOnError>;
21636
+ static getMemoryStore<ThrowOnError extends boolean = false>(options: Options<GetMemoryStoreData, ThrowOnError>): RequestResult<GetMemoryStoreResponses, GetMemoryStoreErrors, ThrowOnError>;
21634
21637
  /**
21635
- * Update a memory entry
21638
+ * Update a memory store
21636
21639
  *
21637
- * Updates an existing memory entry. Regenerates the embedding if content changes.
21640
+ * Updates an existing memory store configuration
21638
21641
  */
21639
- static updateMemoryEntry<ThrowOnError extends boolean = false>(options: Options<UpdateMemoryEntryData, ThrowOnError>): RequestResult<UpdateMemoryEntryResponses, UpdateMemoryEntryErrors, ThrowOnError>;
21642
+ static updateMemoryStore<ThrowOnError extends boolean = false>(options: Options<UpdateMemoryStoreData, ThrowOnError>): RequestResult<UpdateMemoryStoreResponses, UpdateMemoryStoreErrors, ThrowOnError>;
21640
21643
  /**
21641
- * Get memory entry tags
21644
+ * Get memory store tags
21642
21645
  *
21643
- * Returns all tags attached to the memory entry
21646
+ * Returns all tags attached to the memory store
21644
21647
  */
21645
- static getMemoryEntryTags<ThrowOnError extends boolean = false>(options: Options<GetMemoryEntryTagsData, ThrowOnError>): RequestResult<GetMemoryEntryTagsResponses, GetMemoryEntryTagsErrors, ThrowOnError>;
21648
+ static getMemoryStoreTags<ThrowOnError extends boolean = false>(options: Options<GetMemoryStoreTagsData, ThrowOnError>): RequestResult<GetMemoryStoreTagsResponses, GetMemoryStoreTagsErrors, ThrowOnError>;
21646
21649
  /**
21647
- * Merge memory entry tags
21650
+ * Merge memory store tags
21648
21651
  *
21649
- * Merges provided tags into the memory entry's existing tags (existing tags are preserved unless overridden)
21652
+ * Merges provided tags into the memory store's existing tags (existing tags are preserved unless overridden)
21650
21653
  */
21651
- static mergeMemoryEntryTags<ThrowOnError extends boolean = false>(options: Options<MergeMemoryEntryTagsData, ThrowOnError>): RequestResult<MergeMemoryEntryTagsResponses, MergeMemoryEntryTagsErrors, ThrowOnError>;
21654
+ static mergeMemoryStoreTags<ThrowOnError extends boolean = false>(options: Options<MergeMemoryStoreTagsData, ThrowOnError>): RequestResult<MergeMemoryStoreTagsResponses, MergeMemoryStoreTagsErrors, ThrowOnError>;
21652
21655
  /**
21653
- * Replace memory entry tags
21656
+ * Replace memory store tags
21654
21657
  *
21655
- * Replaces all tags on the memory entry with the provided tags (not merged)
21658
+ * Replaces all tags on the memory store with the provided tags (not merged)
21656
21659
  */
21657
- static replaceMemoryEntryTags<ThrowOnError extends boolean = false>(options: Options<ReplaceMemoryEntryTagsData, ThrowOnError>): RequestResult<ReplaceMemoryEntryTagsResponses, ReplaceMemoryEntryTagsErrors, ThrowOnError>;
21660
+ static replaceMemoryStoreTags<ThrowOnError extends boolean = false>(options: Options<ReplaceMemoryStoreTagsData, ThrowOnError>): RequestResult<ReplaceMemoryStoreTagsResponses, ReplaceMemoryStoreTagsErrors, ThrowOnError>;
21658
21661
  }
21659
21662
  export declare class ModelRoutes {
21660
21663
  /**
@@ -21974,7 +21977,7 @@ export declare class Quotas {
21974
21977
  *
21975
21978
  * 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
21979
  *
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-entry create — with `409 QUOTA_STORAGE_EXCEEDED` and no `Retry-After`, since no window reset clears a footprint.
21980
+ * `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
21981
  */
21979
21982
  static createQuota<ThrowOnError extends boolean = false>(options: Options<CreateQuotaData, ThrowOnError>): RequestResult<CreateQuotaResponses, CreateQuotaErrors, ThrowOnError>;
21980
21983
  /**
@@ -22553,7 +22556,7 @@ export declare class NaturaliClient {
22553
22556
  readonly ingestionRules: typeof IngestionRules;
22554
22557
  readonly knowledge: typeof Knowledge;
22555
22558
  readonly memories: typeof Memories;
22556
- readonly memoryEntries: typeof MemoryEntries;
22559
+ readonly memoryStores: typeof MemoryStores;
22557
22560
  readonly modelRoutes: typeof ModelRoutes;
22558
22561
  readonly quotas: typeof Quotas;
22559
22562
  readonly models: typeof Models;
@@ -22573,4 +22576,4 @@ export declare class NaturaliClient {
22573
22576
  constructor({ token, headers }?: NaturaliClientOptions);
22574
22577
  }
22575
22578
  //#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 };
22579
+ 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, 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, 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 };