@soat/sdk 0.13.6 → 0.13.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -467,7 +467,7 @@ type Agent = {
467
467
  };
468
468
  } | null;
469
469
  /**
470
- * Deep-thinking configuration. `effort` forwards provider-native reasoning; `mode: reflect` critiques and revises; `mode: debate` runs multiple perspectives then synthesizes.
470
+ * Deep-thinking configuration. `effort` forwards provider-native reasoning; `mode: pipeline` runs an ordered list of reasoning steps after the base draft. reflect and debate are expressed as pipelines — see the Agents module docs.
471
471
  */
472
472
  reasoning?: {
473
473
  /**
@@ -475,56 +475,63 @@ type Agent = {
475
475
  */
476
476
  effort?: 'low' | 'medium' | 'high';
477
477
  /**
478
- * Orchestrated reasoning strategy. `reflect` drafts, critiques, and revises. `debate` runs multiple perspectives then synthesizes. Applies to non-streaming completed generations only.
478
+ * Orchestrated reasoning strategy. `pipeline` runs an ordered list of reasoning steps after the base draft. Applies to non-streaming completed generations only.
479
479
  */
480
- mode?: 'none' | 'reflect' | 'debate';
480
+ mode?: 'none' | 'pipeline';
481
481
  /**
482
- * Reflect only — overrides for the critique pass.
482
+ * Pipeline only — ordered reasoning steps run after the base draft. The output step (`output: true`, else the last) produces the final answer. Prompts support `{question}`, `{draft}`, and `{steps.<name>}`. reflect and debate are expressed as step configs — see the Agents module docs.
483
483
  */
484
- critique?: {
484
+ steps?: Array<{
485
485
  /**
486
- * AI provider override for the critique call. Must belong to the agent's project.
486
+ * Unique step name; referenced as `{steps.<name>}`.
487
487
  */
488
- ai_provider_id?: string;
488
+ name: string;
489
489
  /**
490
- * Model override for the critique call.
490
+ * `completion` (default) runs one call; `fanout` runs N perspectives over rounds.
491
491
  */
492
- model?: string;
492
+ kind?: 'completion' | 'fanout';
493
493
  /**
494
- * Replaces the default critique instructions.
494
+ * Prompt template supporting `{question}`, `{draft}`, and `{steps.<name>}`.
495
495
  */
496
- prompt?: string;
497
- };
498
- /**
499
- * Debate only — number of auto-generated perspectives (2–5) or an array of explicit perspective objects.
500
- */
501
- perspectives?: number | Array<{
502
- name?: string;
503
- prompt?: string;
504
- ai_provider_id?: string;
505
- model?: string;
506
- }>;
507
- /**
508
- * Debate only — rounds of perspective turns. Default 1, max 3.
509
- */
510
- max_rounds?: number;
511
- /**
512
- * Debate only — override triple for the synthesis pass.
513
- */
514
- synthesis?: {
496
+ prompt: string;
515
497
  /**
516
- * AI provider override for the synthesis call. Must belong to the agent's project.
498
+ * AI provider override for this step. Must belong to the agent's project.
517
499
  */
518
500
  ai_provider_id?: string;
519
501
  /**
520
- * Model override for the synthesis call.
502
+ * Model override for this step.
521
503
  */
522
504
  model?: string;
523
505
  /**
524
- * Replaces the default synthesis instructions.
506
+ * Sampling temperature for this step.
525
507
  */
526
- prompt?: string;
527
- };
508
+ temperature?: number;
509
+ /**
510
+ * Marks the step whose output is the final answer (else the last step).
511
+ */
512
+ output?: boolean;
513
+ /**
514
+ * If the step output equals this string, halt the pipeline and keep the draft.
515
+ */
516
+ halt_if_equals?: string;
517
+ /**
518
+ * Fanout only — number of auto-named perspectives (2–5).
519
+ */
520
+ count?: number;
521
+ /**
522
+ * Fanout only — rounds of perspective turns (default 1, max 3).
523
+ */
524
+ rounds?: number;
525
+ /**
526
+ * Fanout only — explicit perspective objects; overrides count.
527
+ */
528
+ perspectives?: Array<{
529
+ name?: string;
530
+ prompt?: string;
531
+ ai_provider_id?: string;
532
+ model?: string;
533
+ }>;
534
+ }>;
528
535
  } | null;
529
536
  /**
530
537
  * Maximum number of recent messages to include in the context window sent to the model. When null, all messages are included.
@@ -600,7 +607,7 @@ type CreateAgentRequest = {
600
607
  };
601
608
  };
602
609
  /**
603
- * Deep-thinking configuration. `effort` forwards provider-native reasoning; `mode: reflect` critiques and revises; `mode: debate` runs multiple perspectives then synthesizes.
610
+ * Deep-thinking configuration. `effort` forwards provider-native reasoning; `mode: pipeline` runs an ordered list of reasoning steps after the base draft. reflect and debate are expressed as pipelines — see the Agents module docs.
604
611
  */
605
612
  reasoning?: {
606
613
  /**
@@ -608,56 +615,63 @@ type CreateAgentRequest = {
608
615
  */
609
616
  effort?: 'low' | 'medium' | 'high';
610
617
  /**
611
- * Orchestrated reasoning strategy. `reflect` drafts, critiques, and revises. `debate` runs multiple perspectives then synthesizes.
618
+ * Orchestrated reasoning strategy. `pipeline` runs an ordered list of reasoning steps after the base draft.
612
619
  */
613
- mode?: 'none' | 'reflect' | 'debate';
620
+ mode?: 'none' | 'pipeline';
614
621
  /**
615
- * Reflect only — overrides for the critique pass.
622
+ * Pipeline only — ordered reasoning steps run after the base draft. The output step (`output: true`, else the last) produces the final answer. Prompts support `{question}`, `{draft}`, and `{steps.<name>}`. reflect and debate are expressed as step configs — see the Agents module docs.
616
623
  */
617
- critique?: {
624
+ steps?: Array<{
618
625
  /**
619
- * AI provider override for the critique call. Must belong to the agent's project.
626
+ * Unique step name; referenced as `{steps.<name>}`.
620
627
  */
621
- ai_provider_id?: string;
628
+ name: string;
622
629
  /**
623
- * Model override for the critique call.
630
+ * `completion` (default) runs one call; `fanout` runs N perspectives over rounds.
624
631
  */
625
- model?: string;
632
+ kind?: 'completion' | 'fanout';
626
633
  /**
627
- * Replaces the default critique instructions.
634
+ * Prompt template supporting `{question}`, `{draft}`, and `{steps.<name>}`.
628
635
  */
629
- prompt?: string;
630
- };
631
- /**
632
- * Debate only — number of auto-generated perspectives (2–5) or an array of explicit perspective objects.
633
- */
634
- perspectives?: number | Array<{
635
- name?: string;
636
- prompt?: string;
637
- ai_provider_id?: string;
638
- model?: string;
639
- }>;
640
- /**
641
- * Debate only — rounds of perspective turns. Default 1, max 3.
642
- */
643
- max_rounds?: number;
644
- /**
645
- * Debate only — override triple for the synthesis pass.
646
- */
647
- synthesis?: {
636
+ prompt: string;
648
637
  /**
649
- * AI provider override for the synthesis call. Must belong to the agent's project.
638
+ * AI provider override for this step. Must belong to the agent's project.
650
639
  */
651
640
  ai_provider_id?: string;
652
641
  /**
653
- * Model override for the synthesis call.
642
+ * Model override for this step.
654
643
  */
655
644
  model?: string;
656
645
  /**
657
- * Replaces the default synthesis instructions.
646
+ * Sampling temperature for this step.
658
647
  */
659
- prompt?: string;
660
- };
648
+ temperature?: number;
649
+ /**
650
+ * Marks the step whose output is the final answer (else the last step).
651
+ */
652
+ output?: boolean;
653
+ /**
654
+ * If the step output equals this string, halt the pipeline and keep the draft.
655
+ */
656
+ halt_if_equals?: string;
657
+ /**
658
+ * Fanout only — number of auto-named perspectives (2–5).
659
+ */
660
+ count?: number;
661
+ /**
662
+ * Fanout only — rounds of perspective turns (default 1, max 3).
663
+ */
664
+ rounds?: number;
665
+ /**
666
+ * Fanout only — explicit perspective objects; overrides count.
667
+ */
668
+ perspectives?: Array<{
669
+ name?: string;
670
+ prompt?: string;
671
+ ai_provider_id?: string;
672
+ model?: string;
673
+ }>;
674
+ }>;
661
675
  } | null;
662
676
  /**
663
677
  * Maximum number of recent messages included in the context window. Null means no limit.
@@ -724,7 +738,7 @@ type UpdateAgentRequest = {
724
738
  };
725
739
  } | null;
726
740
  /**
727
- * Deep-thinking configuration. `effort` forwards provider-native reasoning; `mode: reflect` critiques and revises; `mode: debate` runs multiple perspectives then synthesizes.
741
+ * Deep-thinking configuration. `effort` forwards provider-native reasoning; `mode: pipeline` runs an ordered list of reasoning steps after the base draft. reflect and debate are expressed as pipelines — see the Agents module docs.
728
742
  */
