@promptbook/wizard 0.110.0-0 → 0.110.0-2
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/esm/index.es.js
CHANGED
|
@@ -37,7 +37,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
|
|
|
37
37
|
* @generated
|
|
38
38
|
* @see https://github.com/webgptorg/promptbook
|
|
39
39
|
*/
|
|
40
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.110.0-
|
|
40
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.110.0-2';
|
|
41
41
|
/**
|
|
42
42
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
43
43
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -9999,6 +9999,7 @@ const _OpenAiAssistantMetadataRegistration = $llmToolsMetadataRegister.register(
|
|
|
9999
9999
|
apiKey: 'sk-',
|
|
10000
10000
|
assistantId: 'asst_',
|
|
10001
10001
|
maxRequestsPerMinute: DEFAULT_MAX_REQUESTS_PER_MINUTE,
|
|
10002
|
+
isCreatingNewAssistantsAllowed: false,
|
|
10002
10003
|
},
|
|
10003
10004
|
};
|
|
10004
10005
|
},
|
|
@@ -10606,6 +10607,7 @@ class OpenAiAssistantExecutionTools extends OpenAiExecutionTools {
|
|
|
10606
10607
|
getAssistant(assistantId) {
|
|
10607
10608
|
return new OpenAiAssistantExecutionTools({
|
|
10608
10609
|
...this.options,
|
|
10610
|
+
isCreatingNewAssistantsAllowed: this.isCreatingNewAssistantsAllowed,
|
|
10609
10611
|
assistantId,
|
|
10610
10612
|
});
|
|
10611
10613
|
}
|