@octavus/core 2.3.0 → 2.4.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.d.ts +4 -0
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -192,6 +192,8 @@ interface ToolCallInfo {
|
|
|
192
192
|
status: ToolCallStatus;
|
|
193
193
|
result?: unknown;
|
|
194
194
|
error?: string;
|
|
195
|
+
/** Google Gemini 3 thought signature - required for tool call continuation */
|
|
196
|
+
thoughtSignature?: string;
|
|
195
197
|
}
|
|
196
198
|
/** Signals the start of a response message */
|
|
197
199
|
interface StartEvent {
|
|
@@ -427,6 +429,8 @@ interface PendingToolCall {
|
|
|
427
429
|
thread?: string;
|
|
428
430
|
/** Worker ID if this tool call originated from a worker execution */
|
|
429
431
|
workerId?: string;
|
|
432
|
+
/** Google Gemini 3 thought signature - required for tool call continuation */
|
|
433
|
+
thoughtSignature?: string;
|
|
430
434
|
}
|
|
431
435
|
/**
|
|
432
436
|
* When this event is received, the stream will close.
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@octavus/core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "Public types and utilities for Octavus client/server SDK communication",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Octavus AI <dev@octavus.ai>",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/octavus-ai/
|
|
9
|
+
"url": "https://github.com/octavus-ai/agent-sdk.git",
|
|
10
10
|
"directory": "packages/core"
|
|
11
11
|
},
|
|
12
12
|
"homepage": "https://octavus.ai",
|
|
13
13
|
"bugs": {
|
|
14
|
-
"url": "https://github.com/octavus-ai/
|
|
14
|
+
"url": "https://github.com/octavus-ai/agent-sdk/issues"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"octavus",
|