@builder.io/ai-utils 0.0.25 → 0.0.26
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/completion.d.ts +8 -0
- package/dist/events.d.ts +1 -0
- package/package.json +1 -1
package/dist/completion.d.ts
CHANGED
|
@@ -83,6 +83,14 @@ export interface BuiderEditorState {
|
|
|
83
83
|
* Builder model. (not the LLM model)
|
|
84
84
|
*/
|
|
85
85
|
model?: BuilderModel;
|
|
86
|
+
/**
|
|
87
|
+
* Other models in the Builder account
|
|
88
|
+
*/
|
|
89
|
+
otherModels?: BuilderModel[];
|
|
90
|
+
/**
|
|
91
|
+
* Email of the user in the builder.
|
|
92
|
+
*/
|
|
93
|
+
userEmail?: string;
|
|
86
94
|
/**
|
|
87
95
|
* Selected ids in the builder.
|
|
88
96
|
*/
|
package/dist/events.d.ts
CHANGED