@pushwoosh/rpc-gateway-ai-assistant 0.1.437 → 0.1.438
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 +3 -0
- package/package.json +1 -1
- package/pushwoosh_accounts_assistant_v1.d.ts +5 -0
package/data.js
CHANGED
package/package.json
CHANGED
|
@@ -15,6 +15,11 @@ export type Message = {
|
|
|
15
15
|
timestamp: Date;
|
|
16
16
|
usage: UsageInfo;
|
|
17
17
|
actions: SuggestedAction[];
|
|
18
|
+
/**
|
|
19
|
+
* iteration_capped marks the row a turn left when it ran out of steps with work left; the
|
|
20
|
+
* widget offers Continue on it. Its content may be empty.
|
|
21
|
+
*/
|
|
22
|
+
iterationCapped: boolean;
|
|
18
23
|
};
|
|
19
24
|
/**
|
|
20
25
|
* SuggestedAction represents a model-proposed follow-up action shown as a button.
|