oasis_test 0.1.42 → 0.1.43
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.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -39273,7 +39273,7 @@ var init_acp = __esm({
|
|
|
39273
39273
|
});
|
|
39274
39274
|
}
|
|
39275
39275
|
}
|
|
39276
|
-
handleToolCallUpdate(data) {
|
|
39276
|
+
handleToolCallUpdate(data, skipOutputAccum = false) {
|
|
39277
39277
|
const d = toolPayload(data);
|
|
39278
39278
|
const toolCallId = toolCallIdOf(d);
|
|
39279
39279
|
if (!toolCallId) return;
|
|
@@ -39293,7 +39293,7 @@ var init_acp = __esm({
|
|
|
39293
39293
|
const argsText = argsTextOf(d);
|
|
39294
39294
|
if (argsText) pending.argsText += argsText;
|
|
39295
39295
|
const output = toolOutputOf(d);
|
|
39296
|
-
if (output !== void 0) pending.outputParts.push(output);
|
|
39296
|
+
if (!skipOutputAccum && output !== void 0) pending.outputParts.push(output);
|
|
39297
39297
|
if (!pending.emitted && pending.input !== void 0) {
|
|
39298
39298
|
pending.emitted = true;
|
|
39299
39299
|
this.emit("tool_use", { id: toolCallId, name: pending.toolName, input: pending.input });
|
|
@@ -58146,7 +58146,7 @@ ${res.warning}`);
|
|
|
58146
58146
|
}
|
|
58147
58147
|
|
|
58148
58148
|
// src/index.ts
|
|
58149
|
-
var PKG_VERSION = true ? "0.1.
|
|
58149
|
+
var PKG_VERSION = true ? "0.1.43" : "dev";
|
|
58150
58150
|
var OASIS_DIR = path18.join(os10.homedir(), ".oasis");
|
|
58151
58151
|
var CONFIG_FILE = path18.join(OASIS_DIR, "node-config.json");
|
|
58152
58152
|
var PID_FILE = path18.join(OASIS_DIR, "node.pid");
|