@promptbook/openai 0.86.5 → 0.86.6
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/README.md +13 -8
- package/esm/index.es.js +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +1 -1
package/README.md
CHANGED
|
@@ -291,17 +291,22 @@ Promptbook project is ecosystem of multiple projects and tools, following is a l
|
|
|
291
291
|
<tr>
|
|
292
292
|
<td><a href="https://github.com/webgptorg/book">Book language</a></td>
|
|
293
293
|
<td>
|
|
294
|
-
Book is a
|
|
294
|
+
Book is a human-understandable markup language for writing AI applications such as chatbots, knowledge bases, agents, avarars, translators, automations and more.
|
|
295
|
+
<hr>
|
|
295
296
|
There is also <a href="https://github.com/webgptorg/book-extension">a plugin for VSCode</a> to support <code>.book</code> file extension
|
|
296
297
|
</td>
|
|
297
298
|
</tr>
|
|
298
299
|
<tr>
|
|
299
300
|
<td><a href="https://github.com/webgptorg/promptbook">Promptbook Engine</a></td>
|
|
300
|
-
<td>
|
|
301
|
+
<td>
|
|
302
|
+
Promptbook engine can run applications written in Book language. It is released as <a href="https://www.npmjs.com/package/@promptbook/core#-packages-for-developers">multiple NPM packages</a> and <a href="https://hub.docker.com/r/hejny/promptbook">Docker HUB</a>
|
|
303
|
+
</td>
|
|
301
304
|
</tr>
|
|
302
305
|
<tr>
|
|
303
306
|
<td><a href="https://promptbook.studio">Promptbook Studio</a></td>
|
|
304
|
-
<td>
|
|
307
|
+
<td>
|
|
308
|
+
Promptbook.studio is a web-based editor and runner for book applications. It is still in the experimental MVP stage.
|
|
309
|
+
</td>
|
|
305
310
|
</tr>
|
|
306
311
|
</tbody>
|
|
307
312
|
</table>
|
|
@@ -320,25 +325,25 @@ And **Promptbook.studio** branded socials:
|
|
|
320
325
|
|
|
321
326
|
- [Instagram `@promptbook.studio`](https://www.instagram.com/promptbook.studio/)
|
|
322
327
|
|
|
323
|
-
|
|
324
|
-
|
|
325
328
|
And **Promptujeme** sub-brand:
|
|
326
329
|
|
|
327
|
-
|
|
330
|
+
_/Subbrand for Czech clients/_
|
|
331
|
+
|
|
328
332
|
|
|
329
333
|
|
|
330
334
|
|
|
331
335
|
- [Promptujeme.cz](https://www.promptujeme.cz/)
|
|
332
336
|
- [Facebook `Promptujeme`](https://www.facebook.com/promptujeme/)
|
|
333
337
|
|
|
334
|
-
|
|
335
338
|
And **Promptbook.city** branded socials:
|
|
336
339
|
|
|
337
|
-
|
|
340
|
+
_/Sub-brand for images and graphics generated via Promptbook prompting/_
|
|
338
341
|
|
|
339
342
|
- [Instagram `@promptbook.city`](https://www.instagram.com/promptbook.city/)
|
|
340
343
|
- [Facebook `Promptbook City`](https://www.facebook.com/61565718625569)
|
|
341
344
|
|
|
345
|
+
##
|
|
346
|
+
|
|
342
347
|
|
|
343
348
|
|
|
344
349
|
|
package/esm/index.es.js
CHANGED
|
@@ -16,7 +16,7 @@ var BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
16
16
|
* @generated
|
|
17
17
|
* @see https://github.com/webgptorg/promptbook
|
|
18
18
|
*/
|
|
19
|
-
var PROMPTBOOK_ENGINE_VERSION = '0.86.
|
|
19
|
+
var PROMPTBOOK_ENGINE_VERSION = '0.86.6';
|
|
20
20
|
/**
|
|
21
21
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
22
22
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/openai",
|
|
3
|
-
"version": "0.86.
|
|
3
|
+
"version": "0.86.6",
|
|
4
4
|
"description": "It's time for a paradigm shift. The future of software in plain English, French or Latin",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"module": "./esm/index.es.js",
|
|
48
48
|
"typings": "./esm/typings/src/_packages/openai.index.d.ts",
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@promptbook/core": "0.86.
|
|
50
|
+
"@promptbook/core": "0.86.6"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"colors": "1.4.0",
|
package/umd/index.umd.js
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* @generated
|
|
25
25
|
* @see https://github.com/webgptorg/promptbook
|
|
26
26
|
*/
|
|
27
|
-
var PROMPTBOOK_ENGINE_VERSION = '0.86.
|
|
27
|
+
var PROMPTBOOK_ENGINE_VERSION = '0.86.6';
|
|
28
28
|
/**
|
|
29
29
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
30
30
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|