@promptbook/core 0.89.0-21 β 0.89.0-28
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 +5 -2
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/remote-server/openapi.d.ts +187 -0
- package/package.json +1 -1
- package/umd/index.umd.js +5 -2
- package/umd/index.umd.js.map +1 -1
package/esm/index.es.js
CHANGED
|
@@ -27,7 +27,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
27
27
|
* @generated
|
|
28
28
|
* @see https://github.com/webgptorg/promptbook
|
|
29
29
|
*/
|
|
30
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.89.0-
|
|
30
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.89.0-28';
|
|
31
31
|
/**
|
|
32
32
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
33
33
|
* Note: [π] Ignore a discrepancy between file name and entity name
|
|
@@ -170,10 +170,12 @@ const REMOTE_SERVER_URLS = [
|
|
|
170
170
|
owner: 'AI Web, LLC <legal@ptbk.io> (https://www.ptbk.io/)',
|
|
171
171
|
isAnonymousModeAllowed: true,
|
|
172
172
|
urls: [
|
|
173
|
-
'https://s5.ptbk.io/
|
|
173
|
+
'https://promptbook.s5.ptbk.io/',
|
|
174
174
|
// Note: Servers 1-4 are not running
|
|
175
175
|
],
|
|
176
176
|
},
|
|
177
|
+
/*
|
|
178
|
+
Note: Working on older version of Promptbook and not supported anymore
|
|
177
179
|
{
|
|
178
180
|
title: 'Pavol Promptbook Server',
|
|
179
181
|
description: `Personal server of Pavol HejnΓ½ with simple testing server, DO NOT USE IT FOR PRODUCTION`,
|
|
@@ -181,6 +183,7 @@ const REMOTE_SERVER_URLS = [
|
|
|
181
183
|
isAnonymousModeAllowed: true,
|
|
182
184
|
urls: ['https://api.pavolhejny.com/promptbook'],
|
|
183
185
|
},
|
|
186
|
+
*/
|
|
184
187
|
];
|
|
185
188
|
/**
|
|
186
189
|
* Note: [π] Ignore a discrepancy between file name and entity name
|