@granular-software/sdk 0.4.48 → 0.4.49
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/agent-evals.js +3 -0
- package/dist/agent-evals.js.map +1 -1
- package/dist/agent-evals.mjs +3 -0
- package/dist/agent-evals.mjs.map +1 -1
- package/dist/cli/index.js +3 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/agent-evals.mjs
CHANGED
|
@@ -5563,6 +5563,9 @@ import { ${tools[0]?.name || "example"} } from "@granular/actions/backend";
|
|
|
5563
5563
|
this.client.on("harness.model_stream", (data) => {
|
|
5564
5564
|
this.emit("harness:model_stream", data);
|
|
5565
5565
|
});
|
|
5566
|
+
this.client.on("harness.text_response.delta", (data) => {
|
|
5567
|
+
this.emit("harness:text_response_delta", data);
|
|
5568
|
+
});
|
|
5566
5569
|
this.client.on("job.agent_message", (data) => {
|
|
5567
5570
|
const normalized = normalizeJobAgentMessageEnvelope(data);
|
|
5568
5571
|
if (!normalized) return;
|