@soat/sdk 0.8.1 → 0.8.2
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 +9 -0
- package/dist/index.d.mts +9 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1579,6 +1579,10 @@ type SessionResourceProperties = {
|
|
|
1579
1579
|
* Whether to automatically generate a response when messages are sent
|
|
1580
1580
|
*/
|
|
1581
1581
|
auto_generate?: boolean;
|
|
1582
|
+
/**
|
|
1583
|
+
* Number of seconds of inactivity after which the session expires. 0 means never expires.
|
|
1584
|
+
*/
|
|
1585
|
+
inactivity_ttl_seconds?: number;
|
|
1582
1586
|
/**
|
|
1583
1587
|
* Optional context object passed to tool calls
|
|
1584
1588
|
*/
|
|
@@ -2303,6 +2307,11 @@ type UpdateSessionRequest = {
|
|
|
2303
2307
|
tool_context?: {
|
|
2304
2308
|
[key: string]: string;
|
|
2305
2309
|
} | null;
|
|
2310
|
+
/**
|
|
2311
|
+
* Number of seconds of inactivity after which the session expires. 0 means the session never expires. Updates the stored TTL; the inactivity clock continues from the last activity timestamp.
|
|
2312
|
+
*
|
|
2313
|
+
*/
|
|
2314
|
+
inactivity_ttl_seconds?: number;
|
|
2306
2315
|
/**
|
|
2307
2316
|
* Number of seconds to wait after the last user message before sending to the LLM. Acts as a debounce: each new message resets the timer. Set to null to disable the delay.
|
|
2308
2317
|
*
|
package/dist/index.d.mts
CHANGED
|
@@ -1579,6 +1579,10 @@ type SessionResourceProperties = {
|
|
|
1579
1579
|
* Whether to automatically generate a response when messages are sent
|
|
1580
1580
|
*/
|
|
1581
1581
|
auto_generate?: boolean;
|
|
1582
|
+
/**
|
|
1583
|
+
* Number of seconds of inactivity after which the session expires. 0 means never expires.
|
|
1584
|
+
*/
|
|
1585
|
+
inactivity_ttl_seconds?: number;
|
|
1582
1586
|
/**
|
|
1583
1587
|
* Optional context object passed to tool calls
|
|
1584
1588
|
*/
|
|
@@ -2303,6 +2307,11 @@ type UpdateSessionRequest = {
|
|
|
2303
2307
|
tool_context?: {
|
|
2304
2308
|
[key: string]: string;
|
|
2305
2309
|
} | null;
|
|
2310
|
+
/**
|
|
2311
|
+
* Number of seconds of inactivity after which the session expires. 0 means the session never expires. Updates the stored TTL; the inactivity clock continues from the last activity timestamp.
|
|
2312
|
+
*
|
|
2313
|
+
*/
|
|
2314
|
+
inactivity_ttl_seconds?: number;
|
|
2306
2315
|
/**
|
|
2307
2316
|
* Number of seconds to wait after the last user message before sending to the LLM. Acts as a debounce: each new message resets the timer. Set to null to disable the delay.
|
|
2308
2317
|
*
|