@butlerbot/sdk 0.0.31 → 0.0.32

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.
@@ -207,6 +207,16 @@ export type ResponseStatusPayload = {
207
207
  /** When the stop was requested. */
208
208
  at: number;
209
209
  };
210
+ /**
211
+ * Messages steered into the turn that never reached the model, in the order they were sent.
212
+ *
213
+ * Steering only lands at a step boundary, and a turn does not always have another one: it
214
+ * stops, it fails, or the model answers without needing a further step. The text is not in
215
+ * the conversation's history — it was never said to anyone — so it is handed back here and
216
+ * the client decides what to do with it. Send it as an ordinary message when the turn
217
+ * merely ended; put it back in front of the user when they are the one who stopped it.
218
+ */
219
+ undeliveredSteer?: string[];
210
220
  /** Rich response metadata — only present on the final `completed: true` event.
211
221
  * Populated by the caller (e.g. gateway) after the response finishes and usage is available. */
212
222
  metadata?: ResponseMetadata;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@butlerbot/sdk",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "description": "The official ButlerBot SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",