@soat/sdk 0.6.3 → 0.6.4

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
@@ -1168,6 +1168,14 @@ type AgentResourceProperties = {
1168
1168
  * Sampling temperature
1169
1169
  */
1170
1170
  temperature?: number | null;
1171
+ /**
1172
+ * Maximum number of recent messages to include in the context window sent to the model. When null, all messages are included.
1173
+ */
1174
+ max_context_messages?: number | null;
1175
+ /**
1176
+ * When true, only one open session per actor_id is allowed for this agent.
1177
+ */
1178
+ single_session_per_actor?: boolean | null;
1171
1179
  /**
1172
1180
  * Knowledge retrieval configuration. When set, relevant documents and memory entries are injected into every generation.
1173
1181
  */
package/dist/index.d.ts CHANGED
@@ -1168,6 +1168,14 @@ type AgentResourceProperties = {
1168
1168
  * Sampling temperature
1169
1169
  */
1170
1170
  temperature?: number | null;
1171
+ /**
1172
+ * Maximum number of recent messages to include in the context window sent to the model. When null, all messages are included.
1173
+ */
1174
+ max_context_messages?: number | null;
1175
+ /**
1176
+ * When true, only one open session per actor_id is allowed for this agent.
1177
+ */
1178
+ single_session_per_actor?: boolean | null;
1171
1179
  /**
1172
1180
  * Knowledge retrieval configuration. When set, relevant documents and memory entries are injected into every generation.
1173
1181
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soat/sdk",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "description": "TypeScript SDK for the SOAT API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",