@isaacthoman/pulpo 0.81.0 → 0.81.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.js +9 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16677,6 +16677,13 @@ function applyAgentEventOutput(output, event) {
|
|
|
16677
16677
|
if (event.type === "pulpo.agent.attachment.created" && typeof payload.attachment_id === "string") {
|
|
16678
16678
|
return upsertOutputItem(output, (item) => item.type === "pulpo_attachment" && item.attachment_id === payload.attachment_id, payload);
|
|
16679
16679
|
}
|
|
16680
|
+
if (event.type === "pulpo.agent.reasoning.completed" && typeof payload.id === "string") {
|
|
16681
|
+
return upsertOutputItem(output, (item) => item.id === payload.id, {
|
|
16682
|
+
...payload,
|
|
16683
|
+
type: "reasoning",
|
|
16684
|
+
status: "completed"
|
|
16685
|
+
});
|
|
16686
|
+
}
|
|
16680
16687
|
if (!event.type.startsWith("pulpo.agent.tool.") || typeof payload.id !== "string")
|
|
16681
16688
|
return output;
|
|
16682
16689
|
if (event.type === "pulpo.agent.tool.delta") {
|
|
@@ -17110,7 +17117,7 @@ var DEFAULT_INSTRUCTION_PRESETS = [{
|
|
|
17110
17117
|
title: "Casual",
|
|
17111
17118
|
instructions: DEFAULT_CASUAL_INSTRUCTIONS,
|
|
17112
17119
|
color: "#f7b75f",
|
|
17113
|
-
defaultEnabled:
|
|
17120
|
+
defaultEnabled: false
|
|
17114
17121
|
}];
|
|
17115
17122
|
var instructionPresetsSchema = external_exports.array(instructionPresetSchema).max(50).superRefine((presets, context) => {
|
|
17116
17123
|
const seen = /* @__PURE__ */ new Set();
|
|
@@ -18010,7 +18017,7 @@ async function runModelTest(input) {
|
|
|
18010
18017
|
}
|
|
18011
18018
|
|
|
18012
18019
|
// src/index.ts
|
|
18013
|
-
var CLI_VERSION = true ? "0.81.
|
|
18020
|
+
var CLI_VERSION = true ? "0.81.2" : "0.1.0";
|
|
18014
18021
|
var CLI_BUNDLED = true;
|
|
18015
18022
|
var commandIo = /* @__PURE__ */ new WeakMap();
|
|
18016
18023
|
var commandClientFactory = /* @__PURE__ */ new WeakMap();
|