@pushwoosh/rpc-gateway-ai-assistant 0.1.336 → 0.1.337

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/data.js CHANGED
@@ -243,6 +243,9 @@ export const data = {
243
243
  },
244
244
  "turnCapHit": {
245
245
  "type": "boolean"
246
+ },
247
+ "usage": {
248
+ "type": "pushwoosh.agentrunner.v1.Usage"
246
249
  }
247
250
  }
248
251
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-ai-assistant",
3
- "version": "0.1.336",
3
+ "version": "0.1.337",
4
4
  "description": "AI Assistant api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -130,4 +130,6 @@ export type TurnDone = {
130
130
  error: string;
131
131
  turns: number;
132
132
  turnCapHit: boolean;
133
+ /** Turn totals from result.modelUsage; AssistantMessage.usage is a message_start snapshot. */
134
+ usage: Usage;
133
135
  };