@builder.io/ai-utils 0.0.63 → 0.0.64
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/package.json +1 -1
package/dist/completion.d.ts
CHANGED
|
@@ -68,6 +68,14 @@ export interface CompletionOptions {
|
|
|
68
68
|
* Defaults to `true`.
|
|
69
69
|
*/
|
|
70
70
|
stream?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Provide a system prompt id to lookup a pre-defined system prompt
|
|
73
|
+
* text sent to the LLM. Must be a pre-defined system prompt id!
|
|
74
|
+
*/
|
|
75
|
+
systemPromptIds?: {
|
|
76
|
+
"semantic-tags"?: string;
|
|
77
|
+
"content-edit"?: string;
|
|
78
|
+
};
|
|
71
79
|
}
|
|
72
80
|
export interface BuilderEditorState {
|
|
73
81
|
/**
|