729
743
  reasoning?: {
730
744
  /**
@@ -732,56 +746,63 @@ type UpdateAgentRequest = {
732
746
  */
733
747
  effort?: 'low' | 'medium' | 'high';
734
748
  /**
735
- * Orchestrated reasoning strategy. `reflect` drafts, critiques, and revises. `debate` runs multiple perspectives then synthesizes.
749
+ * Orchestrated reasoning strategy. `pipeline` runs an ordered list of reasoning steps after the base draft.
736
750
  */
737
- mode?: 'none' | 'reflect' | 'debate';
751
+ mode?: 'none' | 'pipeline';
738
752
  /**
739
- * Reflect only — overrides for the critique pass.
753
+ * Pipeline only — ordered reasoning steps run after the base draft. The output step (`output: true`, else the last) produces the final answer. Prompts support `{question}`, `{draft}`, and `{steps.<name>}`. reflect and debate are expressed as step configs — see the Agents module docs.
740
754
  */
741
- critique?: {
755
+ steps?: Array<{
742
756
  /**
743
- * AI provider override for the critique call. Must belong to the agent's project.
757
+ * Unique step name; referenced as `{steps.<name>}`.
744
758
  */
745
- ai_provider_id?: string;
759
+ name: string;
746
760
  /**
747
- * Model override for the critique call.
761
+ * `completion` (default) runs one call; `fanout` runs N perspectives over rounds.
748
762
  */
749
- model?: string;
763
+ kind?: 'completion' | 'fanout';
750
764
  /**
751
- * Replaces the default critique instructions.
765
+ * Prompt template supporting `{question}`, `{draft}`, and `{steps.<name>}`.
752
766
  */
753
- prompt?: string;
754
- };
755
- /**
756
- * Debate only — number of auto-generated perspectives (2–5) or an array of explicit perspective objects.
757
- */
758
- perspectives?: number | Array<{
759
- name?: string;
760
- prompt?: string;
761
- ai_provider_id?: string;
762
- model?: string;
763
- }>;
764
- /**
765
- * Debate only — rounds of perspective turns. Default 1, max 3.
766
- */
767
- max_rounds?: number;
768
- /**
769
- * Debate only — override triple for the synthesis pass.
770
- */
771
- synthesis?: {
767
+ prompt: string;
772
768
  /**
773
- * AI provider override for the synthesis call. Must belong to the agent's project.
769
+ * AI provider override for this step. Must belong to the agent's project.
774
770
  */
775
771
  ai_provider_id?: string;
776
772
  /**
777
- * Model override for the synthesis call.
773
+ * Model override for this step.
778
774
  */
779
775
  model?: string;
780
776
  /**
781
- * Replaces the default synthesis instructions.
777
+ * Sampling temperature for this step.
782
778
  */
783
- prompt?: string;
784
- };
779
+ temperature?: number;
780
+ /**
781
+ * Marks the step whose output is the final answer (else the last step).
782
+ */
783
+ output?: boolean;
784
+ /**
785
+ * If the step output equals this string, halt the pipeline and keep the draft.
786
+ */
787
+ halt_if_equals?: string;
788
+ /**
789
+ * Fanout only — number of auto-named perspectives (2–5).
790
+ */
791
+ count?: number;
792
+ /**
793
+ * Fanout only — rounds of perspective turns (default 1, max 3).
794
+ */
795
+ rounds?: number;
796
+ /**
797
+ * Fanout only — explicit perspective objects; overrides count.
798
+ */
799
+ perspectives?: Array<{
800
+ name?: string;
801
+ prompt?: string;
802
+ ai_provider_id?: string;
803
+ model?: string;
804
+ }>;
805
+ }>;
785
806
  } | null;
786
807
  /**
787
808
  * Maximum number of recent messages included in the context window. Null means no limit.
@@ -834,54 +855,61 @@ type CreateAgentGenerationRequest = {
834
855
  /**
835
856
  * Orchestrated reasoning strategy for this generation.
836
857
  */
837
- mode?: 'none' | 'reflect' | 'debate';
858
+ mode?: 'none' | 'pipeline';
838
859
  /**
839
- * Reflect only — overrides for the critique pass.
860
+ * Pipeline only — ordered reasoning steps for this generation. The output step (`output: true`, else the last) produces the final answer. Prompts support `{question}`, `{draft}`, and `{steps.<name>}`.
840
861
  */
841
- critique?: {
862
+ steps?: Array<{
842
863
  /**
843
- * AI provider override for the critique call. Must belong to the agent's project.
864
+ * Unique step name; referenced as `{steps.<name>}`.
844
865
  */
845
- ai_provider_id?: string;
866
+ name: string;
846
867
  /**
847
- * Model override for the critique call.
868
+ * `completion` (default) runs one call; `fanout` runs N perspectives over rounds.
848
869
  */
849
- model?: string;
870
+ kind?: 'completion' | 'fanout';
850
871
  /**
851
- * Replaces the default critique instructions.
872
+ * Prompt template supporting `{question}`, `{draft}`, and `{steps.<name>}`.
852
873
  */
853
- prompt?: string;
854
- };
855
- /**
856
- * Debate only — number of auto-generated perspectives (2–5) or an array of explicit perspective objects.
857
- */
858
- perspectives?: number | Array<{
859
- name?: string;
860
- prompt?: string;
861
- ai_provider_id?: string;
862
- model?: string;
863
- }>;
864
- /**
865
- * Debate only — rounds of perspective turns. Default 1, max 3.
866
- */
867
- max_rounds?: number;
868
- /**
869
- * Debate only — override triple for the synthesis pass.
870
- */
871
- synthesis?: {
874
+ prompt: string;
872
875
  /**
873
- * AI provider override for the synthesis call. Must belong to the agent's project.
876
+ * AI provider override for this step. Must belong to the agent's project.
874
877
  */
875
878
  ai_provider_id?: string;
876
879
  /**
877
- * Model override for the synthesis call.
880
+ * Model override for this step.
878
881
  */
879
882
  model?: string;
880
883
  /**
881
- * Replaces the default synthesis instructions.
884
+ * Sampling temperature for this step.
882
885
  */
883
- prompt?: string;
884
- };
886
+ temperature?: number;
887
+ /**
888
+ * Marks the step whose output is the final answer (else the last step).
889
+ */
890
+ output?: boolean;
891
+ /**
892
+ * If the step output equals this string, halt the pipeline and keep the draft.
893
+ */
894
+ halt_if_equals?: string;
895
+ /**
896
+ * Fanout only — number of auto-named perspectives (2–5).
897
+ */
898
+ count?: number;
899
+ /**
900
+ * Fanout only — rounds of perspective turns (default 1, max 3).
901
+ */
902
+ rounds?: number;
903
+ /**
904
+ * Fanout only — explicit perspective objects; overrides count.
905
+ */
906
+ perspectives?: Array<{
907
+ name?: string;
908
+ prompt?: string;
909
+ ai_provider_id?: string;
910
+ model?: string;
911
+ }>;
912
+ }>;
885
913
  } | null;
886
914
  };
