@builder.io/ai-utils 0.0.32 → 0.0.33
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/messages.d.ts +9 -0
- package/package.json +1 -1
package/dist/messages.d.ts
CHANGED
|
@@ -60,6 +60,15 @@ export interface AssistantMessageParam {
|
|
|
60
60
|
arguments: any;
|
|
61
61
|
};
|
|
62
62
|
id?: string;
|
|
63
|
+
/**
|
|
64
|
+
* A summary of the patches which the assistant has made.
|
|
65
|
+
* Useful for genai.
|
|
66
|
+
*/
|
|
67
|
+
patches?: AssistantPatch[];
|
|
68
|
+
}
|
|
69
|
+
export interface AssistantPatch {
|
|
70
|
+
id: string;
|
|
71
|
+
type: string;
|
|
63
72
|
}
|
|
64
73
|
export interface SystemMessage extends SystemMessageParam {
|
|
65
74
|
id: string;
|