@soat/sdk 0.5.0 → 0.5.1

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.cts CHANGED
@@ -547,6 +547,10 @@ type Agent = {
547
547
  document_paths?: Array<string>;
548
548
  min_score?: number;
549
549
  limit?: number;
550
+ /**
551
+ * Public ID of the memory the agent can write to during generation. When set, a write_memory tool is automatically available to the agent.
552
+ */
553
+ write_memory_id?: string | null;
550
554
  } | null;
551
555
  created_at?: Date;
552
556
  updated_at?: Date;
@@ -586,6 +590,10 @@ type CreateAgentRequest = {
586
590
  document_paths?: Array<string>;
587
591
  min_score?: number;
588
592
  limit?: number;
593
+ /**
594
+ * Public ID of the memory the agent can write to during generation. When set, a write_memory tool is automatically available to the agent.
595
+ */
596
+ write_memory_id?: string | null;
589
597
  };
590
598
  };
591
599
  type UpdateAgentRequest = {
@@ -616,6 +624,10 @@ type UpdateAgentRequest = {
616
624
  document_paths?: Array<string>;
617
625
  min_score?: number;
618
626
  limit?: number;
627
+ /**
628
+ * Public ID of the memory the agent can write to during generation. When set, a write_memory tool is automatically available to the agent.
629
+ */
630
+ write_memory_id?: string | null;
619
631
  } | null;
620
632
  };
621
633
  type CreateAgentGenerationRequest = {
package/dist/index.d.ts CHANGED
@@ -547,6 +547,10 @@ type Agent = {
547
547
  document_paths?: Array<string>;
548
548
  min_score?: number;
549
549
  limit?: number;
550
+ /**
551
+ * Public ID of the memory the agent can write to during generation. When set, a write_memory tool is automatically available to the agent.
552
+ */
553
+ write_memory_id?: string | null;
550
554
  } | null;
551
555
  created_at?: Date;
552
556
  updated_at?: Date;
@@ -586,6 +590,10 @@ type CreateAgentRequest = {
586
590
  document_paths?: Array<string>;
587
591
  min_score?: number;
588
592
  limit?: number;
593
+ /**
594
+ * Public ID of the memory the agent can write to during generation. When set, a write_memory tool is automatically available to the agent.
595
+ */
596
+ write_memory_id?: string | null;
589
597
  };
590
598
  };
591
599
  type UpdateAgentRequest = {
@@ -616,6 +624,10 @@ type UpdateAgentRequest = {
616
624
  document_paths?: Array<string>;
617
625
  min_score?: number;
618
626
  limit?: number;
627
+ /**
628
+ * Public ID of the memory the agent can write to during generation. When set, a write_memory tool is automatically available to the agent.
629
+ */
630
+ write_memory_id?: string | null;
619
631
  } | null;
620
632
  };
621
633
  type CreateAgentGenerationRequest = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soat/sdk",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "TypeScript SDK for the SOAT API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",