@naturali/sdk 0.129.0 → 0.131.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +70 -2
- package/dist/index.d.cts +742 -203
- package/dist/index.d.mts +742 -203
- package/dist/index.mjs +70 -3
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -763,27 +763,6 @@ type Agent = {
|
|
|
763
763
|
* Public ID of the memory store the agent can write to during generation. When set, a write_memory tool is automatically available to the agent.
|
|
764
764
|
*/
|
|
765
765
|
write_memory_store_id?: string | null;
|
|
766
|
-
/**
|
|
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
|
-
*/
|
|
769
|
-
extraction?: boolean | {
|
|
770
|
-
/**
|
|
771
|
-
* Defaults to true when the object form is used. Set false to keep the configuration but disable extraction.
|
|
772
|
-
*/
|
|
773
|
-
enabled?: boolean;
|
|
774
|
-
/**
|
|
775
|
-
* AI provider override for extraction calls. Must belong to the agent's project. Its default_model becomes the model fallback.
|
|
776
|
-
*/
|
|
777
|
-
ai_provider_id?: string;
|
|
778
|
-
/**
|
|
779
|
-
* Model override for extraction calls.
|
|
780
|
-
*/
|
|
781
|
-
model?: string;
|
|
782
|
-
/**
|
|
783
|
-
* Replaces the default task instructions. The JSON response contract and the conversation transcript are always appended by the server.
|
|
784
|
-
*/
|
|
785
|
-
prompt?: string;
|
|
786
|
-
};
|
|
787
766
|
} | null;
|
|
788
767
|
/**
|
|
789
768
|
* JSON Schema describing the structured object the model must return. When set, non-streaming generations constrain output to this schema and the parsed value is returned as `output.object`. The schema is enforced on the way back, not just sent to the model: an object that violates it fails the generation with 502 `OUTPUT_SCHEMA_VALIDATION_FAILED`, naming the violated field. Constraints beyond `required`/`type` (`minLength`, `enum`, `pattern`, `minItems`) are honored and are what reject a structurally valid but degenerate answer. See the Structured Output section in the Agents module docs.
|
|
@@ -953,20 +932,14 @@ type CreateAgentRequest = {
|
|
|
953
932
|
*
|
|
954
933
|
* An unknown `type`, a `has_tool_call` without a `tool_name`, a `max_chain_generations` whose `max_generations` is not a positive integer, or a non-object entry is rejected with 400.
|
|
955
934
|
*/
|
|
956
|
-
stop_conditions?: Array<
|
|
957
|
-
[key: string]: unknown;
|
|
958
|
-
}>;
|
|
935
|
+
stop_conditions?: Array<AgentStopCondition>;
|
|
959
936
|
active_tool_ids?: Array<string>;
|
|
960
937
|
/**
|
|
961
938
|
* Guardrails attached at the agent scope.
|
|
962
939
|
*/
|
|
963
940
|
guardrail_ids?: Array<string> | null;
|
|
964
|
-
step_rules?: Array<
|
|
965
|
-
|
|
966
|
-
}>;
|
|
967
|
-
boundary_policy?: {
|
|
968
|
-
[key: string]: unknown;
|
|
969
|
-
};
|
|
941
|
+
step_rules?: Array<AgentStepRule>;
|
|
942
|
+
boundary_policy?: AgentBoundaryPolicy;
|
|
970
943
|
temperature?: number;
|
|
971
944
|
knowledge_config?: {
|
|
972
945
|
memory_store_ids?: Array<string>;
|
|
@@ -982,27 +955,6 @@ type CreateAgentRequest = {
|
|
|
982
955
|
* 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
956
|
*/
|
|
984
957
|
write_memory_store_id?: string | null;
|
|
985
|
-
/**
|
|
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
|
-
*/
|
|
988
|
-
extraction?: boolean | {
|
|
989
|
-
/**
|
|
990
|
-
* Defaults to true when the object form is used. Set false to keep the configuration but disable extraction.
|
|
991
|
-
*/
|
|
992
|
-
enabled?: boolean;
|
|
993
|
-
/**
|
|
994
|
-
* AI provider override for extraction calls. Must belong to the agent's project. Its default_model becomes the model fallback.
|
|
995
|
-
*/
|
|
996
|
-
ai_provider_id?: string;
|
|
997
|
-
/**
|
|
998
|
-
* Model override for extraction calls.
|
|
999
|
-
*/
|
|
1000
|
-
model?: string;
|
|
1001
|
-
/**
|
|
1002
|
-
* Replaces the default task instructions. The JSON response contract and the conversation transcript are always appended by the server.
|
|
1003
|
-
*/
|
|
1004
|
-
prompt?: string;
|
|
1005
|
-
};
|
|
1006
958
|
};
|
|
1007
959
|
/**
|
|
1008
960
|
* JSON Schema describing the structured object the model must return. When set, non-streaming generations constrain output to this schema and the parsed value is returned as `output.object`. The schema is enforced on the way back, not just sent to the model: an object that violates it fails the generation with 502 `OUTPUT_SCHEMA_VALIDATION_FAILED`, naming the violated field. Constraints beyond `required`/`type` (`minLength`, `enum`, `pattern`, `minItems`) are honored and are what reject a structurally valid but degenerate answer. See the Structured Output section in the Agents module docs.
|
|
@@ -1070,20 +1022,14 @@ type UpdateAgentRequest = {
|
|
|
1070
1022
|
*
|
|
1071
1023
|
* An unknown `type`, a `has_tool_call` without a `tool_name`, a `max_chain_generations` whose `max_generations` is not a positive integer, or a non-object entry is rejected with 400.
|
|
1072
1024
|
*/
|
|
1073
|
-
stop_conditions?: Array<
|
|
1074
|
-
[key: string]: unknown;
|
|
1075
|
-
}> | null;
|
|
1025
|
+
stop_conditions?: Array<AgentStopCondition> | null;
|
|
1076
1026
|
active_tool_ids?: Array<string> | null;
|
|
1077
1027
|
/**
|
|
1078
1028
|
* Guardrails attached at the agent scope.
|
|
1079
1029
|
*/
|
|
1080
1030
|
guardrail_ids?: Array<string> | null;
|
|
1081
|
-
step_rules?: Array<
|
|
1082
|
-
|
|
1083
|
-
}> | null;
|
|
1084
|
-
boundary_policy?: {
|
|
1085
|
-
[key: string]: unknown;
|
|
1086
|
-
} | null;
|
|
1031
|
+
step_rules?: Array<AgentStepRule> | null;
|
|
1032
|
+
boundary_policy?: AgentBoundaryPolicy;
|
|
1087
1033
|
temperature?: number | null;
|
|
1088
1034
|
knowledge_config?: {
|
|
1089
1035
|
memory_store_ids?: Array<string>;
|
|
@@ -1099,27 +1045,6 @@ type UpdateAgentRequest = {
|
|
|
1099
1045
|
* 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
1046
|
*/
|
|
1101
1047
|
write_memory_store_id?: string | null;
|
|
1102
|
-
/**
|
|
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
|
-
*/
|
|
1105
|
-
extraction?: boolean | {
|
|
1106
|
-
/**
|
|
1107
|
-
* Defaults to true when the object form is used. Set false to keep the configuration but disable extraction.
|
|
1108
|
-
*/
|
|
1109
|
-
enabled?: boolean;
|
|
1110
|
-
/**
|
|
1111
|
-
* AI provider override for extraction calls. Must belong to the agent's project. Its default_model becomes the model fallback.
|
|
1112
|
-
*/
|
|
1113
|
-
ai_provider_id?: string;
|
|
1114
|
-
/**
|
|
1115
|
-
* Model override for extraction calls.
|
|
1116
|
-
*/
|
|
1117
|
-
model?: string;
|
|
1118
|
-
/**
|
|
1119
|
-
* Replaces the default task instructions. The JSON response contract and the conversation transcript are always appended by the server.
|
|
1120
|
-
*/
|
|
1121
|
-
prompt?: string;
|
|
1122
|
-
};
|
|
1123
1048
|
} | null;
|
|
1124
1049
|
/**
|
|
1125
1050
|
* JSON Schema describing the structured object the model must return. When set, non-streaming generations constrain output to this schema and the parsed value is returned as `output.object`. The schema is enforced on the way back, not just sent to the model: an object that violates it fails the generation with 502 `OUTPUT_SCHEMA_VALIDATION_FAILED`, naming the violated field. Constraints beyond `required`/`type` (`minLength`, `enum`, `pattern`, `minItems`) are honored and are what reject a structurally valid but degenerate answer. See the Structured Output section in the Agents module docs.
|
|
@@ -1204,10 +1129,6 @@ type CreateAgentGenerationRequest = {
|
|
|
1204
1129
|
metadata?: {
|
|
1205
1130
|
[key: string]: unknown;
|
|
1206
1131
|
} | null;
|
|
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 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
|
-
*/
|
|
1210
|
-
extract?: boolean;
|
|
1211
1132
|
/**
|
|
1212
1133
|
* 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
1134
|
*/
|
|
@@ -1352,6 +1273,63 @@ type AgentGenerationResponse = {
|
|
|
1352
1273
|
}>;
|
|
1353
1274
|
} | null;
|
|
1354
1275
|
};
|
|
1276
|
+
/**
|
|
1277
|
+
* One stop condition. `has_tool_call` ends the turn after the step that calls `tool_name`; `max_chain_generations` bounds the continuation chain at `max_generations`.
|
|
1278
|
+
*/
|
|
1279
|
+
type AgentStopCondition = {
|
|
1280
|
+
/**
|
|
1281
|
+
* Which scope the condition ends.
|
|
1282
|
+
*/
|
|
1283
|
+
type: 'has_tool_call' | 'max_chain_generations';
|
|
1284
|
+
/**
|
|
1285
|
+
* The resolved tool name a `has_tool_call` condition matches. Required for that type.
|
|
1286
|
+
*/
|
|
1287
|
+
tool_name?: string | null;
|
|
1288
|
+
/**
|
|
1289
|
+
* Generations the continuation chain may reach before further resumptions stop with `chain_limit`. Required for `max_chain_generations`, and must be a positive integer.
|
|
1290
|
+
*/
|
|
1291
|
+
max_generations?: number | null;
|
|
1292
|
+
};
|
|
1293
|
+
/**
|
|
1294
|
+
* One per-step override. Steps not named by a rule use the agent's own `tool_choice` and `active_tool_ids`.
|
|
1295
|
+
*/
|
|
1296
|
+
type AgentStepRule = {
|
|
1297
|
+
/**
|
|
1298
|
+
* The 1-indexed step of the turn this rule applies to. The numbering spans a `requires_action` pause.
|
|
1299
|
+
*/
|
|
1300
|
+
step: number;
|
|
1301
|
+
/**
|
|
1302
|
+
* Tool choice for this step — `auto`, `required`, `null`, or `{ "type": "tool", "tool_name": "search" }`. Stored verbatim.
|
|
1303
|
+
*/
|
|
1304
|
+
tool_choice?: unknown;
|
|
1305
|
+
/**
|
|
1306
|
+
* Tool IDs active on this step.
|
|
1307
|
+
*/
|
|
1308
|
+
active_tool_ids?: Array<string> | null;
|
|
1309
|
+
};
|
|
1310
|
+
/**
|
|
1311
|
+
* Restricts which runtime actions the agent may invoke. Evaluated as the intersection with the caller's own policy, so it can only narrow.
|
|
1312
|
+
*/
|
|
1313
|
+
type AgentBoundaryPolicy = {
|
|
1314
|
+
/**
|
|
1315
|
+
* IAM policy statements, in the policy document grammar.
|
|
1316
|
+
*/
|
|
1317
|
+
statement: Array<AgentBoundaryPolicyStatement>;
|
|
1318
|
+
} | null;
|
|
1319
|
+
type AgentBoundaryPolicyStatement = {
|
|
1320
|
+
effect: 'Allow' | 'Deny';
|
|
1321
|
+
action: Array<string>;
|
|
1322
|
+
/**
|
|
1323
|
+
* Resource SRN patterns. Omit to match every resource.
|
|
1324
|
+
*/
|
|
1325
|
+
resource?: Array<string> | null;
|
|
1326
|
+
/**
|
|
1327
|
+
* Condition block, in the same grammar a policy document uses: keys are condition operators mapping to context-key/value maps.
|
|
1328
|
+
*/
|
|
1329
|
+
condition?: {
|
|
1330
|
+
[key: string]: unknown;
|
|
1331
|
+
} | null;
|
|
1332
|
+
};
|
|
1355
1333
|
type CreateToolRequest = {
|
|
1356
1334
|
/**
|
|
1357
1335
|
* Tool name
|
|
@@ -1371,30 +1349,8 @@ type CreateToolRequest = {
|
|
|
1371
1349
|
parameters?: {
|
|
1372
1350
|
[key: string]: unknown;
|
|
1373
1351
|
};
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
*
|
|
1377
|
-
* `auth` adds a computed request credential, for targets whose `Authorization` value cannot be expressed as a static header. Supported `auth.type` values:
|
|
1378
|
-
*
|
|
1379
|
-
* - `aws_sigv4` — signs the request with AWS Signature Version 4. Requires `region`, `service`, `access_key_id` and `secret_access_key`; `session_token` is optional (temporary credentials). Incompatible with `body_mode: multipart`, whose body bytes are not known at signing time.
|
|
1380
|
-
* - `gcp_service_account` — mints a Google OAuth 2.0 access token from a signed service account assertion and sends it as a bearer token. Requires `credentials` (the service account key file JSON, as a string) and `scopes` (a non-empty array). Tokens are cached per service account and scope set until shortly before they expire.
|
|
1381
|
-
*
|
|
1382
|
-
* Credential fields accept `{{secret:...}}` references and should use them — a tool is readable by anyone who can `GET /tools`, and the stored reference is what is echoed back, never the resolved value.
|
|
1383
|
-
*
|
|
1384
|
-
* A credential written as a **literal** is stored and still sent on every call, but it is masked on every read: `secret_access_key`, `session_token` and `credentials` under `auth`, and any credential-named `headers` value (`Authorization`, `Cookie`, or a name containing `api-key`/`token`/`secret`/`password`), come back as `{"no_echo": true}`. The mask is an object rather than a string so a read-edit-write round trip fails the schema check instead of writing the placeholder in as the credential. A value carrying a `{{secret:...}}` reference is the wiring, not the credential, and stays readable.
|
|
1385
|
-
*
|
|
1386
|
-
* `headers` values additionally accept `{{context:<key>}}` references, resolved per call from the caller's `tool_context`, so a per-user credential can be placed in the real header the target expects (`Authorization: Bearer {{context:ocaToken}}`) instead of only in an `X-Naturali-Context-<key>` header. Valid **only** inside `headers` — a context value is caller-supplied, so it may not steer the `url` — and a key missing from the `tool_context` at call time fails the tool call with `MISSING_TOOL_CONTEXT_KEY` rather than sending an empty credential. See the Tool Context reference.
|
|
1387
|
-
*
|
|
1388
|
-
*/
|
|
1389
|
-
execute?: {
|
|
1390
|
-
[key: string]: unknown;
|
|
1391
|
-
};
|
|
1392
|
-
/**
|
|
1393
|
-
* MCP server config (`url`, `headers`). `headers` values accept `{{secret:...}}` and `{{context:<key>}}` references, resolved right before the outbound MCP request; `url` accepts `{{secret:...}}` only. A literal credential in `headers` is masked on read, exactly as in `execute`.
|
|
1394
|
-
*/
|
|
1395
|
-
mcp?: {
|
|
1396
|
-
[key: string]: unknown;
|
|
1397
|
-
};
|
|
1352
|
+
execute?: ToolExecuteConfig;
|
|
1353
|
+
mcp?: ToolMcpConfig;
|
|
1398
1354
|
/**
|
|
1399
1355
|
* Allowlist of actions. For `mcp` tools: an optional allowlist of MCP tool names to scope the server surface — omit or set `null` to expose every tool the MCP server offers. Ignored for other tool types.
|
|
1400
1356
|
*/
|
|
@@ -1404,7 +1360,7 @@ type CreateToolRequest = {
|
|
|
1404
1360
|
*/
|
|
1405
1361
|
denied_actions?: Array<string>;
|
|
1406
1362
|
/**
|
|
1407
|
-
* Optional allowlist of `tool_context` keys that may be forwarded to this tool as prefixed context headers (`X-Naturali-Context-<key>` by default). When `null` or omitted, every key in the caller's `tool_context` is forwarded
|
|
1363
|
+
* Optional allowlist of `tool_context` keys that may be forwarded to this tool as prefixed context headers (`X-Naturali-Context-<key>` by default). When `null` or omitted, every key in the caller's `tool_context` is forwarded. When set, only the listed keys are, so a per-user credential in `tool_context` can be confined to the tools that need it; `[]` forwards none. The server-pinned identity keys (`session_id`, `actor_id`, `actor_external_id`) are always forwarded. A key consumed by a `{{context:<key>}}` token in this tool's own headers is substituted regardless of this list — the tool declared that header itself.
|
|
1408
1364
|
*/
|
|
1409
1365
|
context_keys?: Array<string> | null;
|
|
1410
1366
|
/**
|
|
@@ -1432,6 +1388,94 @@ type CreateToolRequest = {
|
|
|
1432
1388
|
*/
|
|
1433
1389
|
guardrail_ids?: Array<string> | null;
|
|
1434
1390
|
};
|
|
1391
|
+
/**
|
|
1392
|
+
* Execution config for http tools. Supported fields: `url` (required), `method` (default `POST`), `headers`, and `body_mode`. The `url` may contain `{paramName}` placeholders (e.g. `/users/{userId}`) that are replaced at call time with the corresponding tool argument value (URL-encoded). Arguments consumed as path parameters are excluded from the query string and request body. `body_mode` is `json` (default) or `multipart`. In `multipart` mode the merged tool arguments are sent as a `multipart/form-data` body: scalar fields become plain form fields and a field shaped like `{ content_type, filename, data_base64 }` is decoded from base64 and attached as a file part (the hardcoded `Content-Type: application/json` is dropped so `fetch` sets the multipart boundary itself).
|
|
1393
|
+
*
|
|
1394
|
+
* `auth` adds a computed request credential, for targets whose `Authorization` value cannot be expressed as a static header. Supported `auth.type` values:
|
|
1395
|
+
*
|
|
1396
|
+
* - `aws_sigv4` — signs the request with AWS Signature Version 4. Requires `region`, `service`, `access_key_id` and `secret_access_key`; `session_token` is optional (temporary credentials). Incompatible with `body_mode: multipart`, whose body bytes are not known at signing time.
|
|
1397
|
+
* - `gcp_service_account` — mints a Google OAuth 2.0 access token from a signed service account assertion and sends it as a bearer token. Requires `credentials` (the service account key file JSON, as a string) and `scopes` (a non-empty array). Tokens are cached per service account and scope set until shortly before they expire.
|
|
1398
|
+
*
|
|
1399
|
+
* Credential fields accept `{{secret:...}}` references and should use them — a tool is readable by anyone who can `GET /tools`, and the stored reference is what is echoed back, never the resolved value.
|
|
1400
|
+
*
|
|
1401
|
+
* A credential written as a **literal** is stored and still sent on every call, but it is masked on every read: `secret_access_key`, `session_token` and `credentials` under `auth`, and any credential-named `headers` value (`Authorization`, `Cookie`, or a name containing `api-key`/`token`/`secret`/`password`), come back as `{"no_echo": true}`. The mask is an object rather than a string so a read-edit-write round trip fails the schema check instead of writing the placeholder in as the credential. A value carrying a `{{secret:...}}` reference is the wiring, not the credential, and stays readable.
|
|
1402
|
+
*
|
|
1403
|
+
* `headers` values additionally accept `{{context:<key>}}` references, resolved per call from the caller's `tool_context`, so a per-user credential can be placed in the real header the target expects (`Authorization: Bearer {{context:ocaToken}}`) instead of only in an `X-Naturali-Context-<key>` header. Valid **only** inside `headers` — a context value is caller-supplied, so it may not steer the `url` — and a key missing from the `tool_context` at call time fails the tool call with `MISSING_TOOL_CONTEXT_KEY` rather than sending an empty credential. See the Tool Context reference.
|
|
1404
|
+
*
|
|
1405
|
+
*/
|
|
1406
|
+
type ToolExecuteConfig = {
|
|
1407
|
+
/**
|
|
1408
|
+
* Endpoint URL. May carry `{paramName}` placeholders resolved from the tool arguments at call time.
|
|
1409
|
+
*/
|
|
1410
|
+
url?: string;
|
|
1411
|
+
/**
|
|
1412
|
+
* HTTP method (default: `POST`)
|
|
1413
|
+
*/
|
|
1414
|
+
method?: string | null;
|
|
1415
|
+
/**
|
|
1416
|
+
* Static headers sent on every request. Values accept `{{secret:...}}` and `{{context:<key>}}` references.
|
|
1417
|
+
*/
|
|
1418
|
+
headers?: {
|
|
1419
|
+
[key: string]: string;
|
|
1420
|
+
} | null;
|
|
1421
|
+
/**
|
|
1422
|
+
* Request body encoding. Incompatible with `auth.type: aws_sigv4`.
|
|
1423
|
+
*/
|
|
1424
|
+
body_mode?: 'json' | 'multipart' | null;
|
|
1425
|
+
auth?: ToolExecuteAuthConfig;
|
|
1426
|
+
} | null;
|
|
1427
|
+
/**
|
|
1428
|
+
* Computed request credential, for a target whose `Authorization` value cannot be expressed as a static header. `aws_sigv4` requires `region`, `service`, `access_key_id` and `secret_access_key`; `gcp_service_account` requires `credentials` and `scopes`. Every credential field accepts a `{{secret:...}}` reference and should carry one, since a literal is stored as written and masked on read.
|
|
1429
|
+
*/
|
|
1430
|
+
type ToolExecuteAuthConfig = {
|
|
1431
|
+
/**
|
|
1432
|
+
* Which credential is computed.
|
|
1433
|
+
*/
|
|
1434
|
+
type: 'aws_sigv4' | 'gcp_service_account';
|
|
1435
|
+
/**
|
|
1436
|
+
* `aws_sigv4`: the signing region, e.g. `us-east-1`.
|
|
1437
|
+
*/
|
|
1438
|
+
region?: string | null;
|
|
1439
|
+
/**
|
|
1440
|
+
* `aws_sigv4`: the signing service, e.g. `execute-api`.
|
|
1441
|
+
*/
|
|
1442
|
+
service?: string | null;
|
|
1443
|
+
/**
|
|
1444
|
+
* `aws_sigv4`: the access key id.
|
|
1445
|
+
*/
|
|
1446
|
+
access_key_id?: string | null;
|
|
1447
|
+
/**
|
|
1448
|
+
* `aws_sigv4`: the secret access key. Masked on read as `{"no_echo": true}` when written as a literal.
|
|
1449
|
+
*/
|
|
1450
|
+
secret_access_key?: string | null;
|
|
1451
|
+
/**
|
|
1452
|
+
* `aws_sigv4`: the session token of a temporary credential. Masked on read, like `secret_access_key`.
|
|
1453
|
+
*/
|
|
1454
|
+
session_token?: string | null;
|
|
1455
|
+
/**
|
|
1456
|
+
* `gcp_service_account`: the service account key file JSON, as a string. Masked on read, like `secret_access_key`.
|
|
1457
|
+
*/
|
|
1458
|
+
credentials?: string | null;
|
|
1459
|
+
/**
|
|
1460
|
+
* `gcp_service_account`: the OAuth scopes to mint the token for.
|
|
1461
|
+
*/
|
|
1462
|
+
scopes?: Array<string> | null;
|
|
1463
|
+
} | null;
|
|
1464
|
+
/**
|
|
1465
|
+
* MCP server config (`url`, `headers`). `headers` values accept `{{secret:...}}` and `{{context:<key>}}` references, resolved right before the outbound MCP request; `url` accepts `{{secret:...}}` only. A literal credential in `headers` is masked on read, exactly as in `execute`.
|
|
1466
|
+
*/
|
|
1467
|
+
type ToolMcpConfig = {
|
|
1468
|
+
/**
|
|
1469
|
+
* MCP server URL. Accepts a `{{secret:...}}` reference.
|
|
1470
|
+
*/
|
|
1471
|
+
url?: string;
|
|
1472
|
+
/**
|
|
1473
|
+
* Headers sent on every MCP request. Values accept `{{secret:...}}` and `{{context:<key>}}` references.
|
|
1474
|
+
*/
|
|
1475
|
+
headers?: {
|
|
1476
|
+
[key: string]: string;
|
|
1477
|
+
} | null;
|
|
1478
|
+
} | null;
|
|
1435
1479
|
type ProviderPrice = {
|
|
1436
1480
|
/**
|
|
1437
1481
|
* Public ID of the price row
|
|
@@ -2938,7 +2982,16 @@ type AgentResourceProperties = {
|
|
|
2938
2982
|
* Tools to attach, one binding object per tool: `{ tool_id }`. Tool-call gating is owned by guardrails (attached via `guardrail_ids` on the project, agent, or tool), not by the binding. Inline `tool` entries are not supported in templates; declare a tool resource and reference it via `tool_id` (a `{ "ref": … }` to a tool resource in the same template resolves at deploy time).
|
|
2939
2983
|
*/
|
|
2940
2984
|
tool_bindings?: Array<{
|
|
2941
|
-
|
|
2985
|
+
/**
|
|
2986
|
+
* Public ID of the tool to attach.
|
|
2987
|
+
*/
|
|
2988
|
+
tool_id?: string;
|
|
2989
|
+
/**
|
|
2990
|
+
* Inline tool definition. Not supported in a template: declare a tool resource and reference it via `tool_id`.
|
|
2991
|
+
*/
|
|
2992
|
+
tool?: {
|
|
2993
|
+
[key: string]: unknown;
|
|
2994
|
+
} | null;
|
|
2942
2995
|
}> | null;
|
|
2943
2996
|
/**
|
|
2944
2997
|
* Maximum number of agentic steps per generation
|
|
@@ -3012,6 +3065,12 @@ type AgentResourceProperties = {
|
|
|
3012
3065
|
* Resource SRN patterns (optional; omit to match all resources)
|
|
3013
3066
|
*/
|
|
3014
3067
|
resource?: Array<string> | null;
|
|
3068
|
+
/**
|
|
3069
|
+
* Condition block, in the same grammar a policy document uses: keys are condition operators mapping to context-key/value maps.
|
|
3070
|
+
*/
|
|
3071
|
+
condition?: {
|
|
3072
|
+
[key: string]: unknown;
|
|
3073
|
+
} | null;
|
|
3015
3074
|
}>;
|
|
3016
3075
|
} | null;
|
|
3017
3076
|
/**
|
|
@@ -3066,27 +3125,6 @@ type AgentResourceProperties = {
|
|
|
3066
3125
|
* Public ID of the memory store the agent can write to. When set, a `write_memory` tool is automatically available to the agent.
|
|
3067
3126
|
*/
|
|
3068
3127
|
write_memory_store_id?: string | null;
|
|
3069
|
-
/**
|
|
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
|
-
*/
|
|
3072
|
-
extraction?: boolean | {
|
|
3073
|
-
/**
|
|
3074
|
-
* Defaults to true when the object form is used. Set false to keep the configuration but disable extraction.
|
|
3075
|
-
*/
|
|
3076
|
-
enabled?: boolean;
|
|
3077
|
-
/**
|
|
3078
|
-
* AI provider override for extraction calls. Must belong to the agent's project. Its default_model becomes the model fallback.
|
|
3079
|
-
*/
|
|
3080
|
-
ai_provider_id?: string;
|
|
3081
|
-
/**
|
|
3082
|
-
* Model override for extraction calls.
|
|
3083
|
-
*/
|
|
3084
|
-
model?: string;
|
|
3085
|
-
/**
|
|
3086
|
-
* Replaces the default task instructions. The JSON response contract and the conversation transcript are always appended by the server.
|
|
3087
|
-
*/
|
|
3088
|
-
prompt?: string;
|
|
3089
|
-
};
|
|
3090
3128
|
} | null;
|
|
3091
3129
|
/**
|
|
3092
3130
|
* JSON Schema describing the structured object the model must return. Non-streaming generations are constrained to this schema; the parsed value is returned as `output.object`.
|
|
@@ -3208,7 +3246,38 @@ type ToolResourceProperties = {
|
|
|
3208
3246
|
* Computed request credential. `type` is `aws_sigv4` (with `region`, `service`, `access_key_id`, `secret_access_key` and optional `session_token`) or `gcp_service_account` (with `credentials` and `scopes`). Credential fields accept `{{secret:...}}` references.
|
|
3209
3247
|
*/
|
|
3210
3248
|
auth?: {
|
|
3211
|
-
|
|
3249
|
+
/**
|
|
3250
|
+
* `aws_sigv4` or `gcp_service_account`
|
|
3251
|
+
*/
|
|
3252
|
+
type?: string;
|
|
3253
|
+
/**
|
|
3254
|
+
* `aws_sigv4`: the signing region
|
|
3255
|
+
*/
|
|
3256
|
+
region?: string | null;
|
|
3257
|
+
/**
|
|
3258
|
+
* `aws_sigv4`: the signing service
|
|
3259
|
+
*/
|
|
3260
|
+
service?: string | null;
|
|
3261
|
+
/**
|
|
3262
|
+
* `aws_sigv4`: the access key id
|
|
3263
|
+
*/
|
|
3264
|
+
access_key_id?: string | null;
|
|
3265
|
+
/**
|
|
3266
|
+
* `aws_sigv4`: the secret access key
|
|
3267
|
+
*/
|
|
3268
|
+
secret_access_key?: string | null;
|
|
3269
|
+
/**
|
|
3270
|
+
* `aws_sigv4`: the temporary credential's session token
|
|
3271
|
+
*/
|
|
3272
|
+
session_token?: string | null;
|
|
3273
|
+
/**
|
|
3274
|
+
* `gcp_service_account`: the service account key file JSON, as a string
|
|
3275
|
+
*/
|
|
3276
|
+
credentials?: string | null;
|
|
3277
|
+
/**
|
|
3278
|
+
* `gcp_service_account`: the scopes to mint for
|
|
3279
|
+
*/
|
|
3280
|
+
scopes?: Array<string> | null;
|
|
3212
3281
|
} | null;
|
|
3213
3282
|
} | null;
|
|
3214
3283
|
/**
|
|
@@ -3436,7 +3505,22 @@ type ModelRouteResourceProperties = {
|
|
|
3436
3505
|
* Ordered failover targets, tried in array order. Each entry is `{ ai_provider_id, model, timeout_seconds?, max_retries? }`; every provider must belong to this project, and the total attempt budget (sum of `1 + max_retries`) is capped at 10.
|
|
3437
3506
|
*/
|
|
3438
3507
|
targets: Array<{
|
|
3439
|
-
|
|
3508
|
+
/**
|
|
3509
|
+
* AI provider in the route's project.
|
|
3510
|
+
*/
|
|
3511
|
+
ai_provider_id: string;
|
|
3512
|
+
/**
|
|
3513
|
+
* Model name to call on that provider.
|
|
3514
|
+
*/
|
|
3515
|
+
model: string;
|
|
3516
|
+
/**
|
|
3517
|
+
* Per-attempt deadline. Omitted means no per-target deadline.
|
|
3518
|
+
*/
|
|
3519
|
+
timeout_seconds?: number | null;
|
|
3520
|
+
/**
|
|
3521
|
+
* Retries on this target before falling through to the next one.
|
|
3522
|
+
*/
|
|
3523
|
+
max_retries?: number | null;
|
|
3440
3524
|
}>;
|
|
3441
3525
|
/**
|
|
3442
3526
|
* Which failure classes fail over: any of `provider_error`, `timeout`, `rate_limited`. Defaults to all three. Deterministic rejections (400-class, auth, content policy) never fail over.
|
|
@@ -3641,6 +3725,57 @@ type IngestionRuleResourceProperties = {
|
|
|
3641
3725
|
[key: string]: unknown;
|
|
3642
3726
|
} | null;
|
|
3643
3727
|
};
|
|
3728
|
+
/**
|
|
3729
|
+
* Declares what a memory store accepts from completed agent turns: a selector, an event, and a handler. With neither `agent_id` nor `tool_id` the built-in extractor runs, configurable through `prompt`, `ai_provider_id` and `model`. See the Memory Rules section of the Memories module docs.
|
|
3730
|
+
*/
|
|
3731
|
+
type MemoryRuleResourceProperties = {
|
|
3732
|
+
/**
|
|
3733
|
+
* Public ID of the destination memory store
|
|
3734
|
+
*/
|
|
3735
|
+
memory_store_id: string;
|
|
3736
|
+
/**
|
|
3737
|
+
* `agents.generation.completed` (once per completed turn, and the only event the built-in extractor may bind to) or `conversations.message.generated` (per persisted assistant reply, custom handlers only).
|
|
3738
|
+
*/
|
|
3739
|
+
on: string;
|
|
3740
|
+
/**
|
|
3741
|
+
* Agents whose turns this rule reads; null is every agent in the project
|
|
3742
|
+
*/
|
|
3743
|
+
source_agent_ids?: Array<string> | null;
|
|
3744
|
+
/**
|
|
3745
|
+
* Handler agent ID (mutually exclusive with tool_id)
|
|
3746
|
+
*/
|
|
3747
|
+
agent_id?: string | null;
|
|
3748
|
+
/**
|
|
3749
|
+
* Handler tool ID (mutually exclusive with agent_id)
|
|
3750
|
+
*/
|
|
3751
|
+
tool_id?: string | null;
|
|
3752
|
+
/**
|
|
3753
|
+
* Operation id, for a tool handler
|
|
3754
|
+
*/
|
|
3755
|
+
action?: string | null;
|
|
3756
|
+
/**
|
|
3757
|
+
* Merged into a tool handler's input before invocation
|
|
3758
|
+
*/
|
|
3759
|
+
preset_parameters?: {
|
|
3760
|
+
[key: string]: unknown;
|
|
3761
|
+
} | null;
|
|
3762
|
+
/**
|
|
3763
|
+
* Replaces the built-in extractor's task instructions (no handler only)
|
|
3764
|
+
*/
|
|
3765
|
+
prompt?: string | null;
|
|
3766
|
+
/**
|
|
3767
|
+
* Provider override for the built-in extractor (no handler only)
|
|
3768
|
+
*/
|
|
3769
|
+
ai_provider_id?: string | null;
|
|
3770
|
+
/**
|
|
3771
|
+
* Model override for the built-in extractor (no handler only)
|
|
3772
|
+
*/
|
|
3773
|
+
model?: string | null;
|
|
3774
|
+
/**
|
|
3775
|
+
* A disabled rule is kept and never fires
|
|
3776
|
+
*/
|
|
3777
|
+
enabled?: boolean;
|
|
3778
|
+
};
|
|
3644
3779
|
/**
|
|
3645
3780
|
* 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.
|
|
3646
3781
|
*/
|
|
@@ -3789,7 +3924,7 @@ type GuardrailResourceProperties = {
|
|
|
3789
3924
|
};
|
|
3790
3925
|
type ResourceDeclaration = {
|
|
3791
3926
|
/**
|
|
3792
|
-
* Resource type. The types this API accepts are `ai_provider`, `tool`, `agent`, `actor`, `conversation`, `dataset`, `dataset_item`, `document`, `file`, `guardrail`, `ingestion_rule`, `memory_store`, `memory`, `model_route`, `eval`, `orchestration`, `quota`, `secret`, `session`, `trigger` and `workflow` — plus two naturali registers itself and handles through its own lifecycle: `channel`, taking the same property names the channels API takes (its credential properties are write-only, so a tenant credential never lands in the resource ledger), and `naturali_ai_provider`, which takes a `default_model` from the model catalog and provisions a provider running on naturali's own model access (it carries no credential of yours, so it accepts none). A template naming any other type is refused with `400 unsupported_resource_type` before it reaches the runtime — including the runtime's own `api_key`, `chat`, `policy`, `project_price` and `webhook` types, which this API does not expose.
|
|
3927
|
+
* 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`, `memory_rule`, `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.
|
|
3793
3928
|
*
|
|
3794
3929
|
* 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.
|
|
3795
3930
|
*
|
|
@@ -3825,7 +3960,7 @@ type FormationResource = {
|
|
|
3825
3960
|
*/
|
|
3826
3961
|
logical_id?: string;
|
|
3827
3962
|
/**
|
|
3828
|
-
* Resource type (e.g. agent
|
|
3963
|
+
* Resource type (e.g. `agent`, `memory_store`)
|
|
3829
3964
|
*/
|
|
3830
3965
|
resource_type?: string;
|
|
3831
3966
|
/**
|
|
@@ -4116,30 +4251,32 @@ type Generation = {
|
|
|
4116
4251
|
*/
|
|
4117
4252
|
agent_version?: number | null;
|
|
4118
4253
|
/**
|
|
4119
|
-
*
|
|
4254
|
+
* What each [memory rule](/docs/modules/memories#memory-rules) bound to `agents.generation.completed` wrote for this turn, keyed by the rule's id — a store may have several rules, and one flat pair of counts could not say which produced them. Absent when no rule fired. Rules bound to `conversations.message.generated` are recorded in `memory_assertions` only. The rows behind every count are in `memory_assertions`, so the summary and what it summarizes can be reconciled.
|
|
4120
4255
|
*
|
|
4121
4256
|
*/
|
|
4122
4257
|
extraction?: {
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4258
|
+
[key: string]: {
|
|
4259
|
+
/**
|
|
4260
|
+
* Number of candidates the rule's handler proposed
|
|
4261
|
+
*/
|
|
4262
|
+
candidates?: number;
|
|
4263
|
+
/**
|
|
4264
|
+
* Number of new memories created
|
|
4265
|
+
*/
|
|
4266
|
+
created?: number;
|
|
4267
|
+
/**
|
|
4268
|
+
* Number of candidates that restated a known fact that had changed, retiring the memory holding it
|
|
4269
|
+
*
|
|
4270
|
+
*/
|
|
4271
|
+
superseded?: number;
|
|
4272
|
+
/**
|
|
4273
|
+
* Number of candidates skipped (e.g. duplicates)
|
|
4274
|
+
*/
|
|
4275
|
+
skipped?: number;
|
|
4276
|
+
};
|
|
4140
4277
|
} | null;
|
|
4141
4278
|
/**
|
|
4142
|
-
* Every memory write this turn made, oldest first —
|
|
4279
|
+
* Every memory write this turn made, oldest first — each memory rule's firings and the agent's own `write_memory` calls alike, which the `extraction` counts never covered. Present on the single read only; a listing would make it one extra query per generation.
|
|
4143
4280
|
*
|
|
4144
4281
|
*/
|
|
4145
4282
|
memory_assertions?: Array<MemoryAssertion>;
|
|
@@ -4400,9 +4537,9 @@ type MemoryAssertion = {
|
|
|
4400
4537
|
*/
|
|
4401
4538
|
mechanism?: 'tool' | 'rule' | 'api' | 'formation';
|
|
4402
4539
|
/**
|
|
4403
|
-
*
|
|
4540
|
+
* The memory rule whose firing wrote this, set only when `mechanism` is `rule` — the built-in extractor included, since that is a rule with no handler. Null once the rule has been deleted, and on assertions written before memory rules shipped.
|
|
4404
4541
|
*/
|
|
4405
|
-
rule_id?:
|
|
4542
|
+
rule_id?: string | null;
|
|
4406
4543
|
/**
|
|
4407
4544
|
* The turn that asserted the fact — the origin of anything an agent wrote, and the edge a conversation is reachable from. Null on the `api` and `formation` doors, which have no generation behind them.
|
|
4408
4545
|
*/
|
|
@@ -4417,9 +4554,13 @@ type MemoryAssertion = {
|
|
|
4417
4554
|
*/
|
|
4418
4555
|
outcome?: 'created' | 'superseded' | 'skipped';
|
|
4419
4556
|
/**
|
|
4420
|
-
* The top match's
|
|
4557
|
+
* The cosine similarity the outcome was decided against — the top match's, or the declared target's when `declared` is true, where it decides nothing and only records how far apart the two statements were. Null when there was nothing to compare against, or when the content could not be embedded.
|
|
4421
4558
|
*/
|
|
4422
4559
|
similarity?: number | null;
|
|
4560
|
+
/**
|
|
4561
|
+
* Whether the write named the memory it replaced (`supersedes` on create) instead of the thresholds choosing one. Always false on a `created` or `skipped` outcome.
|
|
4562
|
+
*/
|
|
4563
|
+
declared?: boolean;
|
|
4423
4564
|
created_at?: Date;
|
|
4424
4565
|
};
|
|
4425
4566
|
/**
|
|
@@ -4489,7 +4630,6 @@ type GuardrailDocument = {
|
|
|
4489
4630
|
*
|
|
4490
4631
|
*/
|
|
4491
4632
|
expires_in?: number;
|
|
4492
|
-
[key: string]: unknown;
|
|
4493
4633
|
};
|
|
4494
4634
|
type Guardrail = {
|
|
4495
4635
|
/**
|
|
@@ -4712,6 +4852,19 @@ type DocumentKnowledgeResult = {
|
|
|
4712
4852
|
* Reciprocal-rank-fusion relevance ranking — higher is better. The **ordering** it produces is the contract; the absolute value is not, is deliberately not rescaled into 0–1, and the formula behind it may change. Results are sorted by it. Nothing filters on it: `min_similarity` filters `similarity_score`. Only present when `query` was provided. Use `similarity_score` when you need the raw cosine value.
|
|
4713
4853
|
*/
|
|
4714
4854
|
score?: number;
|
|
4855
|
+
/**
|
|
4856
|
+
* Which retrieval channels ranked this result before fusion, and its 1-based position in that channel's own ordering. A channel that did not return the result is absent, so presence reads as "this channel found it". `score` says where the result landed; this says how it got there — `{ "lexical": 1 }` is a pure token hit, `{ "vector": 2, "lexical": 1 }` a result both channels found and fusion promoted. Only present when `query` was provided; a channel that degraded is absent from every result. Diagnostic: nothing filters or sorts on it.
|
|
4857
|
+
*/
|
|
4858
|
+
signals?: {
|
|
4859
|
+
/**
|
|
4860
|
+
* Rank in the vector (cosine) channel, best first.
|
|
4861
|
+
*/
|
|
4862
|
+
vector?: number;
|
|
4863
|
+
/**
|
|
4864
|
+
* Rank in the lexical (full-text) channel, best first.
|
|
4865
|
+
*/
|
|
4866
|
+
lexical?: number;
|
|
4867
|
+
};
|
|
4715
4868
|
/**
|
|
4716
4869
|
* Raw cosine similarity (0–1) between the query and this result. Pinned to that meaning — unlike `score`, it is never redefined — and populated on every result of a `query` search, a lexical-only hit included. Absent only when the embedding provider was unreachable and the search answered from the lexical channel alone, where there is no query vector to measure against.
|
|
4717
4870
|
*/
|
|
@@ -4750,6 +4903,19 @@ type MemoryKnowledgeResult = {
|
|
|
4750
4903
|
* Reciprocal-rank-fusion relevance ranking — higher is better. The **ordering** it produces is the contract; the absolute value is not, is deliberately not rescaled into 0–1, and the formula behind it may change. Results are sorted by it. Nothing filters on it: `min_similarity` filters `similarity_score`. Only present when `query` was provided. Use `similarity_score` when you need the raw cosine value.
|
|
4751
4904
|
*/
|
|
4752
4905
|
score?: number;
|
|
4906
|
+
/**
|
|
4907
|
+
* Which retrieval channels ranked this result before fusion, and its 1-based position in that channel's own ordering. A channel that did not return the result is absent, so presence reads as "this channel found it". `score` says where the result landed; this says how it got there — `{ "lexical": 1 }` is a pure token hit, `{ "vector": 2, "lexical": 1 }` a result both channels found and fusion promoted. Only present when `query` was provided; a channel that degraded is absent from every result. Diagnostic: nothing filters or sorts on it.
|
|
4908
|
+
*/
|
|
4909
|
+
signals?: {
|
|
4910
|
+
/**
|
|
4911
|
+
* Rank in the vector (cosine) channel, best first.
|
|
4912
|
+
*/
|
|
4913
|
+
vector?: number;
|
|
4914
|
+
/**
|
|
4915
|
+
* Rank in the lexical (full-text) channel, best first.
|
|
4916
|
+
*/
|
|
4917
|
+
lexical?: number;
|
|
4918
|
+
};
|
|
4753
4919
|
/**
|
|
4754
4920
|
* Raw cosine similarity (0–1) between the query and this result. Pinned to that meaning — unlike `score`, it is never redefined — and populated on every result of a `query` search, a lexical-only hit included. Absent only when the embedding provider was unreachable and the search answered from the lexical channel alone, where there is no query vector to measure against.
|
|
4755
4921
|
*/
|
|
@@ -4805,6 +4971,29 @@ type MemoryWriteResult = Memory & {
|
|
|
4805
4971
|
*/
|
|
4806
4972
|
action?: 'created' | 'superseded' | 'skipped';
|
|
4807
4973
|
};
|
|
4974
|
+
/**
|
|
4975
|
+
* The event a firing reads. `agents.generation.completed` fires once per completed turn whatever the transport, and is the only event the built-in extractor may bind to. `conversations.message.generated` fires per persisted assistant reply and is conversation-backed, so it is for custom handlers.
|
|
4976
|
+
*/
|
|
4977
|
+
type MemoryRuleEvent = 'agents.generation.completed' | 'conversations.message.generated';
|
|
4978
|
+
type MemoryRule = {
|
|
4979
|
+
id?: string;
|
|
4980
|
+
memory_store_id?: string;
|
|
4981
|
+
project_id?: string;
|
|
4982
|
+
on?: MemoryRuleEvent;
|
|
4983
|
+
source_agent_ids?: Array<string> | null;
|
|
4984
|
+
agent_id?: string | null;
|
|
4985
|
+
tool_id?: string | null;
|
|
4986
|
+
action?: string | null;
|
|
4987
|
+
preset_parameters?: {
|
|
4988
|
+
[key: string]: unknown;
|
|
4989
|
+
} | null;
|
|
4990
|
+
prompt?: string | null;
|
|
4991
|
+
ai_provider_id?: string | null;
|
|
4992
|
+
model?: string | null;
|
|
4993
|
+
enabled?: boolean;
|
|
4994
|
+
created_at?: Date;
|
|
4995
|
+
updated_at?: Date;
|
|
4996
|
+
};
|
|
4808
4997
|
type MemoryStore = {
|
|
4809
4998
|
id?: string;
|
|
4810
4999
|
project_id?: string;
|
|
@@ -5052,7 +5241,7 @@ type OrchestrationNode = {
|
|
|
5052
5241
|
*/
|
|
5053
5242
|
parallelism?: number;
|
|
5054
5243
|
/**
|
|
5055
|
-
* For loop and sub_orchestration nodes — allowlist of the run's `tool_context` keys the child run inherits. When `null` (the default), the child inherits the parent's whole bag
|
|
5244
|
+
* For loop and sub_orchestration nodes — allowlist of the run's `tool_context` keys the child run inherits. When `null` (the default), the child inherits the parent's whole bag. When set, only the listed keys are handed down, so a run holding a broad credential can delegate one step to a shared sub-graph without passing on what that sub-graph does not need; `[]` hands down nothing. Matching is case-insensitive, since an entry names a key that becomes an HTTP header name; an entry outside that grammar is rejected at write time with `INVALID_TOOL_CONTEXT_KEY`. The server-derived identity keys (`session_id`, `actor_id`, `actor_external_id`) are unaffected — they are re-derived per generation in the child regardless of this list. Ignored for other node types.
|
|
5056
5245
|
*/
|
|
5057
5246
|
context_keys?: Array<string> | null;
|
|
5058
5247
|
/**
|
|
@@ -6514,7 +6703,7 @@ type Tool = {
|
|
|
6514
6703
|
*/
|
|
6515
6704
|
denied_actions?: Array<string> | null;
|
|
6516
6705
|
/**
|
|
6517
|
-
* Optional allowlist of `tool_context` keys that may be forwarded to this tool as prefixed context headers (`X-Naturali-Context-<key>` by default). When `null`, every key in the caller's `tool_context` is forwarded
|
|
6706
|
+
* Optional allowlist of `tool_context` keys that may be forwarded to this tool as prefixed context headers (`X-Naturali-Context-<key>` by default). When `null`, every key in the caller's `tool_context` is forwarded. When set, only the listed keys are, so a per-user credential in `tool_context` can be confined to the tools that need it; `[]` forwards none. The server-pinned identity keys (`session_id`, `actor_id`, `actor_external_id`) are always forwarded. A key consumed by a `{{context:<key>}}` token in this tool's own headers is substituted regardless of this list — the tool declared that header itself.
|
|
6518
6707
|
*/
|
|
6519
6708
|
context_keys?: Array<string> | null;
|
|
6520
6709
|
/**
|
|
@@ -6551,30 +6740,8 @@ type UpdateToolRequest = {
|
|
|
6551
6740
|
parameters?: {
|
|
6552
6741
|
[key: string]: unknown;
|
|
6553
6742
|
} | null;
|
|
6554
|
-
|
|
6555
|
-
|
|
6556
|
-
*
|
|
6557
|
-
* `auth` adds a computed request credential, for targets whose `Authorization` value cannot be expressed as a static header. Supported `auth.type` values:
|
|
6558
|
-
*
|
|
6559
|
-
* - `aws_sigv4` — signs the request with AWS Signature Version 4. Requires `region`, `service`, `access_key_id` and `secret_access_key`; `session_token` is optional (temporary credentials). Incompatible with `body_mode: multipart`, whose body bytes are not known at signing time.
|
|
6560
|
-
* - `gcp_service_account` — mints a Google OAuth 2.0 access token from a signed service account assertion and sends it as a bearer token. Requires `credentials` (the service account key file JSON, as a string) and `scopes` (a non-empty array). Tokens are cached per service account and scope set until shortly before they expire.
|
|
6561
|
-
*
|
|
6562
|
-
* Credential fields accept `{{secret:...}}` references and should use them — a tool is readable by anyone who can `GET /tools`, and the stored reference is what is echoed back, never the resolved value.
|
|
6563
|
-
*
|
|
6564
|
-
* A credential written as a **literal** is stored and still sent on every call, but it is masked on every read: `secret_access_key`, `session_token` and `credentials` under `auth`, and any credential-named `headers` value (`Authorization`, `Cookie`, or a name containing `api-key`/`token`/`secret`/`password`), come back as `{"no_echo": true}`. The mask is an object rather than a string so a read-edit-write round trip fails the schema check instead of writing the placeholder in as the credential. A value carrying a `{{secret:...}}` reference is the wiring, not the credential, and stays readable.
|
|
6565
|
-
*
|
|
6566
|
-
* `headers` values additionally accept `{{context:<key>}}` references, resolved per call from the caller's `tool_context`, so a per-user credential can be placed in the real header the target expects (`Authorization: Bearer {{context:ocaToken}}`) instead of only in an `X-Naturali-Context-<key>` header. Valid **only** inside `headers` — a context value is caller-supplied, so it may not steer the `url` — and a key missing from the `tool_context` at call time fails the tool call with `MISSING_TOOL_CONTEXT_KEY` rather than sending an empty credential. See the Tool Context reference.
|
|
6567
|
-
*
|
|
6568
|
-
*/
|
|
6569
|
-
execute?: {
|
|
6570
|
-
[key: string]: unknown;
|
|
6571
|
-
} | null;
|
|
6572
|
-
/**
|
|
6573
|
-
* MCP server config (`url`, `headers`). `headers` values accept `{{secret:...}}` and `{{context:<key>}}` references, resolved right before the outbound MCP request; `url` accepts `{{secret:...}}` only. A literal credential in `headers` is masked on read, exactly as in `execute`.
|
|
6574
|
-
*/
|
|
6575
|
-
mcp?: {
|
|
6576
|
-
[key: string]: unknown;
|
|
6577
|
-
} | null;
|
|
6743
|
+
execute?: ToolExecuteConfig;
|
|
6744
|
+
mcp?: ToolMcpConfig;
|
|
6578
6745
|
/**
|
|
6579
6746
|
* Allowlist of actions. For `mcp` tools: an optional allowlist of MCP tool names to scope the server surface (`null` exposes every tool). Ignored for other tool types.
|
|
6580
6747
|
*/
|
|
@@ -6584,7 +6751,7 @@ type UpdateToolRequest = {
|
|
|
6584
6751
|
*/
|
|
6585
6752
|
denied_actions?: Array<string> | null;
|
|
6586
6753
|
/**
|
|
6587
|
-
* Optional allowlist of `tool_context` keys that may be forwarded to this tool as prefixed context headers (`X-Naturali-Context-<key>` by default). When `null` or omitted, every key in the caller's `tool_context` is forwarded
|
|
6754
|
+
* Optional allowlist of `tool_context` keys that may be forwarded to this tool as prefixed context headers (`X-Naturali-Context-<key>` by default). When `null` or omitted, every key in the caller's `tool_context` is forwarded. When set, only the listed keys are, so a per-user credential in `tool_context` can be confined to the tools that need it; `[]` forwards none. The server-pinned identity keys (`session_id`, `actor_id`, `actor_external_id`) are always forwarded. A key consumed by a `{{context:<key>}}` token in this tool's own headers is substituted regardless of this list — the tool declared that header itself.
|
|
6588
6755
|
*/
|
|
6589
6756
|
context_keys?: Array<string> | null;
|
|
6590
6757
|
/**
|
|
@@ -7091,10 +7258,82 @@ type WorkflowState = {
|
|
|
7091
7258
|
* Seconds a task may sit in this state before the stall sweeper emits a `tasks.stalled` event (once per stall episode, re-armed on the next transition). Must be a positive integer when set. Omit or null to never stall. The event does not move the task — route on it with a webhook/trigger.
|
|
7092
7259
|
*/
|
|
7093
7260
|
stalled_after?: number | null;
|
|
7261
|
+
/**
|
|
7262
|
+
* What entering the state dispatches, and how the result routes. Omitted or null on a state that only parks.
|
|
7263
|
+
*/
|
|
7094
7264
|
on_enter?: {
|
|
7095
|
-
|
|
7265
|
+
/**
|
|
7266
|
+
* The one thing entering the state runs. `kind` picks it and names the id it needs: `agent` → `agent_id`, `orchestration` → `orchestration_id`, `tool` → `tool_id` (with an optional `operation_id`).
|
|
7267
|
+
*/
|
|
7268
|
+
dispatch?: {
|
|
7269
|
+
/**
|
|
7270
|
+
* Which target is dispatched.
|
|
7271
|
+
*/
|
|
7272
|
+
kind?: 'agent' | 'orchestration' | 'tool';
|
|
7273
|
+
/**
|
|
7274
|
+
* The agent a `kind: agent` dispatch generates with.
|
|
7275
|
+
*/
|
|
7276
|
+
agent_id?: string | null;
|
|
7277
|
+
/**
|
|
7278
|
+
* The orchestration a `kind: orchestration` dispatch starts a run of.
|
|
7279
|
+
*/
|
|
7280
|
+
orchestration_id?: string | null;
|
|
7281
|
+
/**
|
|
7282
|
+
* The tool a `kind: tool` dispatch calls.
|
|
7283
|
+
*/
|
|
7284
|
+
tool_id?: string | null;
|
|
7285
|
+
/**
|
|
7286
|
+
* Which operation of a multi-operation tool to invoke — the same selector an orchestration `tool` node takes.
|
|
7287
|
+
*/
|
|
7288
|
+
operation_id?: string | null;
|
|
7289
|
+
/**
|
|
7290
|
+
* JSON Logic building the dispatch input from the task. Carried verbatim.
|
|
7291
|
+
*/
|
|
7292
|
+
input_mapping?: {
|
|
7293
|
+
[key: string]: unknown;
|
|
7294
|
+
} | null;
|
|
7295
|
+
/**
|
|
7296
|
+
* JSON Logic expressions over `{task, result}` whose values are written into `task.payload` when the dispatch completes, one named channel per key. Carried verbatim.
|
|
7297
|
+
*/
|
|
7298
|
+
payload_writes?: {
|
|
7299
|
+
[key: string]: unknown;
|
|
7300
|
+
} | null;
|
|
7301
|
+
};
|
|
7302
|
+
/**
|
|
7303
|
+
* Re-runs the dispatch's execution failures before `on_failure` applies. Omitted means a single attempt.
|
|
7304
|
+
*/
|
|
7305
|
+
retry?: {
|
|
7306
|
+
/**
|
|
7307
|
+
* Attempts to make, 1–10.
|
|
7308
|
+
*/
|
|
7309
|
+
max_attempts?: number;
|
|
7310
|
+
/**
|
|
7311
|
+
* Delay before the second attempt.
|
|
7312
|
+
*/
|
|
7313
|
+
backoff_seconds?: number | null;
|
|
7314
|
+
/**
|
|
7315
|
+
* Factor the delay grows by per further attempt: `backoff_seconds * backoff_multiplier^(n - 2)`.
|
|
7316
|
+
*/
|
|
7317
|
+
backoff_multiplier?: number | null;
|
|
7318
|
+
} | null;
|
|
7319
|
+
/**
|
|
7320
|
+
* Rules evaluated in order when the dispatch completes; the first whose `when` is truthy fires its transition.
|
|
7321
|
+
*/
|
|
7322
|
+
on_complete?: Array<{
|
|
7323
|
+
/**
|
|
7324
|
+
* JSON Logic over `{task, result}`. Carried verbatim.
|
|
7325
|
+
*/
|
|
7326
|
+
when?: unknown;
|
|
7327
|
+
/**
|
|
7328
|
+
* The transition to fire, by name.
|
|
7329
|
+
*/
|
|
7330
|
+
transition?: string;
|
|
7331
|
+
}> | null;
|
|
7332
|
+
/**
|
|
7333
|
+
* Transition fired when the dispatch fails after its last attempt. Omitted parks the task with `automation_status: failed`.
|
|
7334
|
+
*/
|
|
7335
|
+
on_failure?: string | null;
|
|
7096
7336
|
} | null;
|
|
7097
|
-
[key: string]: unknown;
|
|
7098
7337
|
};
|
|
7099
7338
|
/**
|
|
7100
7339
|
* A named, directional move. `from` is a list of source states; `to` is one target state. `guard` is a JSON Logic expression over `{task, transition, principal}` that must be truthy for the move to apply.
|
|
@@ -7110,7 +7349,6 @@ type WorkflowTransition = {
|
|
|
7110
7349
|
* Gate the transition behind a human approval. When `true`, firing the transition (by anyone other than the approval resolution itself) parks a pending `ApprovalItem` instead of moving the task; the task exposes `pending_transition` until the item resolves. Approval fires the transition as the `approval` principal (its guard re-evaluated at resolution time); rejection or expiry clears the gate and appends a history note.
|
|
7111
7350
|
*/
|
|
7112
7351
|
requires_approval?: boolean;
|
|
7113
|
-
[key: string]: unknown;
|
|
7114
7352
|
};
|
|
7115
7353
|
type Workflow = {
|
|
7116
7354
|
id?: string;
|
|
@@ -14966,24 +15204,26 @@ type SearchKnowledgeData = {
|
|
|
14966
15204
|
* Minimum raw cosine `similarity_score` a **vector** candidate must reach to take part in ranking, applied before fusion. Only applies when `query` is provided. Lexical candidates are deliberately exempt: a result that literally contains the searched token is the evidence, and dropping it for a low cosine is the failure hybrid search exists to prevent. Not a floor on `score`, whose fused value encodes rank position rather than similarity.
|
|
14967
15205
|
*/
|
|
14968
15206
|
min_similarity?: number;
|
|
14969
|
-
/**
|
|
14970
|
-
* Deprecated alias for `min_similarity`, with identical behavior. While ranking was single-signal `score` equaled `similarity_score`, so this has only ever filtered cosine and an existing value keeps returning the same results. `min_similarity` wins when both are sent. Removed in v2.
|
|
14971
|
-
*
|
|
14972
|
-
* @deprecated
|
|
14973
|
-
*/
|
|
14974
|
-
min_score?: number;
|
|
14975
15207
|
/**
|
|
14976
15208
|
* The `k` in the reciprocal rank fusion term `1 / (k + rank)`, which sets how steeply a result's contribution decays with its position in each ranked list. A smaller value weights the very top of each list more heavily. Defaults to the deployment's `KNOWLEDGE_RRF_K`, itself 60 by default. Only applies when `query` is provided.
|
|
14977
15209
|
*/
|
|
14978
15210
|
rrf_k?: number;
|
|
14979
15211
|
/**
|
|
14980
|
-
* Half-life, in days, of a recency decay applied to **memory store** results after fusion: a result's `score` is multiplied by `2 ^ (-age_in_days / recency_half_life_days)`, where age is measured from its `updated_at`. Document results are never decayed. `0` — the default, and the default of the deployment's `KNOWLEDGE_RECENCY_HALF_LIFE_DAYS` — disables the blend entirely; it is a switch, not a lower bound, and sending `0` turns off a deployment-wide decay for this one request. Accepts fractions (`0.5` is twelve hours). How many ranks a given half-life costs depends on `rrf_k`. Only applies when `query` is provided.
|
|
15212
|
+
* 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. **No value is known to be safe in general**: every half-life measured against the reference corpus that lifted recency-sensitive queries also cost relevance-sensitive ones, which is why this ships disabled. Measure against your own corpus before setting it — see the Retrieval Quality guide.
|
|
14981
15213
|
*/
|
|
14982
15214
|
recency_half_life_days?: number;
|
|
14983
15215
|
/**
|
|
14984
15216
|
* Maximum number of results to return (default 10). A value above 100 is clamped to 100 — the ceiling bounds the vector scan this one request performs, so a larger `limit` returns everything there is up to that many rows rather than being refused.
|
|
14985
15217
|
*/
|
|
14986
15218
|
limit?: number;
|
|
15219
|
+
/**
|
|
15220
|
+
* Set `false` to leave the document store out of this search. A `query` names no store, so it reaches both; the store-specific filters narrow *within* a store rather than choosing between them. This is the switch, and a filter naming the other store never overrides it. `false` for both stores is `400`.
|
|
15221
|
+
*/
|
|
15222
|
+
include_documents?: boolean;
|
|
15223
|
+
/**
|
|
15224
|
+
* Set `false` to leave the memory store out of this search. The mirror of `include_documents`, for a caller that wants documents alone.
|
|
15225
|
+
*/
|
|
15226
|
+
include_memories?: boolean;
|
|
14987
15227
|
/**
|
|
14988
15228
|
* Search memories within these specific memory stores
|
|
14989
15229
|
*/
|
|
@@ -14997,7 +15237,7 @@ type SearchKnowledgeData = {
|
|
|
14997
15237
|
*/
|
|
14998
15238
|
document_ids?: Array<string>;
|
|
14999
15239
|
/**
|
|
15000
|
-
* Filter results to documents and memories whose `tags` contain every one of these key-value pairs (exact, case-sensitive match).
|
|
15240
|
+
* Filter results to documents and memories whose `tags` contain every one of these key-value pairs (exact, case-sensitive match). Scopes both stores, so passing it alone searches both — as `query` does. For memories it matches at memory granularity: a memory is returned when its parent memory store's tags match or its own do.
|
|
15001
15241
|
*/
|
|
15002
15242
|
tags?: TagBag;
|
|
15003
15243
|
};
|
|
@@ -15125,6 +15365,10 @@ type CreateMemoryData = {
|
|
|
15125
15365
|
metadata?: {
|
|
15126
15366
|
[key: string]: unknown;
|
|
15127
15367
|
};
|
|
15368
|
+
/**
|
|
15369
|
+
* The memory this write replaces, named outright. The declaration outranks the thresholds in both directions: the target is retired and the write returns `superseded` however similar or distant the two texts are. This is what reaches a contradiction cosine cannot see ("The office is in Lisbon" then "We closed the Lisbon office"). The target must be a still-valid memory in the same memory store, and the caller needs `memories:UpdateMemory` on it as well as `memories:CreateMemory` on the store.
|
|
15370
|
+
*/
|
|
15371
|
+
supersedes?: string;
|
|
15128
15372
|
/**
|
|
15129
15373
|
* Cosine similarity at or above which the incoming content is a duplicate of an existing memory and the write is skipped. Overrides the store's `duplicate_threshold` for this call; falls back to the store's value, then to `0.95`.
|
|
15130
15374
|
*/
|
|
@@ -15145,7 +15389,7 @@ type CreateMemoryData = {
|
|
|
15145
15389
|
};
|
|
15146
15390
|
type CreateMemoryErrors = {
|
|
15147
15391
|
/**
|
|
15148
|
-
* Bad request — a missing required field,
|
|
15392
|
+
* Bad request — a missing required field, a threshold pair whose effective values are not `supersede_threshold < duplicate_threshold`, or a `supersedes` that is not a memory id, or names a memory in another memory store or one already superseded.
|
|
15149
15393
|
*/
|
|
15150
15394
|
400: unknown;
|
|
15151
15395
|
/**
|
|
@@ -15153,11 +15397,11 @@ type CreateMemoryErrors = {
|
|
|
15153
15397
|
*/
|
|
15154
15398
|
401: unknown;
|
|
15155
15399
|
/**
|
|
15156
|
-
* Forbidden
|
|
15400
|
+
* Forbidden — the caller may not write to the memory store, or may not update the memory named by `supersedes`.
|
|
15157
15401
|
*/
|
|
15158
15402
|
403: unknown;
|
|
15159
15403
|
/**
|
|
15160
|
-
* Memory store not found
|
|
15404
|
+
* Memory store not found, or no memory matches `supersedes`
|
|
15161
15405
|
*/
|
|
15162
15406
|
404: unknown;
|
|
15163
15407
|
/**
|
|
@@ -15473,6 +15717,268 @@ type ReplaceMemoryTagsResponses = {
|
|
|
15473
15717
|
200: TagBag;
|
|
15474
15718
|
};
|
|
15475
15719
|
type ReplaceMemoryTagsResponse = ReplaceMemoryTagsResponses[keyof ReplaceMemoryTagsResponses];
|
|
15720
|
+
type ListMemoryRulesData = {
|
|
15721
|
+
body?: never;
|
|
15722
|
+
path: {
|
|
15723
|
+
/**
|
|
15724
|
+
* Project public ID (proj_ prefix).
|
|
15725
|
+
*/
|
|
15726
|
+
project_id: string;
|
|
15727
|
+
};
|
|
15728
|
+
query?: {
|
|
15729
|
+
/**
|
|
15730
|
+
* Only the rules of this memory store
|
|
15731
|
+
*/
|
|
15732
|
+
memory_store_id?: string;
|
|
15733
|
+
/**
|
|
15734
|
+
* Number of results per page
|
|
15735
|
+
*/
|
|
15736
|
+
limit?: number;
|
|
15737
|
+
/**
|
|
15738
|
+
* Number of results to skip
|
|
15739
|
+
*/
|
|
15740
|
+
offset?: number;
|
|
15741
|
+
};
|
|
15742
|
+
url: '/v1/projects/{project_id}/memory-rules';
|
|
15743
|
+
};
|
|
15744
|
+
type ListMemoryRulesErrors = {
|
|
15745
|
+
/**
|
|
15746
|
+
* Unauthorized
|
|
15747
|
+
*/
|
|
15748
|
+
401: unknown;
|
|
15749
|
+
/**
|
|
15750
|
+
* Forbidden
|
|
15751
|
+
*/
|
|
15752
|
+
403: unknown;
|
|
15753
|
+
/**
|
|
15754
|
+
* Internal server error
|
|
15755
|
+
*/
|
|
15756
|
+
500: unknown;
|
|
15757
|
+
};
|
|
15758
|
+
type ListMemoryRulesResponses = {
|
|
15759
|
+
/**
|
|
15760
|
+
* List of memory rules
|
|
15761
|
+
*/
|
|
15762
|
+
200: {
|
|
15763
|
+
data: Array<MemoryRule>;
|
|
15764
|
+
total: number;
|
|
15765
|
+
limit: number;
|
|
15766
|
+
offset: number;
|
|
15767
|
+
};
|
|
15768
|
+
};
|
|
15769
|
+
type ListMemoryRulesResponse = ListMemoryRulesResponses[keyof ListMemoryRulesResponses];
|
|
15770
|
+
type CreateMemoryRuleData = {
|
|
15771
|
+
body: {
|
|
15772
|
+
/**
|
|
15773
|
+
* The destination store, and the rule's owning scope
|
|
15774
|
+
*/
|
|
15775
|
+
memory_store_id: string;
|
|
15776
|
+
on: MemoryRuleEvent;
|
|
15777
|
+
/**
|
|
15778
|
+
* Agents whose turns this rule reads. Omit or send `null` for every agent in the store's project.
|
|
15779
|
+
*/
|
|
15780
|
+
source_agent_ids?: Array<string> | null;
|
|
15781
|
+
/**
|
|
15782
|
+
* Handler agent (mutually exclusive with tool_id)
|
|
15783
|
+
*/
|
|
15784
|
+
agent_id?: string | null;
|
|
15785
|
+
/**
|
|
15786
|
+
* Handler tool (mutually exclusive with agent_id)
|
|
15787
|
+
*/
|
|
15788
|
+
tool_id?: string | null;
|
|
15789
|
+
/**
|
|
15790
|
+
* Operation id, for a tool handler
|
|
15791
|
+
*/
|
|
15792
|
+
action?: string | null;
|
|
15793
|
+
/**
|
|
15794
|
+
* Merged into a tool handler's input before invocation. The turn's own fields are reserved and win.
|
|
15795
|
+
*/
|
|
15796
|
+
preset_parameters?: {
|
|
15797
|
+
[key: string]: unknown;
|
|
15798
|
+
} | null;
|
|
15799
|
+
/**
|
|
15800
|
+
* Replaces the built-in extractor's task instructions. The JSON response contract and the transcript are always appended. Not valid with a handler.
|
|
15801
|
+
*/
|
|
15802
|
+
prompt?: string | null;
|
|
15803
|
+
/**
|
|
15804
|
+
* Provider override for the built-in extractor's completion. Not valid with a handler.
|
|
15805
|
+
*/
|
|
15806
|
+
ai_provider_id?: string | null;
|
|
15807
|
+
/**
|
|
15808
|
+
* Model override for the built-in extractor's completion. Not valid with a handler.
|
|
15809
|
+
*/
|
|
15810
|
+
model?: string | null;
|
|
15811
|
+
/**
|
|
15812
|
+
* A disabled rule is kept and never fires
|
|
15813
|
+
*/
|
|
15814
|
+
enabled?: boolean;
|
|
15815
|
+
};
|
|
15816
|
+
path: {
|
|
15817
|
+
/**
|
|
15818
|
+
* Project public ID (proj_ prefix).
|
|
15819
|
+
*/
|
|
15820
|
+
project_id: string;
|
|
15821
|
+
};
|
|
15822
|
+
query?: never;
|
|
15823
|
+
url: '/v1/projects/{project_id}/memory-rules';
|
|
15824
|
+
};
|
|
15825
|
+
type CreateMemoryRuleErrors = {
|
|
15826
|
+
/**
|
|
15827
|
+
* Validation failed (e.g. agent_id and tool_id both set, or an extractor override combined with a handler)
|
|
15828
|
+
*/
|
|
15829
|
+
400: unknown;
|
|
15830
|
+
/**
|
|
15831
|
+
* Unauthorized
|
|
15832
|
+
*/
|
|
15833
|
+
401: unknown;
|
|
15834
|
+
/**
|
|
15835
|
+
* Forbidden
|
|
15836
|
+
*/
|
|
15837
|
+
403: unknown;
|
|
15838
|
+
/**
|
|
15839
|
+
* Memory store not found
|
|
15840
|
+
*/
|
|
15841
|
+
404: unknown;
|
|
15842
|
+
/**
|
|
15843
|
+
* Internal server error
|
|
15844
|
+
*/
|
|
15845
|
+
500: unknown;
|
|
15846
|
+
};
|
|
15847
|
+
type CreateMemoryRuleResponses = {
|
|
15848
|
+
/**
|
|
15849
|
+
* Memory rule created
|
|
15850
|
+
*/
|
|
15851
|
+
201: MemoryRule;
|
|
15852
|
+
};
|
|
15853
|
+
type CreateMemoryRuleResponse = CreateMemoryRuleResponses[keyof CreateMemoryRuleResponses];
|
|
15854
|
+
type DeleteMemoryRuleData = {
|
|
15855
|
+
body?: never;
|
|
15856
|
+
path: {
|
|
15857
|
+
/**
|
|
15858
|
+
* Project public ID (proj_ prefix).
|
|
15859
|
+
*/
|
|
15860
|
+
project_id: string;
|
|
15861
|
+
/**
|
|
15862
|
+
* Memory rule ID
|
|
15863
|
+
*/
|
|
15864
|
+
memory_rule_id: string;
|
|
15865
|
+
};
|
|
15866
|
+
query?: never;
|
|
15867
|
+
url: '/v1/projects/{project_id}/memory-rules/{memory_rule_id}';
|
|
15868
|
+
};
|
|
15869
|
+
type DeleteMemoryRuleErrors = {
|
|
15870
|
+
/**
|
|
15871
|
+
* Unauthorized
|
|
15872
|
+
*/
|
|
15873
|
+
401: unknown;
|
|
15874
|
+
/**
|
|
15875
|
+
* Forbidden
|
|
15876
|
+
*/
|
|
15877
|
+
403: unknown;
|
|
15878
|
+
/**
|
|
15879
|
+
* Memory rule not found
|
|
15880
|
+
*/
|
|
15881
|
+
404: unknown;
|
|
15882
|
+
};
|
|
15883
|
+
type DeleteMemoryRuleResponses = {
|
|
15884
|
+
/**
|
|
15885
|
+
* Memory rule deleted
|
|
15886
|
+
*/
|
|
15887
|
+
204: void;
|
|
15888
|
+
};
|
|
15889
|
+
type DeleteMemoryRuleResponse = DeleteMemoryRuleResponses[keyof DeleteMemoryRuleResponses];
|
|
15890
|
+
type GetMemoryRuleData = {
|
|
15891
|
+
body?: never;
|
|
15892
|
+
path: {
|
|
15893
|
+
/**
|
|
15894
|
+
* Project public ID (proj_ prefix).
|
|
15895
|
+
*/
|
|
15896
|
+
project_id: string;
|
|
15897
|
+
/**
|
|
15898
|
+
* Memory rule ID
|
|
15899
|
+
*/
|
|
15900
|
+
memory_rule_id: string;
|
|
15901
|
+
};
|
|
15902
|
+
query?: never;
|
|
15903
|
+
url: '/v1/projects/{project_id}/memory-rules/{memory_rule_id}';
|
|
15904
|
+
};
|
|
15905
|
+
type GetMemoryRuleErrors = {
|
|
15906
|
+
/**
|
|
15907
|
+
* Unauthorized
|
|
15908
|
+
*/
|
|
15909
|
+
401: unknown;
|
|
15910
|
+
/**
|
|
15911
|
+
* Forbidden
|
|
15912
|
+
*/
|
|
15913
|
+
403: unknown;
|
|
15914
|
+
/**
|
|
15915
|
+
* Memory rule not found
|
|
15916
|
+
*/
|
|
15917
|
+
404: unknown;
|
|
15918
|
+
};
|
|
15919
|
+
type GetMemoryRuleResponses = {
|
|
15920
|
+
/**
|
|
15921
|
+
* Memory rule details
|
|
15922
|
+
*/
|
|
15923
|
+
200: MemoryRule;
|
|
15924
|
+
};
|
|
15925
|
+
type GetMemoryRuleResponse = GetMemoryRuleResponses[keyof GetMemoryRuleResponses];
|
|
15926
|
+
type UpdateMemoryRuleData = {
|
|
15927
|
+
body: {
|
|
15928
|
+
on?: MemoryRuleEvent;
|
|
15929
|
+
/**
|
|
15930
|
+
* Send `null` to widen the rule to every agent in the project
|
|
15931
|
+
*/
|
|
15932
|
+
source_agent_ids?: Array<string> | null;
|
|
15933
|
+
agent_id?: string | null;
|
|
15934
|
+
tool_id?: string | null;
|
|
15935
|
+
action?: string | null;
|
|
15936
|
+
preset_parameters?: {
|
|
15937
|
+
[key: string]: unknown;
|
|
15938
|
+
} | null;
|
|
15939
|
+
prompt?: string | null;
|
|
15940
|
+
ai_provider_id?: string | null;
|
|
15941
|
+
model?: string | null;
|
|
15942
|
+
enabled?: boolean;
|
|
15943
|
+
};
|
|
15944
|
+
path: {
|
|
15945
|
+
/**
|
|
15946
|
+
* Project public ID (proj_ prefix).
|
|
15947
|
+
*/
|
|
15948
|
+
project_id: string;
|
|
15949
|
+
/**
|
|
15950
|
+
* Memory rule ID
|
|
15951
|
+
*/
|
|
15952
|
+
memory_rule_id: string;
|
|
15953
|
+
};
|
|
15954
|
+
query?: never;
|
|
15955
|
+
url: '/v1/projects/{project_id}/memory-rules/{memory_rule_id}';
|
|
15956
|
+
};
|
|
15957
|
+
type UpdateMemoryRuleErrors = {
|
|
15958
|
+
/**
|
|
15959
|
+
* Validation failed
|
|
15960
|
+
*/
|
|
15961
|
+
400: unknown;
|
|
15962
|
+
/**
|
|
15963
|
+
* Unauthorized
|
|
15964
|
+
*/
|
|
15965
|
+
401: unknown;
|
|
15966
|
+
/**
|
|
15967
|
+
* Forbidden
|
|
15968
|
+
*/
|
|
15969
|
+
403: unknown;
|
|
15970
|
+
/**
|
|
15971
|
+
* Memory rule not found
|
|
15972
|
+
*/
|
|
15973
|
+
404: unknown;
|
|
15974
|
+
};
|
|
15975
|
+
type UpdateMemoryRuleResponses = {
|
|
15976
|
+
/**
|
|
15977
|
+
* Memory rule updated
|
|
15978
|
+
*/
|
|
15979
|
+
200: MemoryRule;
|
|
15980
|
+
};
|
|
15981
|
+
type UpdateMemoryRuleResponse = UpdateMemoryRuleResponses[keyof UpdateMemoryRuleResponses];
|
|
15476
15982
|
type ListMemoryStoresData = {
|
|
15477
15983
|
body?: never;
|
|
15478
15984
|
path: {
|
|
@@ -21631,7 +22137,7 @@ export declare class Generations {
|
|
|
21631
22137
|
/**
|
|
21632
22138
|
* List generations
|
|
21633
22139
|
*
|
|
21634
|
-
* Returns generations the caller can access, optionally filtered by agent, trace, orchestration run, node, and status.
|
|
22140
|
+
* Returns generations the caller can access, optionally filtered by agent, trace, orchestration run, node, and status. The generations of one trace are the `trace_id` filter.
|
|
21635
22141
|
*
|
|
21636
22142
|
* Filtering by `orchestration_run_id` is the supported way to get from an orchestration run to the generations its agent nodes produced: a node execution record carries no generation id, so the pointer lives here, alongside the run's other attribution columns.
|
|
21637
22143
|
*
|
|
@@ -21790,7 +22296,7 @@ export declare class Memories {
|
|
|
21790
22296
|
/**
|
|
21791
22297
|
* Create a memory
|
|
21792
22298
|
*
|
|
21793
|
-
* Writes a fact to the specified memory store through the standard write algorithm: the content is embedded (or matched to text the store already holds), compared against the most similar currently-valid memory, and resolved to exactly one of three outcomes — `skipped` at or above `duplicate_threshold`, `superseded` at or above `supersede_threshold`, `created` below it. Every call records one assertion, whatever the outcome.
|
|
22299
|
+
* Writes a fact to the specified memory store through the standard write algorithm: the content is embedded (or matched to text the store already holds), compared against the most similar currently-valid memory, and resolved to exactly one of three outcomes — `skipped` at or above `duplicate_threshold`, `superseded` at or above `supersede_threshold`, `created` below it. `supersedes` overrides that comparison entirely, retiring the memory it names. Every call records one assertion, whatever the outcome.
|
|
21794
22300
|
*/
|
|
21795
22301
|
static createMemory<ThrowOnError extends boolean = false>(options: Options<CreateMemoryData, ThrowOnError>): RequestResult<CreateMemoryResponses, CreateMemoryErrors, ThrowOnError>;
|
|
21796
22302
|
/**
|
|
@@ -21836,6 +22342,38 @@ export declare class Memories {
|
|
|
21836
22342
|
*/
|
|
21837
22343
|
static replaceMemoryTags<ThrowOnError extends boolean = false>(options: Options<ReplaceMemoryTagsData, ThrowOnError>): RequestResult<ReplaceMemoryTagsResponses, ReplaceMemoryTagsErrors, ThrowOnError>;
|
|
21838
22344
|
}
|
|
22345
|
+
export declare class MemoryRules {
|
|
22346
|
+
/**
|
|
22347
|
+
* List memory rules
|
|
22348
|
+
*
|
|
22349
|
+
* Returns memory rules, newest first. Narrow to one store with `memory_store_id` — that form is authorized against the store itself, so it answers "what feeds this store?" in one call.
|
|
22350
|
+
*/
|
|
22351
|
+
static listMemoryRules<ThrowOnError extends boolean = false>(options: Options<ListMemoryRulesData, ThrowOnError>): RequestResult<ListMemoryRulesResponses, ListMemoryRulesErrors, ThrowOnError>;
|
|
22352
|
+
/**
|
|
22353
|
+
* Create a memory rule
|
|
22354
|
+
*
|
|
22355
|
+
* Creates an ingestion rule on a memory store. With neither `agent_id` nor `tool_id` the built-in extractor runs, configurable through `prompt`, `ai_provider_id` and `model`.
|
|
22356
|
+
*/
|
|
22357
|
+
static createMemoryRule<ThrowOnError extends boolean = false>(options: Options<CreateMemoryRuleData, ThrowOnError>): RequestResult<CreateMemoryRuleResponses, CreateMemoryRuleErrors, ThrowOnError>;
|
|
22358
|
+
/**
|
|
22359
|
+
* Delete a memory rule
|
|
22360
|
+
*
|
|
22361
|
+
* Deletes a memory rule. The assertions it wrote are kept; their `rule_id` becomes null.
|
|
22362
|
+
*/
|
|
22363
|
+
static deleteMemoryRule<ThrowOnError extends boolean = false>(options: Options<DeleteMemoryRuleData, ThrowOnError>): RequestResult<DeleteMemoryRuleResponses, DeleteMemoryRuleErrors, ThrowOnError>;
|
|
22364
|
+
/**
|
|
22365
|
+
* Get a memory rule
|
|
22366
|
+
*
|
|
22367
|
+
* Returns a specific memory rule
|
|
22368
|
+
*/
|
|
22369
|
+
static getMemoryRule<ThrowOnError extends boolean = false>(options: Options<GetMemoryRuleData, ThrowOnError>): RequestResult<GetMemoryRuleResponses, GetMemoryRuleErrors, ThrowOnError>;
|
|
22370
|
+
/**
|
|
22371
|
+
* Update a memory rule
|
|
22372
|
+
*
|
|
22373
|
+
* Updates a memory rule. Validation runs against the rule as it would stand after the change, so a one-field update cannot pair a handler with a stored extractor override from the side.
|
|
22374
|
+
*/
|
|
22375
|
+
static updateMemoryRule<ThrowOnError extends boolean = false>(options: Options<UpdateMemoryRuleData, ThrowOnError>): RequestResult<UpdateMemoryRuleResponses, UpdateMemoryRuleErrors, ThrowOnError>;
|
|
22376
|
+
}
|
|
21839
22377
|
export declare class MemoryStores {
|
|
21840
22378
|
/**
|
|
21841
22379
|
* List memory stores
|
|
@@ -22789,6 +23327,7 @@ export declare class NaturaliClient {
|
|
|
22789
23327
|
readonly ingestionRules: typeof IngestionRules;
|
|
22790
23328
|
readonly knowledge: typeof Knowledge;
|
|
22791
23329
|
readonly memories: typeof Memories;
|
|
23330
|
+
readonly memoryRules: typeof MemoryRules;
|
|
22792
23331
|
readonly memoryStores: typeof MemoryStores;
|
|
22793
23332
|
readonly modelRoutes: typeof ModelRoutes;
|
|
22794
23333
|
readonly quotas: typeof Quotas;
|
|
@@ -22809,4 +23348,4 @@ export declare class NaturaliClient {
|
|
|
22809
23348
|
constructor({ token, headers }?: NaturaliClientOptions);
|
|
22810
23349
|
}
|
|
22811
23350
|
//#endregion
|
|
22812
|
-
export type { AbortAgentReleaseData, AbortAgentReleaseError, AbortAgentReleaseErrors, AbortAgentReleaseResponse, AbortAgentReleaseResponses, AcceptedGenerationResponse, AcknowledgeExceptionData, AcknowledgeExceptionErrors, AcknowledgeExceptionResponse, AcknowledgeExceptionResponses, Acknowledgement, ActivityEntry, ActorRecord, ActorResourceProperties, AddConversationMessageData, AddConversationMessageError, AddConversationMessageErrors, AddConversationMessageResponse, AddConversationMessageResponses, AddProjectMemberData, AddProjectMemberError, AddProjectMemberErrors, AddProjectMemberResponse, AddProjectMemberResponses, AddSessionMessageData, AddSessionMessageError, AddSessionMessageErrors, AddSessionMessageRequest, AddSessionMessageResponse, AddSessionMessageResponse2, AddSessionMessageResponses, AddSessionMessageSaved, Address, AddressActionSet, AddressList, AdminUser, AdminUserPage, Agent, AgentGenerationResponse, AgentRelease, AgentResourceProperties, AgentVersion, AggregateScores, AiProviderResourceProperties, ApiKeyCreate, ApiKeyCreated, ApiKeyId, ApiKeyList, ApiKeyRecord, ApiKeyUpdate, ApprovalId, ApprovalItem, ApprovalRecurrenceGroup, ApproveApprovalData, ApproveApprovalErrors, ApproveApprovalResponse, ApproveApprovalResponses, AssistantChannel, AssistantGrant, AssistantGrantList, AssistantLinkPreview, AssistantLinkRedeem, AssistantScope, AuditEntry, AuthSession, BaselineComparison, CallToolData, CallToolError, CallToolErrors, CallToolRequest, CallToolResponses, CancelEvalRunData, CancelEvalRunErrors, CancelEvalRunResponse, CancelEvalRunResponses, CancelOrchestrationRunData, CancelOrchestrationRunErrors, CancelOrchestrationRunResponse, CancelOrchestrationRunResponses, Chain, ChainId, Channel, ChannelCreate, ChannelDefaultAction, ChannelDefaultActionInput, ChannelId, ChannelKind, ChannelKindList, ChannelList, ChannelPredicate, ChannelRoute, ChannelRouteList, ChannelRouteWrite, ChannelSurface, ChannelUpdate, ClientOptions, ContainsScorer, Conversation, ConversationId, ConversationList, ConversationMessage, ConversationMessageList, ConversationMessageRecord, ConversationRecord, ConversationResourceProperties, CreateActorData, CreateActorError, CreateActorErrors, CreateActorResponse, CreateActorResponses, CreateAgentData, CreateAgentError, CreateAgentErrors, CreateAgentGenerationData, CreateAgentGenerationError, CreateAgentGenerationErrors, CreateAgentGenerationRequest, CreateAgentGenerationResponse, CreateAgentGenerationResponses, CreateAgentRequest, CreateAgentResponse, CreateAgentResponses, CreateAiProviderData, CreateAiProviderErrors, CreateAiProviderResponse, CreateAiProviderResponses, CreateApiKeyData, CreateApiKeyError, CreateApiKeyErrors, CreateApiKeyResponse, CreateApiKeyResponses, CreateChannelData, CreateChannelError, CreateChannelErrors, CreateChannelResponse, CreateChannelResponses, CreateChannelRouteData, CreateChannelRouteError, CreateChannelRouteErrors, CreateChannelRouteResponse, CreateChannelRouteResponses, CreateConversationData, CreateConversationError, CreateConversationErrors, CreateConversationResponse, CreateConversationResponses, CreateDatasetData, CreateDatasetErrors, CreateDatasetItemData, CreateDatasetItemErrors, CreateDatasetItemFromGenerationData, CreateDatasetItemFromGenerationErrors, CreateDatasetItemFromGenerationResponse, CreateDatasetItemFromGenerationResponses, CreateDatasetItemResponse, CreateDatasetItemResponses, CreateDatasetResponse, CreateDatasetResponses, CreateDocumentData, CreateDocumentError, CreateDocumentErrors, CreateDocumentResponse, CreateDocumentResponses, CreateEmbeddingsData, CreateEmbeddingsError, CreateEmbeddingsErrors, CreateEmbeddingsResponse, CreateEmbeddingsResponses, CreateEvalData, CreateEvalErrors, CreateEvalResponse, CreateEvalResponses, CreateFileData, CreateFileError, CreateFileErrors, CreateFileResponse, CreateFileResponses, CreateFormationData, CreateFormationErrors, CreateFormationResponse, CreateFormationResponses, CreateGuardrailData, CreateGuardrailError, CreateGuardrailErrors, CreateGuardrailRequest, CreateGuardrailResponse, CreateGuardrailResponses, CreateIngestionRuleData, CreateIngestionRuleErrors, CreateIngestionRuleResponse, CreateIngestionRuleResponses, CreateMemoryData, CreateMemoryErrors, CreateMemoryResponse, CreateMemoryResponses, CreateMemoryStoreData, CreateMemoryStoreErrors, CreateMemoryStoreResponse, CreateMemoryStoreResponses, CreateModelRouteData, CreateModelRouteErrors, CreateModelRouteResponse, CreateModelRouteResponses, CreateOrchestrationData, CreateOrchestrationErrors, CreateOrchestrationRequest, CreateOrchestrationResponse, CreateOrchestrationResponses, CreateProjectData, CreateProjectError, CreateProjectErrors, CreateProjectResponse, CreateProjectResponses, CreateProjectUsageThresholdData, CreateProjectUsageThresholdError, CreateProjectUsageThresholdErrors, CreateProjectUsageThresholdResponse, CreateProjectUsageThresholdResponses, CreateQuotaData, CreateQuotaErrors, CreateQuotaResponse, CreateQuotaResponses, CreateSecretData, CreateSecretErrors, CreateSecretResponse, CreateSecretResponses, CreateSessionData, CreateSessionError, CreateSessionErrors, CreateSessionRequest, CreateSessionResponse, CreateSessionResponses, CreateTaskData, CreateTaskErrors, CreateTaskRequest, CreateTaskResponse, CreateTaskResponses, CreateToolData, CreateToolError, CreateToolErrors, CreateToolRequest, CreateToolResponse, CreateToolResponses, CreateTriggerData, CreateTriggerErrors, CreateTriggerRequest, CreateTriggerResponse, CreateTriggerResponses, CreateWebhookData, CreateWebhookError, CreateWebhookErrors, CreateWebhookResponse, CreateWebhookResponses, CreateWorkflowData, CreateWorkflowErrors, CreateWorkflowRequest, CreateWorkflowResponse, CreateWorkflowResponses, CreditEntry, CreditEntryPage, CreditGrant, CreditGrantResult, Cursor, Dataset, DatasetItem, DatasetItemInput, DatasetItemResourceProperties, DatasetResourceProperties, DeleteActorData, DeleteActorError, DeleteActorErrors, DeleteActorResponse, DeleteActorResponses, DeleteAddressData, DeleteAddressError, DeleteAddressErrors, DeleteAddressResponse, DeleteAddressResponses, DeleteAgentData, DeleteAgentError, DeleteAgentErrors, DeleteAgentResponse, DeleteAgentResponses, DeleteAiProviderData, DeleteAiProviderErrors, DeleteAiProviderResponse, DeleteAiProviderResponses, DeleteApiKeyData, DeleteApiKeyError, DeleteApiKeyErrors, DeleteApiKeyResponse, DeleteApiKeyResponses, DeleteChannelData, DeleteChannelError, DeleteChannelErrors, DeleteChannelResponse, DeleteChannelResponses, DeleteChannelRouteData, DeleteChannelRouteError, DeleteChannelRouteErrors, DeleteChannelRouteResponse, DeleteChannelRouteResponses, DeleteConversationData, DeleteConversationError, DeleteConversationErrors, DeleteConversationResponse, DeleteConversationResponses, DeleteDatasetData, DeleteDatasetErrors, DeleteDatasetItemData, DeleteDatasetItemErrors, DeleteDatasetItemResponse, DeleteDatasetItemResponses, DeleteDatasetResponse, DeleteDatasetResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteEvalData, DeleteEvalErrors, DeleteEvalResponse, DeleteEvalResponses, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponses, DeleteFormationData, DeleteFormationErrors, DeleteFormationResponse, DeleteFormationResponses, DeleteGuardrailData, DeleteGuardrailError, DeleteGuardrailErrors, DeleteGuardrailResponse, DeleteGuardrailResponses, DeleteIngestionRuleData, DeleteIngestionRuleErrors, DeleteIngestionRuleResponse, DeleteIngestionRuleResponses, DeleteMemoryData, DeleteMemoryErrors, DeleteMemoryResponse, DeleteMemoryResponses, DeleteMemoryStoreData, DeleteMemoryStoreErrors, DeleteMemoryStoreResponse, DeleteMemoryStoreResponses, DeleteModelRouteData, DeleteModelRouteErrors, DeleteModelRouteResponse, DeleteModelRouteResponses, DeleteOrchestrationData, DeleteOrchestrationErrors, DeleteOrchestrationResponse, DeleteOrchestrationResponses, DeleteProjectData, DeleteProjectError, DeleteProjectErrors, DeleteProjectResponse, DeleteProjectResponses, DeleteProjectUsageThresholdData, DeleteProjectUsageThresholdError, DeleteProjectUsageThresholdErrors, DeleteProjectUsageThresholdResponse, DeleteProjectUsageThresholdResponses, DeleteQuotaData, DeleteQuotaErrors, DeleteQuotaResponse, DeleteQuotaResponses, DeleteSecretData, DeleteSecretErrors, DeleteSecretResponses, DeleteSessionData, DeleteSessionError, DeleteSessionErrors, DeleteSessionResponse, DeleteSessionResponses, DeleteTaskData, DeleteTaskErrors, DeleteTaskResponse, DeleteTaskResponses, DeleteToolData, DeleteToolError, DeleteToolErrors, DeleteToolResponse, DeleteToolResponses, DeleteTriggerData, DeleteTriggerErrors, DeleteTriggerResponse, DeleteTriggerResponses, DeleteWebhookData, DeleteWebhookError, DeleteWebhookErrors, DeleteWebhookResponse, DeleteWebhookResponses, DeleteWorkflowData, DeleteWorkflowErrors, DeleteWorkflowResponse, DeleteWorkflowResponses, DeliveryId, DiscordModes, DocumentKnowledgeResult, DocumentMessageContent, DocumentRecord, DocumentResourceProperties, DocumentStatusRecord, DownloadFileBase64Data, DownloadFileBase64Error, DownloadFileBase64Errors, DownloadFileBase64Response, DownloadFileBase64Responses, DownloadFileData, DownloadFileError, DownloadFileErrors, DownloadFileResponse, DownloadFileResponses, EmbeddingSimilarityScorer, EmbeddingsResponse, ErrorResponse, Eval, EvalResourceProperties, EvalResult, EvalRun, EvaluateGuardrailData, EvaluateGuardrailError, EvaluateGuardrailErrors, EvaluateGuardrailResponse, EvaluateGuardrailResponses, Event, EventSubscription, EventType, ExactMatchScorer, ExceptionId, ExceptionItem, ExportAuditEntriesData, ExportAuditEntriesErrors, ExportAuditEntriesResponse, ExportAuditEntriesResponses, FileRecord, FileRecordWritable, FileResourceProperties, FireTriggerData, FireTriggerErrors, FireTriggerRequest, FireTriggerResponse, FireTriggerResponses, Force, ForkSessionData, ForkSessionError, ForkSessionErrors, ForkSessionRequest, ForkSessionResponse, ForkSessionResponses, Formation, FormationError, FormationEvent, FormationOperation, FormationResource, FormationTemplate, FormationTemplateInput, GenerateConversationMessageCompleted, GenerateConversationMessageData, GenerateConversationMessageError, GenerateConversationMessageErrors, GenerateConversationMessageRequiresAction, GenerateConversationMessageResponse, GenerateConversationMessageResponse2, GenerateConversationMessageResponses, GenerateSessionRequest, GenerateSessionResponse, GenerateSessionResponseData, GenerateSessionResponseError, GenerateSessionResponseErrors, GenerateSessionResponseResponse, GenerateSessionResponseResponses, Generation, GenerationTranscript, GetActorData, GetActorError, GetActorErrors, GetActorResponse, GetActorResponses, GetActorTagsData, GetActorTagsError, GetActorTagsErrors, GetActorTagsResponse, GetActorTagsResponses, GetAddressData, GetAddressError, GetAddressErrors, GetAddressResponse, GetAddressResponses, GetAdminPriceBookData, GetAdminPriceBookError, GetAdminPriceBookErrors, GetAdminPriceBookResponse, GetAdminPriceBookResponses, GetAgentData, GetAgentError, GetAgentErrors, GetAgentResponse, GetAgentResponses, GetAgentVersionData, GetAgentVersionError, GetAgentVersionErrors, GetAgentVersionResponse, GetAgentVersionResponses, GetAiProviderData, GetAiProviderErrors, GetAiProviderPricesData, GetAiProviderPricesErrors, GetAiProviderPricesResponse, GetAiProviderPricesResponses, GetAiProviderResponse, GetAiProviderResponses, GetApiKeyData, GetApiKeyError, GetApiKeyErrors, GetApiKeyResponse, GetApiKeyResponses, GetApprovalData, GetApprovalErrors, GetApprovalResponse, GetApprovalResponses, GetAuditEntryData, GetAuditEntryErrors, GetAuditEntryResponse, GetAuditEntryResponses, GetChainData, GetChainErrors, GetChainResponse, GetChainResponses, GetChannelConversationData, GetChannelConversationError, GetChannelConversationErrors, GetChannelConversationResponse, GetChannelConversationResponses, GetChannelData, GetChannelError, GetChannelErrors, GetChannelResponse, GetChannelResponses, GetChannelRouteData, GetChannelRouteError, GetChannelRouteErrors, GetChannelRouteResponse, GetChannelRouteResponses, GetConversationData, GetConversationError, GetConversationErrors, GetConversationResponse, GetConversationResponses, GetConversationTagsData, GetConversationTagsError, GetConversationTagsErrors, GetConversationTagsResponse, GetConversationTagsResponses, GetCurrentUserBillingData, GetCurrentUserBillingError, GetCurrentUserBillingErrors, GetCurrentUserBillingResponse, GetCurrentUserBillingResponses, GetCurrentUserData, GetCurrentUserError, GetCurrentUserErrors, GetCurrentUserResponse, GetCurrentUserResponses, GetCurrentUserUsageData, GetCurrentUserUsageError, GetCurrentUserUsageErrors, GetCurrentUserUsageResponse, GetCurrentUserUsageResponses, GetDatasetData, GetDatasetErrors, GetDatasetResponse, GetDatasetResponses, GetDocumentData, GetDocumentError, GetDocumentErrors, GetDocumentResponse, GetDocumentResponses, GetDocumentStatusData, GetDocumentStatusError, GetDocumentStatusErrors, GetDocumentStatusResponse, GetDocumentStatusResponses, GetDocumentTagsData, GetDocumentTagsError, GetDocumentTagsErrors, GetDocumentTagsResponse, GetDocumentTagsResponses, GetEvalData, GetEvalErrors, GetEvalResponse, GetEvalResponses, GetEvalRunData, GetEvalRunErrors, GetEvalRunResponse, GetEvalRunResponses, GetExceptionData, GetExceptionErrors, GetExceptionResponse, GetExceptionResponses, GetFileData, GetFileError, GetFileErrors, GetFileResponse, GetFileResponses, GetFileTagsData, GetFileTagsError, GetFileTagsErrors, GetFileTagsResponse, GetFileTagsResponses, GetFormationData, GetFormationErrors, GetFormationResponse, GetFormationResponses, GetGenerationData, GetGenerationError, GetGenerationErrors, GetGenerationResponse, GetGenerationResponses, GetGenerationTranscriptData, GetGenerationTranscriptError, GetGenerationTranscriptErrors, GetGenerationTranscriptResponse, GetGenerationTranscriptResponses, GetGuardrailData, GetGuardrailError, GetGuardrailErrors, GetGuardrailResponse, GetGuardrailResponses, GetGuardrailVersionData, GetGuardrailVersionError, GetGuardrailVersionErrors, GetGuardrailVersionResponse, GetGuardrailVersionResponses, GetIngestionRuleData, GetIngestionRuleErrors, GetIngestionRuleResponse, GetIngestionRuleResponses, GetMemoryData, GetMemoryErrors, GetMemoryResponse, GetMemoryResponses, GetMemoryStoreData, GetMemoryStoreErrors, GetMemoryStoreResponse, GetMemoryStoreResponses, GetMemoryStoreTagsData, GetMemoryStoreTagsErrors, GetMemoryStoreTagsResponse, GetMemoryStoreTagsResponses, GetMemoryTagsData, GetMemoryTagsErrors, GetMemoryTagsResponse, GetMemoryTagsResponses, GetModelData, GetModelError, GetModelErrors, GetModelResponse, GetModelResponses, GetModelRouteData, GetModelRouteErrors, GetModelRouteResponse, GetModelRouteResponses, GetOrchestrationData, GetOrchestrationErrors, GetOrchestrationResponse, GetOrchestrationResponses, GetOrchestrationRunData, GetOrchestrationRunErrors, GetOrchestrationRunResponse, GetOrchestrationRunResponses, GetOrchestrationVersionData, GetOrchestrationVersionErrors, GetOrchestrationVersionResponse, GetOrchestrationVersionResponses, GetProjectData, GetProjectError, GetProjectErrors, GetProjectResponse, GetProjectResponses, GetProjectUsageData, GetProjectUsageError, GetProjectUsageErrors, GetProjectUsageReceiptData, GetProjectUsageReceiptError, GetProjectUsageReceiptErrors, GetProjectUsageReceiptResponse, GetProjectUsageReceiptResponses, GetProjectUsageResponse, GetProjectUsageResponses, GetQueueStatsData, GetQueueStatsErrors, GetQueueStatsResponse, GetQueueStatsResponses, GetQuotaData, GetQuotaErrors, GetQuotaResponse, GetQuotaResponses, GetSecretData, GetSecretErrors, GetSecretResponse, GetSecretResponses, GetSessionData, GetSessionError, GetSessionErrors, GetSessionResponse, GetSessionResponses, GetSessionTagsData, GetSessionTagsError, GetSessionTagsErrors, GetSessionTagsResponse, GetSessionTagsResponses, GetTaskData, GetTaskErrors, GetTaskHistoryData, GetTaskHistoryErrors, GetTaskHistoryResponse, GetTaskHistoryResponses, GetTaskResponse, GetTaskResponses, GetToolData, GetToolError, GetToolErrors, GetToolResponse, GetToolResponses, GetTraceData, GetTraceError, GetTraceErrors, GetTraceResponse, GetTraceResponses, GetTraceTreeData, GetTraceTreeError, GetTraceTreeErrors, GetTraceTreeResponse, GetTraceTreeResponses, GetTriggerData, GetTriggerErrors, GetTriggerFiringData, GetTriggerFiringErrors, GetTriggerFiringResponse, GetTriggerFiringResponses, GetTriggerResponse, GetTriggerResponses, GetTriggerSecretData, GetTriggerSecretErrors, GetTriggerSecretResponse, GetTriggerSecretResponses, GetWebhookData, GetWebhookDeliveryData, GetWebhookDeliveryError, GetWebhookDeliveryErrors, GetWebhookDeliveryResponse, GetWebhookDeliveryResponses, GetWebhookError, GetWebhookErrors, GetWebhookResponse, GetWebhookResponses, GetWorkflowData, GetWorkflowErrors, GetWorkflowResponse, GetWorkflowResponses, GetWorkflowVersionData, GetWorkflowVersionErrors, GetWorkflowVersionResponse, GetWorkflowVersionResponses, GrantId, GrantUserCreditData, GrantUserCreditError, GrantUserCreditErrors, GrantUserCreditResponse, GrantUserCreditResponses, GrantUserPlanData, GrantUserPlanError, GrantUserPlanErrors, GrantUserPlanResponse, GrantUserPlanResponses, GrantableProjectRole, Guardrail, GuardrailDocument, GuardrailEvaluation, GuardrailResourceProperties, GuardrailVersion, HumanInputRequest, IdempotencyKey, Identifier, IngestDocumentData, IngestDocumentError, IngestDocumentErrors, IngestDocumentResponse, IngestDocumentResponses, IngestedDocumentRecord, IngestionRule, IngestionRuleResourceProperties, JsonLogicScorer, KnowledgeResult, Limit, LinkToken, ListActivityData, ListActivityErrors, ListActivityResponse, ListActivityResponses, ListActorsData, ListActorsError, ListActorsErrors, ListActorsResponse, ListActorsResponses, ListAddressConversationsData, ListAddressConversationsError, ListAddressConversationsErrors, ListAddressConversationsResponse, ListAddressConversationsResponses, ListAddressesData, ListAddressesError, ListAddressesErrors, ListAddressesResponse, ListAddressesResponses, ListAgentVersionsData, ListAgentVersionsError, ListAgentVersionsErrors, ListAgentVersionsResponse, ListAgentVersionsResponses, ListAgentsData, ListAgentsError, ListAgentsErrors, ListAgentsResponse, ListAgentsResponses, ListAiProviderModelsData, ListAiProviderModelsErrors, ListAiProviderModelsResponse, ListAiProviderModelsResponses, ListAiProvidersData, ListAiProvidersErrors, ListAiProvidersResponse, ListAiProvidersResponses, ListApiKeysData, ListApiKeysError, ListApiKeysErrors, ListApiKeysResponse, ListApiKeysResponses, ListApprovalRecurrencesData, ListApprovalRecurrencesErrors, ListApprovalRecurrencesResponse, ListApprovalRecurrencesResponses, ListApprovalsData, ListApprovalsErrors, ListApprovalsResponse, ListApprovalsResponses, ListAssistantGrantsData, ListAssistantGrantsError, ListAssistantGrantsErrors, ListAssistantGrantsResponse, ListAssistantGrantsResponses, ListAuditEntriesData, ListAuditEntriesErrors, ListAuditEntriesResponse, ListAuditEntriesResponses, ListChainsData, ListChainsErrors, ListChainsResponse, ListChainsResponses, ListChannelConversationMessagesData, ListChannelConversationMessagesError, ListChannelConversationMessagesErrors, ListChannelConversationMessagesResponse, ListChannelConversationMessagesResponses, ListChannelConversationsData, ListChannelConversationsError, ListChannelConversationsErrors, ListChannelConversationsResponse, ListChannelConversationsResponses, ListChannelKindsData, ListChannelKindsError, ListChannelKindsErrors, ListChannelKindsResponse, ListChannelKindsResponses, ListChannelRoutesData, ListChannelRoutesError, ListChannelRoutesErrors, ListChannelRoutesResponse, ListChannelRoutesResponses, ListChannelsData, ListChannelsError, ListChannelsErrors, ListChannelsResponse, ListChannelsResponses, ListConversationMessagesData, ListConversationMessagesError, ListConversationMessagesErrors, ListConversationMessagesResponse, ListConversationMessagesResponses, ListConversationsData, ListConversationsError, ListConversationsErrors, ListConversationsResponse, ListConversationsResponses, ListDatasetItemsData, ListDatasetItemsErrors, ListDatasetItemsResponse, ListDatasetItemsResponses, ListDatasetsData, ListDatasetsErrors, ListDatasetsResponse, ListDatasetsResponses, ListDocumentsData, ListDocumentsError, ListDocumentsErrors, ListDocumentsResponse, ListDocumentsResponses, ListEvalResultsData, ListEvalResultsErrors, ListEvalResultsResponse, ListEvalResultsResponses, ListEvalRunsData, ListEvalRunsErrors, ListEvalRunsResponse, ListEvalRunsResponses, ListEvalsData, ListEvalsErrors, ListEvalsResponse, ListEvalsResponses, ListExceptionsData, ListExceptionsErrors, ListExceptionsResponse, ListExceptionsResponses, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, ListFormationEventsData, ListFormationEventsErrors, ListFormationEventsResponse, ListFormationEventsResponses, ListFormationsData, ListFormationsErrors, ListFormationsResponse, ListFormationsResponses, ListGenerationsData, ListGenerationsError, ListGenerationsErrors, ListGenerationsResponse, ListGenerationsResponses, ListGuardrailVersionsData, ListGuardrailVersionsError, ListGuardrailVersionsErrors, ListGuardrailVersionsResponse, ListGuardrailVersionsResponses, ListGuardrailsData, ListGuardrailsError, ListGuardrailsErrors, ListGuardrailsResponse, ListGuardrailsResponses, ListIngestionRulesData, ListIngestionRulesErrors, ListIngestionRulesResponse, ListIngestionRulesResponses, ListMemoriesData, ListMemoriesErrors, ListMemoriesResponse, ListMemoriesResponses, ListMemoryAssertionsData, ListMemoryAssertionsErrors, ListMemoryAssertionsResponse, ListMemoryAssertionsResponses, ListMemoryStoreAssertionsData, ListMemoryStoreAssertionsErrors, ListMemoryStoreAssertionsResponse, ListMemoryStoreAssertionsResponses, ListMemoryStoresData, ListMemoryStoresErrors, ListMemoryStoresResponse, ListMemoryStoresResponses, ListModelRoutesData, ListModelRoutesErrors, ListModelRoutesResponse, ListModelRoutesResponses, ListModelsData, ListModelsError, ListModelsErrors, ListModelsResponse, ListModelsResponses, ListOrchestrationRunsData, ListOrchestrationRunsErrors, ListOrchestrationRunsResponse, ListOrchestrationRunsResponses, ListOrchestrationVersionsData, ListOrchestrationVersionsErrors, ListOrchestrationVersionsResponse, ListOrchestrationVersionsResponses, ListOrchestrationsData, ListOrchestrationsErrors, ListOrchestrationsResponse, ListOrchestrationsResponses, ListProjectChannelRoutesData, ListProjectChannelRoutesError, ListProjectChannelRoutesErrors, ListProjectChannelRoutesResponse, ListProjectChannelRoutesResponses, ListProjectMembersData, ListProjectMembersError, ListProjectMembersErrors, ListProjectMembersResponse, ListProjectMembersResponses, ListProjectUsageEventsData, ListProjectUsageEventsError, ListProjectUsageEventsErrors, ListProjectUsageEventsResponse, ListProjectUsageEventsResponses, ListProjectUsageThresholdsData, ListProjectUsageThresholdsError, ListProjectUsageThresholdsErrors, ListProjectUsageThresholdsResponse, ListProjectUsageThresholdsResponses, ListProjectsData, ListProjectsError, ListProjectsErrors, ListProjectsResponse, ListProjectsResponses, ListQuotasData, ListQuotasErrors, ListQuotasResponse, ListQuotasResponses, ListSecretsData, ListSecretsErrors, ListSecretsResponse, ListSecretsResponses, ListSessionForksData, ListSessionForksError, ListSessionForksErrors, ListSessionForksResponse, ListSessionForksResponses, ListSessionsData, ListSessionsError, ListSessionsErrors, ListSessionsResponse, ListSessionsResponses, ListTasksData, ListTasksErrors, ListTasksResponse, ListTasksResponses, ListToolsData, ListToolsError, ListToolsErrors, ListToolsResponse, ListToolsResponses, ListTracesData, ListTracesError, ListTracesErrors, ListTracesResponse, ListTracesResponses, ListTriggerFiringsData, ListTriggerFiringsErrors, ListTriggerFiringsResponse, ListTriggerFiringsResponses, ListTriggersData, ListTriggersErrors, ListTriggersResponse, ListTriggersResponses, ListUserCreditsData, ListUserCreditsError, ListUserCreditsErrors, ListUserCreditsResponse, ListUserCreditsResponses, ListUserPlanHistoryData, ListUserPlanHistoryError, ListUserPlanHistoryErrors, ListUserPlanHistoryResponse, ListUserPlanHistoryResponses, ListUsersData, ListUsersError, ListUsersErrors, ListUsersResponse, ListUsersResponses, ListWebhookDeliveriesData, ListWebhookDeliveriesError, ListWebhookDeliveriesErrors, ListWebhookDeliveriesResponse, ListWebhookDeliveriesResponses, ListWebhooksData, ListWebhooksError, ListWebhooksErrors, ListWebhooksResponse, ListWebhooksResponses, ListWorkflowVersionsData, ListWorkflowVersionsErrors, ListWorkflowVersionsResponse, ListWorkflowVersionsResponses, ListWorkflowsData, ListWorkflowsErrors, ListWorkflowsResponse, ListWorkflowsResponses, LlmJudgeScorer, LogoutData, LogoutError, LogoutErrors, LogoutRequest, LogoutResponse, LogoutResponses, Memory, MemoryAssertion, MemoryKnowledgeResult, MemoryResourceProperties, MemoryStore, MemoryStoreResourceProperties, MemoryWriteResult, MergeActorTagsData, MergeActorTagsError, MergeActorTagsErrors, MergeActorTagsResponse, MergeActorTagsResponses, MergeConversationTagsData, MergeConversationTagsError, MergeConversationTagsErrors, MergeConversationTagsResponse, MergeConversationTagsResponses, MergeDocumentTagsData, MergeDocumentTagsError, MergeDocumentTagsErrors, MergeDocumentTagsResponse, MergeDocumentTagsResponses, MergeFileTagsData, MergeFileTagsError, MergeFileTagsErrors, MergeFileTagsResponse, MergeFileTagsResponses, MergeMemoryStoreTagsData, MergeMemoryStoreTagsErrors, MergeMemoryStoreTagsResponse, MergeMemoryStoreTagsResponses, MergeMemoryTagsData, MergeMemoryTagsErrors, MergeMemoryTagsResponse, MergeMemoryTagsResponses, MergeSessionTagsData, MergeSessionTagsError, MergeSessionTagsErrors, MergeSessionTagsResponse, MergeSessionTagsResponses, MessagesLimit, Model, ModelList, ModelName, ModelRoute, ModelRouteResourceProperties, ModelRouteTarget, NaturaliClientOptions, NodeExecution, NullableTagBag, Offset, OpenChannelConversationData, OpenChannelConversationError, OpenChannelConversationErrors, OpenChannelConversationResponse, OpenChannelConversationResponses, Options, Orchestration, OrchestrationEdge, OrchestrationId, OrchestrationNode, OrchestrationResourceProperties, OrchestrationRun, OrchestrationRunId, OrchestrationVersion, OutputSchemaScorer, ParameterDeclaration, PatchAgentData, PatchAgentError, PatchAgentErrors, PatchAgentResponse, PatchAgentResponses, PauseOrchestrationRunData, PauseOrchestrationRunErrors, PauseOrchestrationRunRequest, PauseOrchestrationRunResponse, PauseOrchestrationRunResponses, PauseTaskData, PauseTaskErrors, PauseTaskRequest, PauseTaskResponse, PauseTaskResponses, PlanChange, PlanEvent, PlanEventPage, PlanFormationData, PlanFormationErrors, PlanFormationResponse, PlanFormationResponses, PlanResult, PreviewAssistantLinkData, PreviewAssistantLinkError, PreviewAssistantLinkErrors, PreviewAssistantLinkResponse, PreviewAssistantLinkResponses, Price, PriceBook, Project, ProjectCreate, ProjectId, ProjectList, ProjectMember, ProjectMemberCreate, ProjectMemberList, ProjectMemberUpdate, ProjectRole, ProjectRuns, ProjectUpdate, ProjectUsage, ProjectUsageDistinct, ProjectUsageEvent, ProjectUsageEventPage, ProjectUsageFilters, ProjectUsageGroups, ProjectUsageReceipt, PromoteAgentReleaseData, PromoteAgentReleaseError, PromoteAgentReleaseErrors, PromoteAgentReleaseResponse, PromoteAgentReleaseResponses, ProviderModelsResponse, ProviderPrice, ProviderPricesResponse, PurgeGenerationContentData, PurgeGenerationContentError, PurgeGenerationContentErrors, PurgeGenerationContentResponse, PurgeGenerationContentResponses, PurgeTraceContentData, PurgeTraceContentError, PurgeTraceContentErrors, PurgeTraceContentResponse, PurgeTraceContentResponses, QueueStats, Quota, QuotaResourceProperties, RedeemAssistantLinkData, RedeemAssistantLinkError, RedeemAssistantLinkErrors, RedeemAssistantLinkResponse, RedeemAssistantLinkResponses, RedeliverWebhookDeliveryData, RedeliverWebhookDeliveryError, RedeliverWebhookDeliveryErrors, RedeliverWebhookDeliveryResponse, RedeliverWebhookDeliveryResponses, RefreshRequest, RefreshSessionData, RefreshSessionError, RefreshSessionErrors, RefreshSessionResponse, RefreshSessionResponses, ReingestDocumentData, ReingestDocumentError, ReingestDocumentErrors, ReingestDocumentResponse, ReingestDocumentResponses, RejectApprovalData, RejectApprovalErrors, RejectApprovalResponse, RejectApprovalResponses, RemoveConversationMessageData, RemoveConversationMessageError, RemoveConversationMessageErrors, RemoveConversationMessageResponse, RemoveConversationMessageResponses, RemoveProjectMemberData, RemoveProjectMemberError, RemoveProjectMemberErrors, RemoveProjectMemberResponse, RemoveProjectMemberResponses, ReplaceActorTagsData, ReplaceActorTagsError, ReplaceActorTagsErrors, ReplaceActorTagsResponse, ReplaceActorTagsResponses, ReplaceConversationTagsData, ReplaceConversationTagsError, ReplaceConversationTagsErrors, ReplaceConversationTagsResponse, ReplaceConversationTagsResponses, ReplaceDocumentTagsData, ReplaceDocumentTagsError, ReplaceDocumentTagsErrors, ReplaceDocumentTagsResponse, ReplaceDocumentTagsResponses, ReplaceFileTagsData, ReplaceFileTagsError, ReplaceFileTagsErrors, ReplaceFileTagsResponse, ReplaceFileTagsResponses, ReplaceMemoryStoreTagsData, ReplaceMemoryStoreTagsErrors, ReplaceMemoryStoreTagsResponse, ReplaceMemoryStoreTagsResponses, ReplaceMemoryTagsData, ReplaceMemoryTagsErrors, ReplaceMemoryTagsResponse, ReplaceMemoryTagsResponses, ReplaceSessionTagsData, ReplaceSessionTagsError, ReplaceSessionTagsErrors, ReplaceSessionTagsResponse, ReplaceSessionTagsResponses, RequestSignInCodeData, RequestSignInCodeError, RequestSignInCodeErrors, RequestSignInCodeResponse, RequestSignInCodeResponses, RequiredAction, ResolveExceptionData, ResolveExceptionErrors, ResolveExceptionResponse, ResolveExceptionResponses, ResourceDeclaration, RestoreAgentVersionData, RestoreAgentVersionError, RestoreAgentVersionErrors, RestoreAgentVersionRequest, RestoreAgentVersionResponse, RestoreAgentVersionResponses, RestoreGuardrailVersionData, RestoreGuardrailVersionError, RestoreGuardrailVersionErrors, RestoreGuardrailVersionRequest, RestoreGuardrailVersionResponse, RestoreGuardrailVersionResponses, RestoreOrchestrationVersionData, RestoreOrchestrationVersionErrors, RestoreOrchestrationVersionRequest, RestoreOrchestrationVersionResponse, RestoreOrchestrationVersionResponses, RestoreWorkflowVersionData, RestoreWorkflowVersionErrors, RestoreWorkflowVersionRequest, RestoreWorkflowVersionResponse, RestoreWorkflowVersionResponses, ResumeOrchestrationRunData, ResumeOrchestrationRunErrors, ResumeOrchestrationRunResponse, ResumeOrchestrationRunResponses, ResumeTaskData, ResumeTaskErrors, ResumeTaskResponse, ResumeTaskResponses, RevokeAssistantGrantData, RevokeAssistantGrantError, RevokeAssistantGrantErrors, RevokeAssistantGrantResponse, RevokeAssistantGrantResponses, RotateApiKeyData, RotateApiKeyError, RotateApiKeyErrors, RotateApiKeyResponse, RotateApiKeyResponses, RotateTriggerSecretData, RotateTriggerSecretErrors, RotateTriggerSecretResponse, RotateTriggerSecretResponses, RotateWebhookSecretData, RotateWebhookSecretError, RotateWebhookSecretErrors, RotateWebhookSecretResponse, RotateWebhookSecretResponses, RouteId, ScorerResult, Scorers, SearchKnowledgeData, SearchKnowledgeError, SearchKnowledgeErrors, SearchKnowledgeResponse, SearchKnowledgeResponses, SecretResourceProperties, SendSessionMessageResponse, SessionId, SessionRecord, SessionResourceProperties, SetAddressActionData, SetAddressActionError, SetAddressActionErrors, SetAddressActionResponse, SetAddressActionResponses, SetAgentReleaseData, SetAgentReleaseError, SetAgentReleaseErrors, SetAgentReleaseRequest, SetAgentReleaseResponse, SetAgentReleaseResponses, SignInCodeRequest, SignInCodeVerify, StartEvalRunData, StartEvalRunErrors, StartEvalRunResponse, StartEvalRunResponses, StartOrchestrationRunData, StartOrchestrationRunErrors, StartOrchestrationRunRequest, StartOrchestrationRunResponse, StartOrchestrationRunResponses, SubmitAgentToolOutputsData, SubmitAgentToolOutputsError, SubmitAgentToolOutputsErrors, SubmitAgentToolOutputsResponse, SubmitAgentToolOutputsResponses, SubmitHumanInputData, SubmitHumanInputErrors, SubmitHumanInputResponse, SubmitHumanInputResponses, SubmitSessionToolOutputsData, SubmitSessionToolOutputsError, SubmitSessionToolOutputsErrors, SubmitSessionToolOutputsRequest, SubmitSessionToolOutputsResponse, SubmitSessionToolOutputsResponses, SubmitToolOutputsRequest, TagBag, TagsQuery, Task, TaskTransition, Tool, ToolBinding, ToolOutputMessageContent, ToolResourceProperties, ToolScorer, Trace, TraceTreeNode, TranscriptStep, TranscriptToolCall, TranscriptToolResult, TransitionTaskData, TransitionTaskErrors, TransitionTaskRequest, TransitionTaskResponse, TransitionTaskResponses, Trigger, TriggerFiring, TriggerFiringListResponse, TriggerResourceProperties, TriggerSecretResponse, TriggerWithSecret, UnauthorizedFormationAction, UpdateActorData, UpdateActorError, UpdateActorErrors, UpdateActorResponse, UpdateActorResponses, UpdateAgentData, UpdateAgentError, UpdateAgentErrors, UpdateAgentRequest, UpdateAgentResponse, UpdateAgentResponses, UpdateAiProviderData, UpdateAiProviderErrors, UpdateAiProviderPricesData, UpdateAiProviderPricesErrors, UpdateAiProviderPricesResponse, UpdateAiProviderPricesResponses, UpdateAiProviderResponses, UpdateApiKeyData, UpdateApiKeyError, UpdateApiKeyErrors, UpdateApiKeyResponse, UpdateApiKeyResponses, UpdateChannelData, UpdateChannelError, UpdateChannelErrors, UpdateChannelResponse, UpdateChannelResponses, UpdateChannelRouteData, UpdateChannelRouteError, UpdateChannelRouteErrors, UpdateChannelRouteResponse, UpdateChannelRouteResponses, UpdateConversationData, UpdateConversationError, UpdateConversationErrors, UpdateConversationResponse, UpdateConversationResponses, UpdateCurrentUserData, UpdateCurrentUserError, UpdateCurrentUserErrors, UpdateCurrentUserResponse, UpdateCurrentUserResponses, UpdateDatasetData, UpdateDatasetErrors, UpdateDatasetItemData, UpdateDatasetItemErrors, UpdateDatasetItemResponse, UpdateDatasetItemResponses, UpdateDatasetResponse, UpdateDatasetResponses, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateEvalData, UpdateEvalErrors, UpdateEvalResponse, UpdateEvalResponses, UpdateFileMetadataData, UpdateFileMetadataError, UpdateFileMetadataErrors, UpdateFileMetadataResponse, UpdateFileMetadataResponses, UpdateFormationData, UpdateFormationErrors, UpdateFormationResponse, UpdateFormationResponses, UpdateGenerationData, UpdateGenerationError, UpdateGenerationErrors, UpdateGenerationRequest, UpdateGenerationResponse, UpdateGenerationResponses, UpdateGuardrailData, UpdateGuardrailError, UpdateGuardrailErrors, UpdateGuardrailRequest, UpdateGuardrailResponse, UpdateGuardrailResponses, UpdateIngestionRuleData, UpdateIngestionRuleErrors, UpdateIngestionRuleResponse, UpdateIngestionRuleResponses, UpdateMemoryData, UpdateMemoryErrors, UpdateMemoryResponse, UpdateMemoryResponses, UpdateMemoryStoreData, UpdateMemoryStoreErrors, UpdateMemoryStoreResponse, UpdateMemoryStoreResponses, UpdateModelRouteData, UpdateModelRouteErrors, UpdateModelRouteResponse, UpdateModelRouteResponses, UpdateOrchestrationData, UpdateOrchestrationErrors, UpdateOrchestrationRequest, UpdateOrchestrationResponse, UpdateOrchestrationResponses, UpdateProjectData, UpdateProjectError, UpdateProjectErrors, UpdateProjectMemberData, UpdateProjectMemberError, UpdateProjectMemberErrors, UpdateProjectMemberResponse, UpdateProjectMemberResponses, UpdateProjectResponse, UpdateProjectResponses, UpdateQuotaData, UpdateQuotaErrors, UpdateQuotaResponse, UpdateQuotaResponses, UpdateSecretData, UpdateSecretErrors, UpdateSecretResponses, UpdateSessionData, UpdateSessionError, UpdateSessionErrors, UpdateSessionRequest, UpdateSessionResponse, UpdateSessionResponses, UpdateTaskData, UpdateTaskErrors, UpdateTaskRequest, UpdateTaskResponse, UpdateTaskResponses, UpdateToolData, UpdateToolError, UpdateToolErrors, UpdateToolRequest, UpdateToolResponse, UpdateToolResponses, UpdateTriggerData, UpdateTriggerErrors, UpdateTriggerRequest, UpdateTriggerResponse, UpdateTriggerResponses, UpdateUserRolesData, UpdateUserRolesError, UpdateUserRolesErrors, UpdateUserRolesResponse, UpdateUserRolesResponses, UpdateWebhookData, UpdateWebhookError, UpdateWebhookErrors, UpdateWebhookResponse, UpdateWebhookResponses, UpdateWorkflowData, UpdateWorkflowErrors, UpdateWorkflowRequest, UpdateWorkflowResponse, UpdateWorkflowResponses, UploadFileBase64Data, UploadFileBase64Error, UploadFileBase64Errors, UploadFileBase64Request, UploadFileBase64Response, UploadFileBase64Responses, UploadFileData, UploadFileError, UploadFileErrors, UploadFileResponse, UploadFileResponses, UpsertProviderPricesRequest, UsageActionId, UsageActorId, UsageAgentId, UsageAiProviderId, UsageComponent, UsageComponents, UsageEventComponent, UsageGenerationId, UsageGroup, UsageMeterType, UsageOrchestrationId, UsageOrchestrationRunId, UsageSessionId, UsageSource, UsageThreshold, UsageThresholdCreate, UsageTokens, UsageTotals, UsageTraceId, UsageTriggerId, User, UserBilling, UserPlanGrant, UserRolesUpdate, UserUpdate, UserUsage, ValidateFormationData, ValidateFormationErrors, ValidateFormationResponse, ValidateFormationResponses, ValidateOrchestrationData, ValidateOrchestrationErrors, ValidateOrchestrationRequest, ValidateOrchestrationResponse, ValidateOrchestrationResponses, ValidationError, ValidationResult, VerifySignInCodeData, VerifySignInCodeError, VerifySignInCodeErrors, VerifySignInCodeResponse, VerifySignInCodeResponses, Webhook, WebhookCreate, WebhookDelivery, WebhookDeliveryList, WebhookId, WebhookList, WebhookUpdate, WebhookWithSecret, Workflow, WorkflowResourceProperties, WorkflowState, WorkflowTransition, WorkflowVersion };
|
|
23351
|
+
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, AgentBoundaryPolicy, AgentBoundaryPolicyStatement, AgentGenerationResponse, AgentRelease, AgentResourceProperties, AgentStepRule, AgentStopCondition, 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, CreateMemoryRuleData, CreateMemoryRuleErrors, CreateMemoryRuleResponse, CreateMemoryRuleResponses, 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, DeleteMemoryRuleData, DeleteMemoryRuleErrors, DeleteMemoryRuleResponse, DeleteMemoryRuleResponses, 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, GetMemoryRuleData, GetMemoryRuleErrors, GetMemoryRuleResponse, GetMemoryRuleResponses, GetMemoryStoreData, GetMemoryStoreErrors, GetMemoryStoreResponse, GetMemoryStoreResponses, GetMemoryStoreTagsData, GetMemoryStoreTagsErrors, GetMemoryStoreTagsResponse, GetMemoryStoreTagsResponses, GetMemoryTagsData, GetMemoryTagsErrors, GetMemoryTagsResponse, GetMemoryTagsResponses, GetModelData, GetModelError, GetModelErrors, GetModelResponse, GetModelResponses, GetModelRouteData, GetModelRouteErrors, GetModelRouteResponse, GetModelRouteResponses, GetOrchestrationData, GetOrchestrationErrors, GetOrchestrationResponse, GetOrchestrationResponses, GetOrchestrationRunData, GetOrchestrationRunErrors, GetOrchestrationRunResponse, GetOrchestrationRunResponses, GetOrchestrationVersionData, GetOrchestrationVersionErrors, GetOrchestrationVersionResponse, GetOrchestrationVersionResponses, GetProjectData, GetProjectError, GetProjectErrors, GetProjectResponse, GetProjectResponses, GetProjectUsageData, GetProjectUsageError, GetProjectUsageErrors, GetProjectUsageReceiptData, GetProjectUsageReceiptError, GetProjectUsageReceiptErrors, GetProjectUsageReceiptResponse, GetProjectUsageReceiptResponses, GetProjectUsageResponse, GetProjectUsageResponses, GetQueueStatsData, GetQueueStatsErrors, GetQueueStatsResponse, GetQueueStatsResponses, GetQuotaData, GetQuotaErrors, GetQuotaResponse, GetQuotaResponses, GetSecretData, GetSecretErrors, GetSecretResponse, GetSecretResponses, GetSessionData, GetSessionError, GetSessionErrors, GetSessionResponse, GetSessionResponses, GetSessionTagsData, GetSessionTagsError, GetSessionTagsErrors, GetSessionTagsResponse, GetSessionTagsResponses, GetTaskData, GetTaskErrors, GetTaskHistoryData, GetTaskHistoryErrors, GetTaskHistoryResponse, GetTaskHistoryResponses, GetTaskResponse, GetTaskResponses, GetToolData, GetToolError, GetToolErrors, GetToolResponse, GetToolResponses, GetTraceData, GetTraceError, GetTraceErrors, GetTraceResponse, GetTraceResponses, GetTraceTreeData, GetTraceTreeError, GetTraceTreeErrors, GetTraceTreeResponse, GetTraceTreeResponses, GetTriggerData, GetTriggerErrors, GetTriggerFiringData, GetTriggerFiringErrors, GetTriggerFiringResponse, GetTriggerFiringResponses, GetTriggerResponse, GetTriggerResponses, GetTriggerSecretData, GetTriggerSecretErrors, GetTriggerSecretResponse, GetTriggerSecretResponses, GetWebhookData, GetWebhookDeliveryData, GetWebhookDeliveryError, GetWebhookDeliveryErrors, GetWebhookDeliveryResponse, GetWebhookDeliveryResponses, GetWebhookError, GetWebhookErrors, GetWebhookResponse, GetWebhookResponses, GetWorkflowData, GetWorkflowErrors, GetWorkflowResponse, GetWorkflowResponses, GetWorkflowVersionData, GetWorkflowVersionErrors, GetWorkflowVersionResponse, GetWorkflowVersionResponses, GrantId, GrantUserCreditData, GrantUserCreditError, GrantUserCreditErrors, GrantUserCreditResponse, GrantUserCreditResponses, GrantUserPlanData, GrantUserPlanError, GrantUserPlanErrors, GrantUserPlanResponse, GrantUserPlanResponses, GrantableProjectRole, Guardrail, GuardrailDocument, GuardrailEvaluation, GuardrailResourceProperties, GuardrailVersion, HumanInputRequest, IdempotencyKey, Identifier, IngestDocumentData, IngestDocumentError, IngestDocumentErrors, IngestDocumentResponse, IngestDocumentResponses, IngestedDocumentRecord, IngestionRule, IngestionRuleResourceProperties, JsonLogicScorer, KnowledgeResult, Limit, LinkToken, ListActivityData, ListActivityErrors, ListActivityResponse, ListActivityResponses, ListActorsData, ListActorsError, ListActorsErrors, ListActorsResponse, ListActorsResponses, ListAddressConversationsData, ListAddressConversationsError, ListAddressConversationsErrors, ListAddressConversationsResponse, ListAddressConversationsResponses, ListAddressesData, ListAddressesError, ListAddressesErrors, ListAddressesResponse, ListAddressesResponses, ListAgentVersionsData, ListAgentVersionsError, ListAgentVersionsErrors, ListAgentVersionsResponse, ListAgentVersionsResponses, ListAgentsData, ListAgentsError, ListAgentsErrors, ListAgentsResponse, ListAgentsResponses, ListAiProviderModelsData, ListAiProviderModelsErrors, ListAiProviderModelsResponse, ListAiProviderModelsResponses, ListAiProvidersData, ListAiProvidersErrors, ListAiProvidersResponse, ListAiProvidersResponses, ListApiKeysData, ListApiKeysError, ListApiKeysErrors, ListApiKeysResponse, ListApiKeysResponses, ListApprovalRecurrencesData, ListApprovalRecurrencesErrors, ListApprovalRecurrencesResponse, ListApprovalRecurrencesResponses, ListApprovalsData, ListApprovalsErrors, ListApprovalsResponse, ListApprovalsResponses, ListAssistantGrantsData, ListAssistantGrantsError, ListAssistantGrantsErrors, ListAssistantGrantsResponse, ListAssistantGrantsResponses, ListAuditEntriesData, ListAuditEntriesErrors, ListAuditEntriesResponse, ListAuditEntriesResponses, ListChainsData, ListChainsErrors, ListChainsResponse, ListChainsResponses, ListChannelConversationMessagesData, ListChannelConversationMessagesError, ListChannelConversationMessagesErrors, ListChannelConversationMessagesResponse, ListChannelConversationMessagesResponses, ListChannelConversationsData, ListChannelConversationsError, ListChannelConversationsErrors, ListChannelConversationsResponse, ListChannelConversationsResponses, ListChannelKindsData, ListChannelKindsError, ListChannelKindsErrors, ListChannelKindsResponse, ListChannelKindsResponses, ListChannelRoutesData, ListChannelRoutesError, ListChannelRoutesErrors, ListChannelRoutesResponse, ListChannelRoutesResponses, ListChannelsData, ListChannelsError, ListChannelsErrors, ListChannelsResponse, ListChannelsResponses, ListConversationMessagesData, ListConversationMessagesError, ListConversationMessagesErrors, ListConversationMessagesResponse, ListConversationMessagesResponses, ListConversationsData, ListConversationsError, ListConversationsErrors, ListConversationsResponse, ListConversationsResponses, ListDatasetItemsData, ListDatasetItemsErrors, ListDatasetItemsResponse, ListDatasetItemsResponses, ListDatasetsData, ListDatasetsErrors, ListDatasetsResponse, ListDatasetsResponses, ListDocumentsData, ListDocumentsError, ListDocumentsErrors, ListDocumentsResponse, ListDocumentsResponses, ListEvalResultsData, ListEvalResultsErrors, ListEvalResultsResponse, ListEvalResultsResponses, ListEvalRunsData, ListEvalRunsErrors, ListEvalRunsResponse, ListEvalRunsResponses, ListEvalsData, ListEvalsErrors, ListEvalsResponse, ListEvalsResponses, ListExceptionsData, ListExceptionsErrors, ListExceptionsResponse, ListExceptionsResponses, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, ListFormationEventsData, ListFormationEventsErrors, ListFormationEventsResponse, ListFormationEventsResponses, ListFormationsData, ListFormationsErrors, ListFormationsResponse, ListFormationsResponses, ListGenerationsData, ListGenerationsError, ListGenerationsErrors, ListGenerationsResponse, ListGenerationsResponses, ListGuardrailVersionsData, ListGuardrailVersionsError, ListGuardrailVersionsErrors, ListGuardrailVersionsResponse, ListGuardrailVersionsResponses, ListGuardrailsData, ListGuardrailsError, ListGuardrailsErrors, ListGuardrailsResponse, ListGuardrailsResponses, ListIngestionRulesData, ListIngestionRulesErrors, ListIngestionRulesResponse, ListIngestionRulesResponses, ListMemoriesData, ListMemoriesErrors, ListMemoriesResponse, ListMemoriesResponses, ListMemoryAssertionsData, ListMemoryAssertionsErrors, ListMemoryAssertionsResponse, ListMemoryAssertionsResponses, ListMemoryRulesData, ListMemoryRulesErrors, ListMemoryRulesResponse, ListMemoryRulesResponses, ListMemoryStoreAssertionsData, ListMemoryStoreAssertionsErrors, ListMemoryStoreAssertionsResponse, ListMemoryStoreAssertionsResponses, ListMemoryStoresData, ListMemoryStoresErrors, ListMemoryStoresResponse, ListMemoryStoresResponses, ListModelRoutesData, ListModelRoutesErrors, ListModelRoutesResponse, ListModelRoutesResponses, ListModelsData, ListModelsError, ListModelsErrors, ListModelsResponse, ListModelsResponses, ListOrchestrationRunsData, ListOrchestrationRunsErrors, ListOrchestrationRunsResponse, ListOrchestrationRunsResponses, ListOrchestrationVersionsData, ListOrchestrationVersionsErrors, ListOrchestrationVersionsResponse, ListOrchestrationVersionsResponses, ListOrchestrationsData, ListOrchestrationsErrors, ListOrchestrationsResponse, ListOrchestrationsResponses, ListProjectChannelRoutesData, ListProjectChannelRoutesError, ListProjectChannelRoutesErrors, ListProjectChannelRoutesResponse, ListProjectChannelRoutesResponses, ListProjectMembersData, ListProjectMembersError, ListProjectMembersErrors, ListProjectMembersResponse, ListProjectMembersResponses, ListProjectUsageEventsData, ListProjectUsageEventsError, ListProjectUsageEventsErrors, ListProjectUsageEventsResponse, ListProjectUsageEventsResponses, ListProjectUsageThresholdsData, ListProjectUsageThresholdsError, ListProjectUsageThresholdsErrors, ListProjectUsageThresholdsResponse, ListProjectUsageThresholdsResponses, ListProjectsData, ListProjectsError, ListProjectsErrors, ListProjectsResponse, ListProjectsResponses, ListQuotasData, ListQuotasErrors, ListQuotasResponse, ListQuotasResponses, ListSecretsData, ListSecretsErrors, ListSecretsResponse, ListSecretsResponses, ListSessionForksData, ListSessionForksError, ListSessionForksErrors, ListSessionForksResponse, ListSessionForksResponses, ListSessionsData, ListSessionsError, ListSessionsErrors, ListSessionsResponse, ListSessionsResponses, ListTasksData, ListTasksErrors, ListTasksResponse, ListTasksResponses, ListToolsData, ListToolsError, ListToolsErrors, ListToolsResponse, ListToolsResponses, ListTracesData, ListTracesError, ListTracesErrors, ListTracesResponse, ListTracesResponses, ListTriggerFiringsData, ListTriggerFiringsErrors, ListTriggerFiringsResponse, ListTriggerFiringsResponses, ListTriggersData, ListTriggersErrors, ListTriggersResponse, ListTriggersResponses, ListUserCreditsData, ListUserCreditsError, ListUserCreditsErrors, ListUserCreditsResponse, ListUserCreditsResponses, ListUserPlanHistoryData, ListUserPlanHistoryError, ListUserPlanHistoryErrors, ListUserPlanHistoryResponse, ListUserPlanHistoryResponses, ListUsersData, ListUsersError, ListUsersErrors, ListUsersResponse, ListUsersResponses, ListWebhookDeliveriesData, ListWebhookDeliveriesError, ListWebhookDeliveriesErrors, ListWebhookDeliveriesResponse, ListWebhookDeliveriesResponses, ListWebhooksData, ListWebhooksError, ListWebhooksErrors, ListWebhooksResponse, ListWebhooksResponses, ListWorkflowVersionsData, ListWorkflowVersionsErrors, ListWorkflowVersionsResponse, ListWorkflowVersionsResponses, ListWorkflowsData, ListWorkflowsErrors, ListWorkflowsResponse, ListWorkflowsResponses, LlmJudgeScorer, LogoutData, LogoutError, LogoutErrors, LogoutRequest, LogoutResponse, LogoutResponses, Memory, MemoryAssertion, MemoryKnowledgeResult, MemoryResourceProperties, MemoryRule, MemoryRuleEvent, MemoryRuleResourceProperties, 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, ToolExecuteAuthConfig, ToolExecuteConfig, ToolMcpConfig, 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, UpdateMemoryRuleData, UpdateMemoryRuleErrors, UpdateMemoryRuleResponse, UpdateMemoryRuleResponses, 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 };
|