887
915
  type ToolOutputMessageContent = {
@@ -1281,6 +1309,36 @@ type IngestedDocumentRecord = DocumentRecord & {
1281
1309
  */
1282
1310
  chunk_count?: number;
1283
1311
  };
1312
+ type DocumentStatusRecord = {
1313
+ /**
1314
+ * Document ID
1315
+ */
1316
+ id?: string;
1317
+ /**
1318
+ * Ingestion lifecycle state.
1319
+ */
1320
+ status?: 'pending' | 'processing' | 'ready' | 'failed';
1321
+ /**
1322
+ * Number of chunks **currently indexed** for this document (a live count). Grows while `status=processing` and equals the final total once `ready`; `0` while `pending`.
1323
+ */
1324
+ chunk_count?: number;
1325
+ /**
1326
+ * Planned total number of chunks, known once chunking begins. `null` until then. Used as the denominator for `progress`.
1327
+ */
1328
+ total_chunks?: number | null;
1329
+ /**
1330
+ * Number of source pages extracted. Only known after extraction, so it is `null` until `status` is `ready` or `failed` (not the same as zero pages).
1331
+ */
1332
+ total_pages?: number | null;
1333
+ /**
1334
+ * Ingestion progress as a percentage (`chunk_count / total_chunks`). `0` while `pending`, climbs while `processing` (capped at 99), `100` when `ready`, and `null` when `failed` or not yet computable.
1335
+ */
1336
+ progress?: number | null;
1337
+ /**
1338
+ * Failure reason when `status` is `failed` (e.g. `FILE_PARSE_FAILED`, `INGESTION_TIMEOUT`).
1339
+ */
1340
+ error?: string | null;
1341
+ };
1284
1342
  /**
1285
1343
  * Response containing generated embeddings. Fields present depend on whether `input` or `inputs` was provided.
1286
1344
  */
@@ -1344,7 +1402,7 @@ type PresignedUrlResponse = {
1344
1402
  */
1345
1403
  upload_token?: string;
1346
1404
  /**
1347
- * Fully-qualified URL to POST the file content to (absolute when SERVER_BASE_URL is configured, relative otherwise).
1405
+ * Fully-qualified URL to POST the file content to (absolute when SOAT_BASE_URL is configured, relative otherwise).
1348
1406
  */
1349
1407
  upload_url?: string;
1350
1408
  /**
@@ -1617,7 +1675,7 @@ type AgentResourceProperties = {
1617
1675
  };
1618
1676
  } | null;
1619
1677
  /**
1620
- * Deep-thinking configuration. `effort` forwards provider-native reasoning; `mode: reflect` critiques and revises; `mode: debate` runs multiple perspectives then synthesizes.
1678
+ * Deep-thinking configuration. `effort` forwards provider-native reasoning; `mode: pipeline` runs an ordered list of reasoning steps after the base draft. reflect and debate are expressed as pipelines — see the Agents module docs.
1621
1679
  */
1622
1680
  reasoning?: {
1623
1681
  /**
@@ -1627,54 +1685,61 @@ type AgentResourceProperties = {
1627
1685
  /**
1628
1686
  * Orchestrated reasoning strategy.
1629
1687
  */
1630
- mode?: 'none' | 'reflect' | 'debate';
1688
+ mode?: 'none' | 'pipeline';
1631
1689
  /**
1632
- * Reflect only — overrides for the critique pass.
1690
+ * Pipeline only — ordered reasoning steps run after the base draft. The output step (`output: true`, else the last) produces the final answer.
1633
1691
  */
1634
- critique?: {
1692
+ steps?: Array<{
1635
1693
  /**
1636
- * AI provider override for the critique call. Must belong to the agent's project.
1694
+ * Unique step name; referenced as `{steps.<name>}`.
1637
1695
  */
1638
- ai_provider_id?: string;
1696
+ name: string;
1639
1697
  /**
1640
- * Model override for the critique call.
1698
+ * `completion` (default) runs one call; `fanout` runs N perspectives over rounds.
1641
1699
  */
1642
- model?: string;
1700
+ kind?: 'completion' | 'fanout';
1643
1701
  /**
1644
- * Replaces the default critique instructions.
1702
+ * Prompt template supporting `{question}`, `{draft}`, and `{steps.<name>}`.
1645
1703
  */
1646
- prompt?: string;
1647
- };
1648
- /**
1649
- * Debate only — number of auto-generated perspectives (2–5) or an array of explicit perspective objects.
1650
- */
1651
- perspectives?: number | Array<{
1652
- name?: string;
1653
- prompt?: string;
1654
- ai_provider_id?: string;
1655
- model?: string;
1656
- }>;
1657
- /**
1658
- * Debate only — rounds of perspective turns. Default 1, max 3.
1659
- */
1660
- max_rounds?: number;
1661
- /**
1662
- * Debate only — override triple for the synthesis pass.
1663
- */
1664
- synthesis?: {
1704
+ prompt: string;
1665
1705
  /**
1666
- * AI provider override for the synthesis call. Must belong to the agent's project.
1706
+ * AI provider override for this step. Must belong to the agent's project.
1667
1707
  */
1668
1708
  ai_provider_id?: string;
1669
1709
  /**
1670
- * Model override for the synthesis call.
1710
+ * Model override for this step.
1671
1711
  */
1672
1712
  model?: string;
1673
1713
  /**
1674
- * Replaces the default synthesis instructions.
1714
+ * Sampling temperature for this step.
1675
1715
  */
1676
- prompt?: string;
1677
- };
1716
+ temperature?: number;
1717
+ /**
1718
+ * Marks the step whose output is the final answer (else the last step).
1719
+ */
1720
+ output?: boolean;
1721
+ /**
1722
+ * If the step output equals this string, halt the pipeline and keep the draft.
1723
+ */
1724
+ halt_if_equals?: string;
1725
+ /**
1726
+ * Fanout only — number of auto-named perspectives (2–5).
1727
+ */
1728
+ count?: number;
1729
+ /**
1730
+ * Fanout only — rounds of perspective turns (default 1, max 3).
1731
+ */
1732
+ rounds?: number;
1733
+ /**
1734
+ * Fanout only — explicit perspective objects; overrides count.
1735
+ */
1736
+ perspectives?: Array<{
1737
+ name?: string;
1738
+ prompt?: string;
1739
+ ai_provider_id?: string;
1740
+ model?: string;
1741
+ }>;
1742
+ }>;
1678
1743
  } | null;
1679
1744
  };
1680
1745
  /**
@@ -2185,7 +2250,7 @@ type Generation = {
2185
2250
  */
2186
2251
  trace_id?: string;
2187
2252
  /**
2188
- * Public ID of the generation that triggered this one. Set for debate perspective/synthesis child generations and sub-agent invocations alike. Null for top-level generations.
2253
+ * Public ID of the generation that triggered this one. Set for reasoning pipeline child generations and sub-agent invocations alike. Null for top-level generations.
2189
2254
  *
2190
2255
  */
2191
2256
  initiator_generation_id?: string | null;
@@ -3185,7 +3250,7 @@ type TraceTreeNode = {
3185
3250
  */
3186
3251
  children?: Array<TraceTreeNode>;
3187
3252
  /**
3188
- * Generations that belong to this trace node. Only present when `include=generations` is requested. Includes top-level generations and debate child generations (perspective turns and synthesis steps) linked via `initiator_generation_id`.
3253
+ * Generations that belong to this trace node. Only present when `include=generations` is requested. Includes top-level generations and reasoning pipeline child generations (steps and perspective turns) linked via `initiator_generation_id`.
3189
3254
  *
3190
3255
  */
3191
3256
  generations?: Array<Generation>;
@@ -3781,6 +3846,36 @@ type GetAgentResponses = {
3781
3846
  200: Agent;
3782
3847
  };
3783
3848
  type GetAgentResponse = GetAgentResponses[keyof GetAgentResponses];
3849
+ type PatchAgentData = {
3850
+ body: UpdateAgentRequest;
3851
+ path: {
3852
+ agent_id: string;
3853
+ };
3854
+ query?: never;
3855
+ url: '/api/v1/agents/{agent_id}';
3856
+ };
3857
+ type PatchAgentErrors = {
3858
+ /**
3859
+ * Unauthorized
3860
+ */
3861
+ 401: ErrorResponse;
3862
+ /**
3863
+ * Forbidden
3864
+ */
3865
+ 403: ErrorResponse;
3866
+ /**
3867
+ * Not found
3868
+ */
3869
+ 404: ErrorResponse;
3870
+ };
3871
+ type PatchAgentError = PatchAgentErrors[keyof PatchAgentErrors];
3872
+ type PatchAgentResponses = {
3873
+ /**
3874
+ * Agent updated
3875
+ */
3876
+ 200: Agent;
3877
+ };
3878
+ type PatchAgentResponse = PatchAgentResponses[keyof PatchAgentResponses];
3784
3879
  type UpdateAgentData = {
3785
3880
  body: UpdateAgentRequest;
3786
3881
  path: {
@@ -5101,6 +5196,10 @@ type IngestDocumentErrors = {
5101
5196
  * Forbidden
5102
5197
  */
5103
5198
  403: ErrorResponse;
5199
+ /**
5200
+ * The file is too large to ingest synchronously (`?async=false`). Retry in async mode and poll the document status.
5201
+ */
5202
+ 413: ErrorResponse;
5104
5203
  };
5105
5204
  type IngestDocumentError = IngestDocumentErrors[keyof IngestDocumentErrors];
5106
5205
  type IngestDocumentResponses = {
@@ -5238,6 +5337,98 @@ type UpdateDocumentResponses = {
5238
5337
  200: DocumentRecord;
5239
5338
  };
5240
5339
  type UpdateDocumentResponse = UpdateDocumentResponses[keyof UpdateDocumentResponses];
5340
+ type GetDocumentStatusData = {
5341
+ body?: never;
5342
+ path: {
5343
+ /**
5344
+ * Document ID
5345
+ */
5346
+ document_id: string;
5347
+ };
5348
+ query?: never;
5349
+ url: '/api/v1/documents/{document_id}/status';
5350
+ };
5351
+ type GetDocumentStatusErrors = {
5352
+ /**
5353
+ * Unauthorized
5354
+ */
5355
+ 401: ErrorResponse;
5356
+ /**
5357
+ * Forbidden
5358
+ */
5359
+ 403: ErrorResponse;
5360
+ /**
5361
+ * Document not found
5362
+ */
5363
+ 404: ErrorResponse;
5364
+ };
5365
+ type GetDocumentStatusError = GetDocumentStatusErrors[keyof GetDocumentStatusErrors];
5366
+ type GetDocumentStatusResponses = {
5367
+ /**
5368
+ * Document ingestion status
5369
+ */
5370
+ 200: DocumentStatusRecord;
5371
+ };
5372
+ type GetDocumentStatusResponse = GetDocumentStatusResponses[keyof GetDocumentStatusResponses];
5373
+ type ReingestDocumentData = {
5374
+ body?: {
5375
+ /**
5376
+ * How to split the source into chunks. Defaults to `page`.
5377
+ */
5378
+ chunk_strategy?: 'page' | 'whole' | 'size';
5379
+ /**
5380
+ * Window size in characters when `chunk_strategy=size`. Defaults to 1000.
5381
+ */
5382
+ chunk_size?: number;
5383
+ /**
5384
+ * Overlap in characters between consecutive windows when `chunk_strategy=size`. Defaults to 200.
5385
+ */
5386
+ chunk_overlap?: number;
5387
+ };
5388
+ path: {
5389
+ /**
5390
+ * Document ID
5391
+ */
5392
+ document_id: string;
5393
+ };
5394
+ query?: {
5395
+ /**
5396
+ * When omitted or `true` (default), processing runs in the background and `202 Accepted` is returned immediately with `status=pending`. Pass `false` to run synchronously and receive `201 Created` with `status=ready`.
5397
+ */
5398
+ async?: boolean;
5399
+ };
5400
+ url: '/api/v1/documents/{document_id}/ingest';
5401
+ };
5402
+ type ReingestDocumentErrors = {
5403
+ /**
5404
+ * Unauthorized
5405
+ */
5406
+ 401: ErrorResponse;
5407
+ /**
5408
+ * Forbidden
5409
+ */
5410
+ 403: ErrorResponse;
5411
+ /**
5412
+ * Document not found
5413
+ */
5414
+ 404: ErrorResponse;
5415
+ /**
5416
+ * The file is too large to re-ingest synchronously (`?async=false`). Retry in async mode.
5417
+ */
5418
+ 413: ErrorResponse;
5419
+ };
5420
+ type ReingestDocumentError = ReingestDocumentErrors[keyof ReingestDocumentErrors];
5421
+ type ReingestDocumentResponses = {
5422
+ /**
5423
+ * Re-ingestion completed synchronously (only when `?async=false`).
5424
+ */
5425
+ 201: IngestedDocumentRecord;
5426
+ /**
5427
+ * Re-ingestion accepted. The document was reset to `status=pending` and processing runs in the background. Poll `GET /api/v1/documents/{document_id}/status`.
5428
+ */
5429
+ 202: IngestedDocumentRecord;
5430
+ };
5431
+ type ReingestDocumentResponse = ReingestDocumentResponses[keyof ReingestDocumentResponses];
5241
5432
  type GetDocumentTagsData = {
5242
5433
  body?: never;
5243
5434
  path: {
@@ -6200,7 +6391,7 @@ type ListGenerationsData = {
6200
6391
  */
6201
6392
  trace_id?: string;
6202
6393
  /**
6203
- * Filter by the public ID of the parent generation. Returns all generations triggered by that generation — debate perspective turns, synthesis steps, and sub-agent invocations. Null-initiated (top-level) generations are not returned.
6394
+ * Filter by the public ID of the parent generation. Returns all generations triggered by that generation — reasoning pipeline steps and perspective turns, and sub-agent invocations. Null-initiated (top-level) generations are not returned.
6204
6395
  *
6205
6396
  */
6206
6397
  initiator_generation_id?: string;
@@ -7387,6 +7578,44 @@ type GetProjectResponses = {
7387
7578
  200: ProjectRecord;
7388
7579
  };
7389
7580
  type GetProjectResponse = GetProjectResponses[keyof GetProjectResponses];
7581
+ type UpdateProjectData = {
7582
+ body: {
7583
+ name: string;
7584
+ };
7585
+ path: {
7586
+ /**
7587
+ * Project public ID (proj_ prefix)
7588
+ */
7589
+ project_id: string;
7590
+ };
7591
+ query?: never;
7592
+ url: '/api/v1/projects/{project_id}';
7593
+ };
7594
+ type UpdateProjectErrors = {
7595
+ /**
7596
+ * Invalid request body
7597
+ */
7598
+ 400: unknown;
7599
+ /**
7600
+ * Unauthorized
7601
+ */
7602
+ 401: unknown;
7603
+ /**
7604
+ * Forbidden (non-admin user)
7605
+ */
7606
+ 403: unknown;
7607
+ /**
7608
+ * Project not found
7609
+ */
7610
+ 404: unknown;
7611
+ };
7612
+ type UpdateProjectResponses = {
7613
+ /**
7614
+ * Project updated successfully
7615
+ */
7616
+ 200: ProjectRecord;
7617
+ };
7618
+ type UpdateProjectResponse = UpdateProjectResponses[keyof UpdateProjectResponses];
7390
7619
  type ListSecretsData = {
7391
7620
  body?: never;
7392
7621
  path?: never;
@@ -8287,7 +8516,7 @@ type GetTraceTreeData = {
8287
8516
  };
8288
8517
  query?: {
8289
8518
  /**
8290
- * Comma-separated list of related resources to embed on each node. Supported value: `generations` — attaches all generations that belong to each trace node (including debate perspective/synthesis children linked via `initiator_generation_id`).
8519
+ * Comma-separated list of related resources to embed on each node. Supported value: `generations` — attaches all generations that belong to each trace node (including reasoning pipeline children linked via `initiator_generation_id`).
8291
8520
  *
8292
8521
  */
8293
8522
  include?: string;
@@ -8888,10 +9117,16 @@ declare class Agents {
8888
9117
  * Returns a single agent by ID.
8889
9118
  */
8890
9119
  static getAgent<ThrowOnError extends boolean = false>(options: Options<GetAgentData, ThrowOnError>): RequestResult<GetAgentResponses, GetAgentErrors, ThrowOnError>;
9120
+ /**
9121
+ * Partially update an agent
9122
+ *
9123
+ * Partially updates an existing agent. Identical to PUT — both perform partial updates.
9124
+ */
9125
+ static patchAgent<ThrowOnError extends boolean = false>(options: Options<PatchAgentData, ThrowOnError>): RequestResult<PatchAgentResponses, PatchAgentErrors, ThrowOnError>;
8891
9126
  /**
8892
9127
  * Update an agent
8893
9128
  *
8894
- * Updates an existing agent.
9129
+ * Updates an existing agent. Identical to PATCH — both perform partial updates.
8895
9130
  */
8896
9131
  static updateAgent<ThrowOnError extends boolean = false>(options: Options<UpdateAgentData, ThrowOnError>): RequestResult<UpdateAgentResponses, UpdateAgentErrors, ThrowOnError>;
8897
9132
  /**
@@ -9135,6 +9370,30 @@ declare class Documents {
9135
9370
  * Updates document content, title, path, metadata, or tags. Supplying `path` moves the document to a new logical path within the project.
9136
9371
  */
9137
9372
  static updateDocument<ThrowOnError extends boolean = false>(options: Options<UpdateDocumentData, ThrowOnError>): RequestResult<UpdateDocumentResponses, UpdateDocumentErrors, ThrowOnError>;
9373
+ /**
9374
+ * Get document ingestion status
9375
+ *
9376
+ * Returns a lightweight ingestion status payload for polling — `status`,
9377
+ * `chunk_count`, `total_pages`, and (when failed) `error`. Unlike
9378
+ * `GET /documents/{document_id}`, it never returns the assembled chunk
9379
+ * content, so it is cheap to poll on large documents. A document whose
9380
+ * ingestion has stalled (no progress past the configured timeout) is
9381
+ * transitioned to `failed` with `error=INGESTION_TIMEOUT` on read.
9382
+ *
9383
+ */
9384
+ static getDocumentStatus<ThrowOnError extends boolean = false>(options: Options<GetDocumentStatusData, ThrowOnError>): RequestResult<GetDocumentStatusResponses, GetDocumentStatusErrors, ThrowOnError>;
9385
+ /**
9386
+ * Re-ingest an existing document
9387
+ *
9388
+ * Re-runs ingestion for an existing document against its already-stored
9389
+ * source file. Existing chunks are discarded and the document is reset to
9390
+ * `status=pending` before re-processing. Use this to recover a document
9391
+ * stuck in `processing`/`failed` or to re-chunk with a different strategy
9392
+ * without re-uploading the file. Async by default (`202`); pass
9393
+ * `?async=false` to run synchronously (`201`).
9394
+ *
9395
+ */
9396
+ static reingestDocument<ThrowOnError extends boolean = false>(options: Options<ReingestDocumentData, ThrowOnError>): RequestResult<ReingestDocumentResponses, ReingestDocumentErrors, ThrowOnError>;
9138
9397
  /**
9139
9398
  * Get document tags
9140
9399
  *
@@ -9193,7 +9452,7 @@ declare class Files {
9193
9452
  /**
9194
9453
  * Create a presigned upload URL
9195
9454
  *
9196
- * Creates a short-lived, single-use presigned upload URL — the local-storage equivalent of an S3 presigned URL. The client then uploads the file content directly to the returned `upload_url` via `POST /api/v1/files/upload/{token}`, bypassing MCP payload size limits. When the server is configured with `SERVER_BASE_URL`, `upload_url` is a fully-qualified absolute URL so MCP agents and other clients can POST to it without knowing the server base URL in advance.
9455
+ * Creates a short-lived, single-use presigned upload URL — the local-storage equivalent of an S3 presigned URL. The client then uploads the file content directly to the returned `upload_url` via `POST /api/v1/files/upload/{token}`, bypassing MCP payload size limits. When the server is configured with `SOAT_BASE_URL`, `upload_url` is a fully-qualified absolute URL so MCP agents and other clients can POST to it without knowing the server base URL in advance.
9197
9456
  */
9198
9457
  static createPresignedUrl<ThrowOnError extends boolean = false>(options: Options<CreatePresignedUrlData, ThrowOnError>): RequestResult<CreatePresignedUrlResponses, CreatePresignedUrlErrors, ThrowOnError>;
9199
9458
  /**
@@ -9529,6 +9788,12 @@ declare class Projects {
9529
9788
  * Returns details of a specific project.
9530
9789
  */
9531
9790
  static getProject<ThrowOnError extends boolean = false>(options: Options<GetProjectData, ThrowOnError>): RequestResult<GetProjectResponses, GetProjectErrors, ThrowOnError>;
9791
+ /**
9792
+ * Rename a project
9793
+ *
9794
+ * Updates a project's name. Requires admin role.
9795
+ */
9796
+ static updateProject<ThrowOnError extends boolean = false>(options: Options<UpdateProjectData, ThrowOnError>): RequestResult<UpdateProjectResponses, UpdateProjectErrors, ThrowOnError>;
9532
9797
  }
9533
9798
  declare class Secrets {
9534
9799
  /**
@@ -9872,4 +10137,4 @@ declare class SoatClient {
9872
10137
  }?: SoatClientOptions);
9873
10138
  }
9874
10139
  //#endregion
9875
- export { type ActorRecord, type ActorResourceProperties, Actors, type AddConversationMessageData, type AddConversationMessageError, type AddConversationMessageErrors, type AddConversationMessageResponse, type AddConversationMessageResponses, type AddSessionMessageData, type AddSessionMessageError, type AddSessionMessageErrors, type AddSessionMessageRequest, type AddSessionMessageResponse, type AddSessionMessageResponse2, type AddSessionMessageResponses, type AddSessionMessageSaved, type Agent, type AgentGenerationResponse, type AgentId, type AgentResourceProperties, Agents, type AiProviderResourceProperties, AiProviders, type ApiKeyCreated, type ApiKeyRecord, type ApiKeyResourceProperties, ApiKeys, type AttachUserPoliciesData, type AttachUserPoliciesError, type AttachUserPoliciesErrors, type AttachUserPoliciesResponse, type AttachUserPoliciesResponses, type BootstrapUserData, type BootstrapUserError, type BootstrapUserErrors, type BootstrapUserResponse, type BootstrapUserResponses, type CallToolData, type CallToolError, type CallToolErrors, type CallToolRequest, type CallToolResponse, type CallToolResponses, type CancelOrchestrationRunData, type CancelOrchestrationRunErrors, type CancelOrchestrationRunResponse, type CancelOrchestrationRunResponses, type Chat, type ChatCompletionChoice, type ChatCompletionForChatRequest, type ChatCompletionRequest, type ChatCompletionResponse, type ChatCompletionResponseMessage, type ChatMessage, type ChatMessageInput, type ChatResourceProperties, Chats, type ClientOptions, type ConversationActorRecord, type ConversationMessageRecord, type ConversationRecord, type ConversationResourceProperties, Conversations, type CreateActorData, type CreateActorError, type CreateActorErrors, type CreateActorResponse, type CreateActorResponses, type CreateAgentData, type CreateAgentError, type CreateAgentErrors, type CreateAgentGenerationData, type CreateAgentGenerationError, type CreateAgentGenerationErrors, type CreateAgentGenerationRequest, type CreateAgentGenerationResponse, type CreateAgentGenerationResponses, type CreateAgentRequest, type CreateAgentResponse, type CreateAgentResponses, type CreateAiProviderData, type CreateAiProviderErrors, type CreateAiProviderResponse, type CreateAiProviderResponses, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyErrors, type CreateApiKeyResponse, type CreateApiKeyResponses, type CreateChatCompletionData, type CreateChatCompletionError, type CreateChatCompletionErrors, type CreateChatCompletionForChatData, type CreateChatCompletionForChatError, type CreateChatCompletionForChatErrors, type CreateChatCompletionForChatResponse, type CreateChatCompletionForChatResponses, type CreateChatCompletionResponse, type CreateChatCompletionResponses, type CreateChatData, type CreateChatError, type CreateChatErrors, type CreateChatRequest, type CreateChatResponse, type CreateChatResponses, type CreateConversationData, type CreateConversationError, type CreateConversationErrors, type CreateConversationResponse, type CreateConversationResponses, type CreateDocumentData, type CreateDocumentError, type CreateDocumentErrors, type CreateDocumentResponse, type CreateDocumentResponses, type CreateEmbeddingsData, type CreateEmbeddingsError, type CreateEmbeddingsErrors, type CreateEmbeddingsResponse, type CreateEmbeddingsResponses, type CreateFileData, type CreateFileError, type CreateFileErrors, type CreateFileResponse, type CreateFileResponses, type CreateFormationData, type CreateFormationErrors, type CreateFormationResponse, type CreateFormationResponses, type CreateMemoryData, type CreateMemoryEntryData, type CreateMemoryEntryErrors, type CreateMemoryEntryResponse, type CreateMemoryEntryResponses, type CreateMemoryErrors, type CreateMemoryResponse, type CreateMemoryResponses, type CreateOrchestrationData, type CreateOrchestrationErrors, type CreateOrchestrationRequest, type CreateOrchestrationResponse, type CreateOrchestrationResponses, type CreatePolicyData, type CreatePolicyError, type CreatePolicyErrors, type CreatePolicyResponse, type CreatePolicyResponses, type CreatePresignedUrlData, type CreatePresignedUrlError, type CreatePresignedUrlErrors, type CreatePresignedUrlResponse, type CreatePresignedUrlResponses, type CreateProjectData, type CreateProjectErrors, type CreateProjectResponse, type CreateProjectResponses, type CreateSecretData, type CreateSecretErrors, type CreateSecretResponse, type CreateSecretResponses, type CreateSessionData, type CreateSessionError, type CreateSessionErrors, type CreateSessionRequest, type CreateSessionResponse, type CreateSessionResponses, type CreateToolData, type CreateToolError, type CreateToolErrors, type CreateToolRequest, type CreateToolResponse, type CreateToolResponses, type CreateUserData, type CreateUserError, type CreateUserErrors, type CreateUserResponse, type CreateUserResponses, type CreateWebhookData, type CreateWebhookErrors, type CreateWebhookRequest, type CreateWebhookResponse, type CreateWebhookResponses, type DeleteActorData, type DeleteActorError, type DeleteActorErrors, type DeleteActorResponse, type DeleteActorResponses, type DeleteAgentData, type DeleteAgentError, type DeleteAgentErrors, type DeleteAgentResponse, type DeleteAgentResponses, type DeleteAiProviderData, type DeleteAiProviderErrors, type DeleteAiProviderResponses, type DeleteApiKeyData, type DeleteApiKeyErrors, type DeleteApiKeyResponse, type DeleteApiKeyResponses, type DeleteChatData, type DeleteChatError, type DeleteChatErrors, type DeleteChatResponse, type DeleteChatResponses, type DeleteConversationData, type DeleteConversationError, type DeleteConversationErrors, type DeleteConversationResponse, type DeleteConversationResponses, type DeleteDocumentData, type DeleteDocumentError, type DeleteDocumentErrors, type DeleteDocumentResponse, type DeleteDocumentResponses, type DeleteFileData, type DeleteFileError, type DeleteFileErrors, type DeleteFileResponse, type DeleteFileResponses, type DeleteFormationData, type DeleteFormationErrors, type DeleteFormationResponse, type DeleteFormationResponses, type DeleteMemoryData, type DeleteMemoryEntryData, type DeleteMemoryEntryErrors, type DeleteMemoryEntryResponse, type DeleteMemoryEntryResponses, type DeleteMemoryErrors, type DeleteMemoryResponse, type DeleteMemoryResponses, type DeleteOrchestrationData, type DeleteOrchestrationErrors, type DeleteOrchestrationResponse, type DeleteOrchestrationResponses, type DeletePolicyData, type DeletePolicyErrors, type DeletePolicyResponse, type DeletePolicyResponses, type DeleteProjectData, type DeleteProjectErrors, type DeleteProjectResponse, type DeleteProjectResponses, type DeleteSecretData, type DeleteSecretErrors, type DeleteSecretResponses, type DeleteSessionData, type DeleteSessionError, type DeleteSessionErrors, type DeleteSessionResponse, type DeleteSessionResponses, type DeleteToolData, type DeleteToolError, type DeleteToolErrors, type DeleteToolResponse, type DeleteToolResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserResponse, type DeleteUserResponses, type DeleteWebhookData, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type Delivery, type DeliveryListResponse, type DocumentKnowledgeResult, type DocumentMessageContent, type DocumentRecord, type DocumentResourceProperties, Documents, type DownloadFileBase64Data, type DownloadFileBase64Error, type DownloadFileBase64Errors, type DownloadFileBase64Response, type DownloadFileBase64Responses, type DownloadFileData, type DownloadFileError, type DownloadFileErrors, type DownloadFileResponse, type DownloadFileResponses, Embeddings, type EmbeddingsResponse, type ErrorResponse, type FileRecord, type FileRecordWritable, type FileResourceProperties, Files, type Formation, type FormationEvent, type FormationOperation, type FormationResource, type FormationTemplate, type FormationTemplateInput, Formations, type GenerateConversationMessageCompleted, type GenerateConversationMessageData, type GenerateConversationMessageError, type GenerateConversationMessageErrors, type GenerateConversationMessageRequiresAction, type GenerateConversationMessageResponse, type GenerateConversationMessageResponse2, type GenerateConversationMessageResponses, type GenerateSessionRequest, type GenerateSessionResponse, type GenerateSessionResponseData, type GenerateSessionResponseError, type GenerateSessionResponseErrors, type GenerateSessionResponseResponse, type GenerateSessionResponseResponses, type Generation, Generations, type GetActorData, type GetActorError, type GetActorErrors, type GetActorResponse, type GetActorResponses, type GetActorTagsData, type GetActorTagsError, type GetActorTagsErrors, type GetActorTagsResponse, type GetActorTagsResponses, type GetAgentData, type GetAgentError, type GetAgentErrors, type GetAgentResponse, type GetAgentResponses, type GetAiProviderData, type GetAiProviderErrors, type GetAiProviderResponse, type GetAiProviderResponses, type GetApiKeyData, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetChatData, type GetChatError, type GetChatErrors, type GetChatResponse, type GetChatResponses, type GetConversationData, type GetConversationError, type GetConversationErrors, type GetConversationResponse, type GetConversationResponses, type GetConversationTagsData, type GetConversationTagsError, type GetConversationTagsErrors, type GetConversationTagsResponse, type GetConversationTagsResponses, type GetCurrentUserData, type GetCurrentUserError, type GetCurrentUserErrors, type GetCurrentUserResponse, type GetCurrentUserResponses, type GetDocumentData, type GetDocumentError, type GetDocumentErrors, type GetDocumentResponse, type GetDocumentResponses, type GetDocumentTagsData, type GetDocumentTagsError, type GetDocumentTagsErrors, type GetDocumentTagsResponse, type GetDocumentTagsResponses, type GetFileData, type GetFileError, type GetFileErrors, type GetFileResponse, type GetFileResponses, type GetFileTagsData, type GetFileTagsError, type GetFileTagsErrors, type GetFileTagsResponse, type GetFileTagsResponses, type GetFormationData, type GetFormationErrors, type GetFormationResponse, type GetFormationResponses, type GetGenerationData, type GetGenerationError, type GetGenerationErrors, type GetGenerationResponse, type GetGenerationResponses, type GetMemoryData, type GetMemoryEntryData, type GetMemoryEntryErrors, type GetMemoryEntryResponse, type GetMemoryEntryResponses, type GetMemoryErrors, type GetMemoryResponse, type GetMemoryResponses, type GetOrchestrationData, type GetOrchestrationErrors, type GetOrchestrationResponse, type GetOrchestrationResponses, type GetOrchestrationRunData, type GetOrchestrationRunErrors, type GetOrchestrationRunResponse, type GetOrchestrationRunResponses, type GetPolicyData, type GetPolicyErrors, type GetPolicyResponse, type GetPolicyResponses, type GetProjectData, type GetProjectErrors, type GetProjectResponse, type GetProjectResponses, type GetSecretData, type GetSecretErrors, type GetSecretResponse, type GetSecretResponses, type GetSessionData, type GetSessionError, type GetSessionErrors, type GetSessionResponse, type GetSessionResponses, type GetSessionTagsData, type GetSessionTagsError, type GetSessionTagsErrors, type GetSessionTagsResponse, type GetSessionTagsResponses, type GetToolData, type GetToolError, type GetToolErrors, type GetToolResponse, type GetToolResponses, type GetTraceData, type GetTraceError, type GetTraceErrors, type GetTraceResponse, type GetTraceResponses, type GetTraceTreeData, type GetTraceTreeError, type GetTraceTreeErrors, type GetTraceTreeResponse, type GetTraceTreeResponses, type GetUserData, type GetUserError, type GetUserErrors, type GetUserResponse, type GetUserResponses, type GetWebhookData, type GetWebhookDeliveryData, type GetWebhookDeliveryErrors, type GetWebhookDeliveryResponse, type GetWebhookDeliveryResponses, type GetWebhookErrors, type GetWebhookResponse, type GetWebhookResponses, type GetWebhookSecretData, type GetWebhookSecretErrors, type GetWebhookSecretResponse, type GetWebhookSecretResponses, type HumanInputRequest, type IngestDocumentData, type IngestDocumentError, type IngestDocumentErrors, type IngestDocumentResponse, type IngestDocumentResponses, type IngestedDocumentRecord, Knowledge, type KnowledgeResult, type ListActorsData, type ListActorsError, type ListActorsErrors, type ListActorsResponse, type ListActorsResponses, type ListAgentsData, type ListAgentsError, type ListAgentsErrors, type ListAgentsResponse, type ListAgentsResponses, type ListAiProvidersData, type ListAiProvidersErrors, type ListAiProvidersResponse, type ListAiProvidersResponses, type ListApiKeysData, type ListApiKeysErrors, type ListApiKeysResponse, type ListApiKeysResponses, type ListChatsData, type ListChatsError, type ListChatsErrors, type ListChatsResponse, type ListChatsResponses, type ListConversationMessagesData, type ListConversationMessagesError, type ListConversationMessagesErrors, type ListConversationMessagesResponse, type ListConversationMessagesResponses, type ListConversationsData, type ListConversationsError, type ListConversationsErrors, type ListConversationsResponse, type ListConversationsResponses, type ListDocumentsData, type ListDocumentsError, type ListDocumentsErrors, type ListDocumentsResponse, type ListDocumentsResponses, type ListFilesData, type ListFilesError, type ListFilesErrors, type ListFilesResponse, type ListFilesResponses, type ListFormationEventsData, type ListFormationEventsErrors, type ListFormationEventsResponse, type ListFormationEventsResponses, type ListFormationsData, type ListFormationsErrors, type ListFormationsResponse, type ListFormationsResponses, type ListGenerationsData, type ListGenerationsError, type ListGenerationsErrors, type ListGenerationsResponse, type ListGenerationsResponses, type ListMemoriesData, type ListMemoriesErrors, type ListMemoriesResponse, type ListMemoriesResponses, type ListMemoryEntriesData, type ListMemoryEntriesErrors, type ListMemoryEntriesResponse, type ListMemoryEntriesResponses, type ListOrchestrationRunsData, type ListOrchestrationRunsErrors, type ListOrchestrationRunsResponse, type ListOrchestrationRunsResponses, type ListOrchestrationsData, type ListOrchestrationsErrors, type ListOrchestrationsResponse, type ListOrchestrationsResponses, type ListPoliciesData, type ListPoliciesErrors, type ListPoliciesResponse, type ListPoliciesResponses, type ListProjectsData, type ListProjectsErrors, type ListProjectsResponse, type ListProjectsResponses, type ListSecretsData, type ListSecretsErrors, type ListSecretsResponse, type ListSecretsResponses, type ListSessionsData, type ListSessionsError, type ListSessionsErrors, type ListSessionsResponse, type ListSessionsResponses, type ListToolsData, type ListToolsError, type ListToolsErrors, type ListToolsResponse, type ListToolsResponses, type ListTracesData, type ListTracesError, type ListTracesErrors, type ListTracesResponse, type ListTracesResponses, type ListUsersData, type ListUsersError, type ListUsersErrors, type ListUsersResponse, type ListUsersResponses, type ListWebhookDeliveriesData, type ListWebhookDeliveriesErrors, type ListWebhookDeliveriesResponse, type ListWebhookDeliveriesResponses, type ListWebhooksData, type ListWebhooksErrors, type ListWebhooksResponse, type ListWebhooksResponses, type LoginResponse, type LoginUserData, type LoginUserError, type LoginUserErrors, type LoginUserResponse, type LoginUserResponses, Memories, type Memory, MemoryEntries, type MemoryEntry, type MemoryEntryResourceProperties, type MemoryEntryWriteResult, type MemoryKnowledgeResult, type MemoryResourceProperties, type MergeActorTagsData, type MergeActorTagsError, type MergeActorTagsErrors, type MergeActorTagsResponse, type MergeActorTagsResponses, type MergeConversationTagsData, type MergeConversationTagsError, type MergeConversationTagsErrors, type MergeConversationTagsResponse, type MergeConversationTagsResponses, type MergeDocumentTagsData, type MergeDocumentTagsError, type MergeDocumentTagsErrors, type MergeDocumentTagsResponse, type MergeDocumentTagsResponses, type MergeFileTagsData, type MergeFileTagsError, type MergeFileTagsErrors, type MergeFileTagsResponse, type MergeFileTagsResponses, type MergeSessionTagsData, type MergeSessionTagsError, type MergeSessionTagsErrors, type MergeSessionTagsResponse, type MergeSessionTagsResponses, type NodeExecution, type Options, type Orchestration, type OrchestrationEdge, type OrchestrationId, type OrchestrationNode, type OrchestrationRun, Orchestrations, type ParameterDeclaration, type PlanChange, type PlanFormationData, type PlanFormationErrors, type PlanFormationResponse, type PlanFormationResponses, type PlanResult, Policies, type PolicyDocument, type PolicyRecord, type PolicyResourceProperties, type PolicyStatement, type PresignedUrlRequest, type PresignedUrlResponse, type ProjectRecord, Projects, type RemoveConversationMessageData, type RemoveConversationMessageError, type RemoveConversationMessageErrors, type RemoveConversationMessageResponse, type RemoveConversationMessageResponses, type ReplaceActorTagsData, type ReplaceActorTagsError, type ReplaceActorTagsErrors, type ReplaceActorTagsResponse, type ReplaceActorTagsResponses, type ReplaceConversationTagsData, type ReplaceConversationTagsError, type ReplaceConversationTagsErrors, type ReplaceConversationTagsResponse, type ReplaceConversationTagsResponses, type ReplaceDocumentTagsData, type ReplaceDocumentTagsError, type ReplaceDocumentTagsErrors, type ReplaceDocumentTagsResponse, type ReplaceDocumentTagsResponses, type ReplaceFileTagsData, type ReplaceFileTagsError, type ReplaceFileTagsErrors, type ReplaceFileTagsResponse, type ReplaceFileTagsResponses, type ReplaceSessionTagsData, type ReplaceSessionTagsError, type ReplaceSessionTagsErrors, type ReplaceSessionTagsResponse, type ReplaceSessionTagsResponses, type RequiredAction, type ResourceDeclaration, type ResumeOrchestrationRunData, type ResumeOrchestrationRunErrors, type ResumeOrchestrationRunResponse, type ResumeOrchestrationRunResponses, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type RunId, type SearchKnowledgeData, type SearchKnowledgeError, type SearchKnowledgeErrors, type SearchKnowledgeResponse, type SearchKnowledgeResponses, type SecretResourceProperties, Secrets, type SendSessionMessageResponse, type SessionId, type SessionRecord, type SessionResourceProperties, Sessions, SoatClient, type SoatClientOptions, type StartOrchestrationRunData, type StartOrchestrationRunErrors, type StartOrchestrationRunResponse, type StartOrchestrationRunResponses, type StartRunRequest, type SubmitAgentToolOutputsData, type SubmitAgentToolOutputsError, type SubmitAgentToolOutputsErrors, type SubmitAgentToolOutputsResponse, type SubmitAgentToolOutputsResponses, type SubmitHumanInputData, type SubmitHumanInputErrors, type SubmitHumanInputResponse, type SubmitHumanInputResponses, type SubmitSessionToolOutputsData, type SubmitSessionToolOutputsError, type SubmitSessionToolOutputsErrors, type SubmitSessionToolOutputsRequest, type SubmitSessionToolOutputsResponse, type SubmitSessionToolOutputsResponses, type SubmitToolOutputsRequest, type Tool, type ToolOutputMessageContent, type ToolResourceProperties, Tools, type Trace, type TraceTreeNode, Traces, type UpdateActorData, type UpdateActorError, type UpdateActorErrors, type UpdateActorResponse, type UpdateActorResponses, type UpdateAgentData, type UpdateAgentError, type UpdateAgentErrors, type UpdateAgentRequest, type UpdateAgentResponse, type UpdateAgentResponses, type UpdateAiProviderData, type UpdateAiProviderErrors, type UpdateAiProviderResponses, type UpdateApiKeyData, type UpdateApiKeyError, type UpdateApiKeyErrors, type UpdateApiKeyResponse, type UpdateApiKeyResponses, type UpdateConversationData, type UpdateConversationError, type UpdateConversationErrors, type UpdateConversationResponse, type UpdateConversationResponses, type UpdateDocumentData, type UpdateDocumentError, type UpdateDocumentErrors, type UpdateDocumentResponse, type UpdateDocumentResponses, type UpdateFileMetadataData, type UpdateFileMetadataError, type UpdateFileMetadataErrors, type UpdateFileMetadataResponse, type UpdateFileMetadataResponses, type UpdateFormationData, type UpdateFormationErrors, type UpdateFormationResponse, type UpdateFormationResponses, type UpdateMemoryData, type UpdateMemoryEntryData, type UpdateMemoryEntryErrors, type UpdateMemoryEntryResponse, type UpdateMemoryEntryResponses, type UpdateMemoryErrors, type UpdateMemoryResponse, type UpdateMemoryResponses, type UpdateOrchestrationData, type UpdateOrchestrationErrors, type UpdateOrchestrationRequest, type UpdateOrchestrationResponse, type UpdateOrchestrationResponses, type UpdatePolicyData, type UpdatePolicyError, type UpdatePolicyErrors, type UpdatePolicyResponse, type UpdatePolicyResponses, type UpdateSecretData, type UpdateSecretErrors, type UpdateSecretResponses, type UpdateSessionData, type UpdateSessionError, type UpdateSessionErrors, type UpdateSessionRequest, type UpdateSessionResponse, type UpdateSessionResponses, type UpdateToolData, type UpdateToolError, type UpdateToolErrors, type UpdateToolRequest, type UpdateToolResponse, type UpdateToolResponses, type UpdateWebhookData, type UpdateWebhookErrors, type UpdateWebhookRequest, type UpdateWebhookResponse, type UpdateWebhookResponses, type UploadFileBase64Data, type UploadFileBase64Error, type UploadFileBase64Errors, type UploadFileBase64Request, type UploadFileBase64Response, type UploadFileBase64Responses, type UploadFileData, type UploadFileError, type UploadFileErrors, type UploadFileResponse, type UploadFileResponses, type UploadFileWithTokenData, type UploadFileWithTokenError, type UploadFileWithTokenErrors, type UploadFileWithTokenRequest, type UploadFileWithTokenResponse, type UploadFileWithTokenResponses, type UserRecord, Users, type ValidateFormationData, type ValidateFormationErrors, type ValidateFormationResponse, type ValidateFormationResponses, type ValidateOrchestrationData, type ValidateOrchestrationErrors, type ValidateOrchestrationRequest, type ValidateOrchestrationResponse, type ValidateOrchestrationResponses, type ValidationError, type ValidationResult, type Webhook, type WebhookResourceProperties, type WebhookSecretResponse, type WebhookWithSecret, Webhooks, createClient, createConfig };
10140
+ export { type ActorRecord, type ActorResourceProperties, Actors, type AddConversationMessageData, type AddConversationMessageError, type AddConversationMessageErrors, type AddConversationMessageResponse, type AddConversationMessageResponses, type AddSessionMessageData, type AddSessionMessageError, type AddSessionMessageErrors, type AddSessionMessageRequest, type AddSessionMessageResponse, type AddSessionMessageResponse2, type AddSessionMessageResponses, type AddSessionMessageSaved, type Agent, type AgentGenerationResponse, type AgentId, type AgentResourceProperties, Agents, type AiProviderResourceProperties, AiProviders, type ApiKeyCreated, type ApiKeyRecord, type ApiKeyResourceProperties, ApiKeys, type AttachUserPoliciesData, type AttachUserPoliciesError, type AttachUserPoliciesErrors, type AttachUserPoliciesResponse, type AttachUserPoliciesResponses, type BootstrapUserData, type BootstrapUserError, type BootstrapUserErrors, type BootstrapUserResponse, type BootstrapUserResponses, type CallToolData, type CallToolError, type CallToolErrors, type CallToolRequest, type CallToolResponse, type CallToolResponses, type CancelOrchestrationRunData, type CancelOrchestrationRunErrors, type CancelOrchestrationRunResponse, type CancelOrchestrationRunResponses, type Chat, type ChatCompletionChoice, type ChatCompletionForChatRequest, type ChatCompletionRequest, type ChatCompletionResponse, type ChatCompletionResponseMessage, type ChatMessage, type ChatMessageInput, type ChatResourceProperties, Chats, type ClientOptions, type ConversationActorRecord, type ConversationMessageRecord, type ConversationRecord, type ConversationResourceProperties, Conversations, type CreateActorData, type CreateActorError, type CreateActorErrors, type CreateActorResponse, type CreateActorResponses, type CreateAgentData, type CreateAgentError, type CreateAgentErrors, type CreateAgentGenerationData, type CreateAgentGenerationError, type CreateAgentGenerationErrors, type CreateAgentGenerationRequest, type CreateAgentGenerationResponse, type CreateAgentGenerationResponses, type CreateAgentRequest, type CreateAgentResponse, type CreateAgentResponses, type CreateAiProviderData, type CreateAiProviderErrors, type CreateAiProviderResponse, type CreateAiProviderResponses, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyErrors, type CreateApiKeyResponse, type CreateApiKeyResponses, type CreateChatCompletionData, type CreateChatCompletionError, type CreateChatCompletionErrors, type CreateChatCompletionForChatData, type CreateChatCompletionForChatError, type CreateChatCompletionForChatErrors, type CreateChatCompletionForChatResponse, type CreateChatCompletionForChatResponses, type CreateChatCompletionResponse, type CreateChatCompletionResponses, type CreateChatData, type CreateChatError, type CreateChatErrors, type CreateChatRequest, type CreateChatResponse, type CreateChatResponses, type CreateConversationData, type CreateConversationError, type CreateConversationErrors, type CreateConversationResponse, type CreateConversationResponses, type CreateDocumentData, type CreateDocumentError, type CreateDocumentErrors, type CreateDocumentResponse, type CreateDocumentResponses, type CreateEmbeddingsData, type CreateEmbeddingsError, type CreateEmbeddingsErrors, type CreateEmbeddingsResponse, type CreateEmbeddingsResponses, type CreateFileData, type CreateFileError, type CreateFileErrors, type CreateFileResponse, type CreateFileResponses, type CreateFormationData, type CreateFormationErrors, type CreateFormationResponse, type CreateFormationResponses, type CreateMemoryData, type CreateMemoryEntryData, type CreateMemoryEntryErrors, type CreateMemoryEntryResponse, type CreateMemoryEntryResponses, type CreateMemoryErrors, type CreateMemoryResponse, type CreateMemoryResponses, type CreateOrchestrationData, type CreateOrchestrationErrors, type CreateOrchestrationRequest, type CreateOrchestrationResponse, type CreateOrchestrationResponses, type CreatePolicyData, type CreatePolicyError, type CreatePolicyErrors, type CreatePolicyResponse, type CreatePolicyResponses, type CreatePresignedUrlData, type CreatePresignedUrlError, type CreatePresignedUrlErrors, type CreatePresignedUrlResponse, type CreatePresignedUrlResponses, type CreateProjectData, type CreateProjectErrors, type CreateProjectResponse, type CreateProjectResponses, type CreateSecretData, type CreateSecretErrors, type CreateSecretResponse, type CreateSecretResponses, type CreateSessionData, type CreateSessionError, type CreateSessionErrors, type CreateSessionRequest, type CreateSessionResponse, type CreateSessionResponses, type CreateToolData, type CreateToolError, type CreateToolErrors, type CreateToolRequest, type CreateToolResponse, type CreateToolResponses, type CreateUserData, type CreateUserError, type CreateUserErrors, type CreateUserResponse, type CreateUserResponses, type CreateWebhookData, type CreateWebhookErrors, type CreateWebhookRequest, type CreateWebhookResponse, type CreateWebhookResponses, type DeleteActorData, type DeleteActorError, type DeleteActorErrors, type DeleteActorResponse, type DeleteActorResponses, type DeleteAgentData, type DeleteAgentError, type DeleteAgentErrors, type DeleteAgentResponse, type DeleteAgentResponses, type DeleteAiProviderData, type DeleteAiProviderErrors, type DeleteAiProviderResponses, type DeleteApiKeyData, type DeleteApiKeyErrors, type DeleteApiKeyResponse, type DeleteApiKeyResponses, type DeleteChatData, type DeleteChatError, type DeleteChatErrors, type DeleteChatResponse, type DeleteChatResponses, type DeleteConversationData, type DeleteConversationError, type DeleteConversationErrors, type DeleteConversationResponse, type DeleteConversationResponses, type DeleteDocumentData, type DeleteDocumentError, type DeleteDocumentErrors, type DeleteDocumentResponse, type DeleteDocumentResponses, type DeleteFileData, type DeleteFileError, type DeleteFileErrors, type DeleteFileResponse, type DeleteFileResponses, type DeleteFormationData, type DeleteFormationErrors, type DeleteFormationResponse, type DeleteFormationResponses, type DeleteMemoryData, type DeleteMemoryEntryData, type DeleteMemoryEntryErrors, type DeleteMemoryEntryResponse, type DeleteMemoryEntryResponses, type DeleteMemoryErrors, type DeleteMemoryResponse, type DeleteMemoryResponses, type DeleteOrchestrationData, type DeleteOrchestrationErrors, type DeleteOrchestrationResponse, type DeleteOrchestrationResponses, type DeletePolicyData, type DeletePolicyErrors, type DeletePolicyResponse, type DeletePolicyResponses, type DeleteProjectData, type DeleteProjectErrors, type DeleteProjectResponse, type DeleteProjectResponses, type DeleteSecretData, type DeleteSecretErrors, type DeleteSecretResponses, type DeleteSessionData, type DeleteSessionError, type DeleteSessionErrors, type DeleteSessionResponse, type DeleteSessionResponses, type DeleteToolData, type DeleteToolError, type DeleteToolErrors, type DeleteToolResponse, type DeleteToolResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserResponse, type DeleteUserResponses, type DeleteWebhookData, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type Delivery, type DeliveryListResponse, type DocumentKnowledgeResult, type DocumentMessageContent, type DocumentRecord, type DocumentResourceProperties, type DocumentStatusRecord, Documents, type DownloadFileBase64Data, type DownloadFileBase64Error, type DownloadFileBase64Errors, type DownloadFileBase64Response, type DownloadFileBase64Responses, type DownloadFileData, type DownloadFileError, type DownloadFileErrors, type DownloadFileResponse, type DownloadFileResponses, Embeddings, type EmbeddingsResponse, type ErrorResponse, type FileRecord, type FileRecordWritable, type FileResourceProperties, Files, type Formation, type FormationEvent, type FormationOperation, type FormationResource, type FormationTemplate, type FormationTemplateInput, Formations, type GenerateConversationMessageCompleted, type GenerateConversationMessageData, type GenerateConversationMessageError, type GenerateConversationMessageErrors, type GenerateConversationMessageRequiresAction, type GenerateConversationMessageResponse, type GenerateConversationMessageResponse2, type GenerateConversationMessageResponses, type GenerateSessionRequest, type GenerateSessionResponse, type GenerateSessionResponseData, type GenerateSessionResponseError, type GenerateSessionResponseErrors, type GenerateSessionResponseResponse, type GenerateSessionResponseResponses, type Generation, Generations, type GetActorData, type GetActorError, type GetActorErrors, type GetActorResponse, type GetActorResponses, type GetActorTagsData, type GetActorTagsError, type GetActorTagsErrors, type GetActorTagsResponse, type GetActorTagsResponses, type GetAgentData, type GetAgentError, type GetAgentErrors, type GetAgentResponse, type GetAgentResponses, type GetAiProviderData, type GetAiProviderErrors, type GetAiProviderResponse, type GetAiProviderResponses, type GetApiKeyData, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetChatData, type GetChatError, type GetChatErrors, type GetChatResponse, type GetChatResponses, type GetConversationData, type GetConversationError, type GetConversationErrors, type GetConversationResponse, type GetConversationResponses, type GetConversationTagsData, type GetConversationTagsError, type GetConversationTagsErrors, type GetConversationTagsResponse, type GetConversationTagsResponses, type GetCurrentUserData, type GetCurrentUserError, type GetCurrentUserErrors, type GetCurrentUserResponse, type GetCurrentUserResponses, type GetDocumentData, type GetDocumentError, type GetDocumentErrors, type GetDocumentResponse, type GetDocumentResponses, type GetDocumentStatusData, type GetDocumentStatusError, type GetDocumentStatusErrors, type GetDocumentStatusResponse, type GetDocumentStatusResponses, type GetDocumentTagsData, type GetDocumentTagsError, type GetDocumentTagsErrors, type GetDocumentTagsResponse, type GetDocumentTagsResponses, type GetFileData, type GetFileError, type GetFileErrors, type GetFileResponse, type GetFileResponses, type GetFileTagsData, type GetFileTagsError, type GetFileTagsErrors, type GetFileTagsResponse, type GetFileTagsResponses, type GetFormationData, type GetFormationErrors, type GetFormationResponse, type GetFormationResponses, type GetGenerationData, type GetGenerationError, type GetGenerationErrors, type GetGenerationResponse, type GetGenerationResponses, type GetMemoryData, type GetMemoryEntryData, type GetMemoryEntryErrors, type GetMemoryEntryResponse, type GetMemoryEntryResponses, type GetMemoryErrors, type GetMemoryResponse, type GetMemoryResponses, type GetOrchestrationData, type GetOrchestrationErrors, type GetOrchestrationResponse, type GetOrchestrationResponses, type GetOrchestrationRunData, type GetOrchestrationRunErrors, type GetOrchestrationRunResponse, type GetOrchestrationRunResponses, type GetPolicyData, type GetPolicyErrors, type GetPolicyResponse, type GetPolicyResponses, type GetProjectData, type GetProjectErrors, type GetProjectResponse, type GetProjectResponses, type GetSecretData, type GetSecretErrors, type GetSecretResponse, type GetSecretResponses, type GetSessionData, type GetSessionError, type GetSessionErrors, type GetSessionResponse, type GetSessionResponses, type GetSessionTagsData, type GetSessionTagsError, type GetSessionTagsErrors, type GetSessionTagsResponse, type GetSessionTagsResponses, type GetToolData, type GetToolError, type GetToolErrors, type GetToolResponse, type GetToolResponses, type GetTraceData, type GetTraceError, type GetTraceErrors, type GetTraceResponse, type GetTraceResponses, type GetTraceTreeData, type GetTraceTreeError, type GetTraceTreeErrors, type GetTraceTreeResponse, type GetTraceTreeResponses, type GetUserData, type GetUserError, type GetUserErrors, type GetUserResponse, type GetUserResponses, type GetWebhookData, type GetWebhookDeliveryData, type GetWebhookDeliveryErrors, type GetWebhookDeliveryResponse, type GetWebhookDeliveryResponses, type GetWebhookErrors, type GetWebhookResponse, type GetWebhookResponses, type GetWebhookSecretData, type GetWebhookSecretErrors, type GetWebhookSecretResponse, type GetWebhookSecretResponses, type HumanInputRequest, type IngestDocumentData, type IngestDocumentError, type IngestDocumentErrors, type IngestDocumentResponse, type IngestDocumentResponses, type IngestedDocumentRecord, Knowledge, type KnowledgeResult, type ListActorsData, type ListActorsError, type ListActorsErrors, type ListActorsResponse, type ListActorsResponses, type ListAgentsData, type ListAgentsError, type ListAgentsErrors, type ListAgentsResponse, type ListAgentsResponses, type ListAiProvidersData, type ListAiProvidersErrors, type ListAiProvidersResponse, type ListAiProvidersResponses, type ListApiKeysData, type ListApiKeysErrors, type ListApiKeysResponse, type ListApiKeysResponses, type ListChatsData, type ListChatsError, type ListChatsErrors, type ListChatsResponse, type ListChatsResponses, type ListConversationMessagesData, type ListConversationMessagesError, type ListConversationMessagesErrors, type ListConversationMessagesResponse, type ListConversationMessagesResponses, type ListConversationsData, type ListConversationsError, type ListConversationsErrors, type ListConversationsResponse, type ListConversationsResponses, type ListDocumentsData, type ListDocumentsError, type ListDocumentsErrors, type ListDocumentsResponse, type ListDocumentsResponses, type ListFilesData, type ListFilesError, type ListFilesErrors, type ListFilesResponse, type ListFilesResponses, type ListFormationEventsData, type ListFormationEventsErrors, type ListFormationEventsResponse, type ListFormationEventsResponses, type ListFormationsData, type ListFormationsErrors, type ListFormationsResponse, type ListFormationsResponses, type ListGenerationsData, type ListGenerationsError, type ListGenerationsErrors, type ListGenerationsResponse, type ListGenerationsResponses, type ListMemoriesData, type ListMemoriesErrors, type ListMemoriesResponse, type ListMemoriesResponses, type ListMemoryEntriesData, type ListMemoryEntriesErrors, type ListMemoryEntriesResponse, type ListMemoryEntriesResponses, type ListOrchestrationRunsData, type ListOrchestrationRunsErrors, type ListOrchestrationRunsResponse, type ListOrchestrationRunsResponses, type ListOrchestrationsData, type ListOrchestrationsErrors, type ListOrchestrationsResponse, type ListOrchestrationsResponses, type ListPoliciesData, type ListPoliciesErrors, type ListPoliciesResponse, type ListPoliciesResponses, type ListProjectsData, type ListProjectsErrors, type ListProjectsResponse, type ListProjectsResponses, type ListSecretsData, type ListSecretsErrors, type ListSecretsResponse, type ListSecretsResponses, type ListSessionsData, type ListSessionsError, type ListSessionsErrors, type ListSessionsResponse, type ListSessionsResponses, type ListToolsData, type ListToolsError, type ListToolsErrors, type ListToolsResponse, type ListToolsResponses, type ListTracesData, type ListTracesError, type ListTracesErrors, type ListTracesResponse, type ListTracesResponses, type ListUsersData, type ListUsersError, type ListUsersErrors, type ListUsersResponse, type ListUsersResponses, type ListWebhookDeliveriesData, type ListWebhookDeliveriesErrors, type ListWebhookDeliveriesResponse, type ListWebhookDeliveriesResponses, type ListWebhooksData, type ListWebhooksErrors, type ListWebhooksResponse, type ListWebhooksResponses, type LoginResponse, type LoginUserData, type LoginUserError, type LoginUserErrors, type LoginUserResponse, type LoginUserResponses, Memories, type Memory, MemoryEntries, type MemoryEntry, type MemoryEntryResourceProperties, type MemoryEntryWriteResult, type MemoryKnowledgeResult, type MemoryResourceProperties, type MergeActorTagsData, type MergeActorTagsError, type MergeActorTagsErrors, type MergeActorTagsResponse, type MergeActorTagsResponses, type MergeConversationTagsData, type MergeConversationTagsError, type MergeConversationTagsErrors, type MergeConversationTagsResponse, type MergeConversationTagsResponses, type MergeDocumentTagsData, type MergeDocumentTagsError, type MergeDocumentTagsErrors, type MergeDocumentTagsResponse, type MergeDocumentTagsResponses, type MergeFileTagsData, type MergeFileTagsError, type MergeFileTagsErrors, type MergeFileTagsResponse, type MergeFileTagsResponses, type MergeSessionTagsData, type MergeSessionTagsError, type MergeSessionTagsErrors, type MergeSessionTagsResponse, type MergeSessionTagsResponses, type NodeExecution, type Options, type Orchestration, type OrchestrationEdge, type OrchestrationId, type OrchestrationNode, type OrchestrationRun, Orchestrations, type ParameterDeclaration, type PatchAgentData, type PatchAgentError, type PatchAgentErrors, type PatchAgentResponse, type PatchAgentResponses, type PlanChange, type PlanFormationData, type PlanFormationErrors, type PlanFormationResponse, type PlanFormationResponses, type PlanResult, Policies, type PolicyDocument, type PolicyRecord, type PolicyResourceProperties, type PolicyStatement, type PresignedUrlRequest, type PresignedUrlResponse, type ProjectRecord, Projects, type ReingestDocumentData, type ReingestDocumentError, type ReingestDocumentErrors, type ReingestDocumentResponse, type ReingestDocumentResponses, type RemoveConversationMessageData, type RemoveConversationMessageError, type RemoveConversationMessageErrors, type RemoveConversationMessageResponse, type RemoveConversationMessageResponses, type ReplaceActorTagsData, type ReplaceActorTagsError, type ReplaceActorTagsErrors, type ReplaceActorTagsResponse, type ReplaceActorTagsResponses, type ReplaceConversationTagsData, type ReplaceConversationTagsError, type ReplaceConversationTagsErrors, type ReplaceConversationTagsResponse, type ReplaceConversationTagsResponses, type ReplaceDocumentTagsData, type ReplaceDocumentTagsError, type ReplaceDocumentTagsErrors, type ReplaceDocumentTagsResponse, type ReplaceDocumentTagsResponses, type ReplaceFileTagsData, type ReplaceFileTagsError, type ReplaceFileTagsErrors, type ReplaceFileTagsResponse, type ReplaceFileTagsResponses, type ReplaceSessionTagsData, type ReplaceSessionTagsError, type ReplaceSessionTagsErrors, type ReplaceSessionTagsResponse, type ReplaceSessionTagsResponses, type RequiredAction, type ResourceDeclaration, type ResumeOrchestrationRunData, type ResumeOrchestrationRunErrors, type ResumeOrchestrationRunResponse, type ResumeOrchestrationRunResponses, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type RunId, type SearchKnowledgeData, type SearchKnowledgeError, type SearchKnowledgeErrors, type SearchKnowledgeResponse, type SearchKnowledgeResponses, type SecretResourceProperties, Secrets, type SendSessionMessageResponse, type SessionId, type SessionRecord, type SessionResourceProperties, Sessions, SoatClient, type SoatClientOptions, type StartOrchestrationRunData, type StartOrchestrationRunErrors, type StartOrchestrationRunResponse, type StartOrchestrationRunResponses, type StartRunRequest, type SubmitAgentToolOutputsData, type SubmitAgentToolOutputsError, type SubmitAgentToolOutputsErrors, type SubmitAgentToolOutputsResponse, type SubmitAgentToolOutputsResponses, type SubmitHumanInputData, type SubmitHumanInputErrors, type SubmitHumanInputResponse, type SubmitHumanInputResponses, type SubmitSessionToolOutputsData, type SubmitSessionToolOutputsError, type SubmitSessionToolOutputsErrors, type SubmitSessionToolOutputsRequest, type SubmitSessionToolOutputsResponse, type SubmitSessionToolOutputsResponses, type SubmitToolOutputsRequest, type Tool, type ToolOutputMessageContent, type ToolResourceProperties, Tools, type Trace, type TraceTreeNode, Traces, type UpdateActorData, type UpdateActorError, type UpdateActorErrors, type UpdateActorResponse, type UpdateActorResponses, type UpdateAgentData, type UpdateAgentError, type UpdateAgentErrors, type UpdateAgentRequest, type UpdateAgentResponse, type UpdateAgentResponses, type UpdateAiProviderData, type UpdateAiProviderErrors, type UpdateAiProviderResponses, type UpdateApiKeyData, type UpdateApiKeyError, type UpdateApiKeyErrors, type UpdateApiKeyResponse, type UpdateApiKeyResponses, type UpdateConversationData, type UpdateConversationError, type UpdateConversationErrors, type UpdateConversationResponse, type UpdateConversationResponses, type UpdateDocumentData, type UpdateDocumentError, type UpdateDocumentErrors, type UpdateDocumentResponse, type UpdateDocumentResponses, type UpdateFileMetadataData, type UpdateFileMetadataError, type UpdateFileMetadataErrors, type UpdateFileMetadataResponse, type UpdateFileMetadataResponses, type UpdateFormationData, type UpdateFormationErrors, type UpdateFormationResponse, type UpdateFormationResponses, type UpdateMemoryData, type UpdateMemoryEntryData, type UpdateMemoryEntryErrors, type UpdateMemoryEntryResponse, type UpdateMemoryEntryResponses, type UpdateMemoryErrors, type UpdateMemoryResponse, type UpdateMemoryResponses, type UpdateOrchestrationData, type UpdateOrchestrationErrors, type UpdateOrchestrationRequest, type UpdateOrchestrationResponse, type UpdateOrchestrationResponses, type UpdatePolicyData, type UpdatePolicyError, type UpdatePolicyErrors, type UpdatePolicyResponse, type UpdatePolicyResponses, type UpdateProjectData, type UpdateProjectErrors, type UpdateProjectResponse, type UpdateProjectResponses, type UpdateSecretData, type UpdateSecretErrors, type UpdateSecretResponses, type UpdateSessionData, type UpdateSessionError, type UpdateSessionErrors, type UpdateSessionRequest, type UpdateSessionResponse, type UpdateSessionResponses, type UpdateToolData, type UpdateToolError, type UpdateToolErrors, type UpdateToolRequest, type UpdateToolResponse, type UpdateToolResponses, type UpdateWebhookData, type UpdateWebhookErrors, type UpdateWebhookRequest, type UpdateWebhookResponse, type UpdateWebhookResponses, type UploadFileBase64Data, type UploadFileBase64Error, type UploadFileBase64Errors, type UploadFileBase64Request, type UploadFileBase64Response, type UploadFileBase64Responses, type UploadFileData, type UploadFileError, type UploadFileErrors, type UploadFileResponse, type UploadFileResponses, type UploadFileWithTokenData, type UploadFileWithTokenError, type UploadFileWithTokenErrors, type UploadFileWithTokenRequest, type UploadFileWithTokenResponse, type UploadFileWithTokenResponses, type UserRecord, Users, type ValidateFormationData, type ValidateFormationErrors, type ValidateFormationResponse, type ValidateFormationResponses, type ValidateOrchestrationData, type ValidateOrchestrationErrors, type ValidateOrchestrationRequest, type ValidateOrchestrationResponse, type ValidateOrchestrationResponses, type ValidationError, type ValidationResult, type Webhook, type WebhookResourceProperties, type WebhookSecretResponse, type WebhookWithSecret, Webhooks, createClient, createConfig };