@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.
@@ -5589,6 +5589,9 @@ import { ${tools[0]?.name || "example"} } from "@granular/actions/backend";
5589
5589
  this.client.on("harness.model_stream", (data) => {
5590
5590
  this.emit("harness:model_stream", data);
5591
5591
  });
5592
+ this.client.on("harness.text_response.delta", (data) => {
5593
+ this.emit("harness:text_response_delta", data);
5594
+ });
5592
5595
  this.client.on("job.agent_message", (data) => {
5593
5596
  const normalized = normalizeJobAgentMessageEnvelope(data);
5594
5597
  if (!normalized) return;