@promptbook/azure-openai 0.94.0-13 → 0.94.0-14
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 +1 -10
- package/esm/index.es.js +1 -1
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +1 -1
package/README.md
CHANGED
|
@@ -261,8 +261,6 @@ Rest of the documentation is common for **entire promptbook ecosystem**:
|
|
|
261
261
|
|
|
262
262
|
During the computer revolution, we have seen [multiple generations of computer languages](https://github.com/webgptorg/promptbook/discussions/180), from the physical rewiring of the vacuum tubes through low-level machine code to the high-level languages like Python or JavaScript. And now, we're on the edge of the **next revolution**!
|
|
263
263
|
|
|
264
|
-
|
|
265
|
-
|
|
266
264
|
It's a revolution of writing software in **plain human language** that is understandable and executable by both humans and machines – and it's going to change everything!
|
|
267
265
|
|
|
268
266
|
The incredible growth in power of microprocessors and the Moore's Law have been the driving force behind the ever-more powerful languages, and it's been an amazing journey! Similarly, the large language models (like GPT or Claude) are the next big thing in language technology, and they're set to transform the way we interact with computers.
|
|
@@ -375,7 +373,7 @@ Join our growing community of developers and users:
|
|
|
375
373
|
<td><a href="https://www.instagram.com/promptbook.studio/">📸 Instagram @promptbook.studio</a></td>
|
|
376
374
|
<td>Visual updates, UI showcases, and design inspiration</td>
|
|
377
375
|
</tr>
|
|
378
|
-
|
|
376
|
+
|
|
379
377
|
</tbody>
|
|
380
378
|
</table>
|
|
381
379
|
|
|
@@ -388,9 +386,6 @@ Join our growing community of developers and users:
|
|
|
388
386
|
|
|
389
387
|
_A concise, Markdown-based DSL for crafting AI workflows and automations._
|
|
390
388
|
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
389
|
### Introduction
|
|
395
390
|
|
|
396
391
|
Book is a Markdown-based language that simplifies the creation of AI applications, workflows, and automations. With human-readable commands, you can define inputs, outputs, personas, knowledge sources, and actions—without needing model-specific details.
|
|
@@ -440,8 +435,6 @@ Personas can have access to different knowledge, tools and actions. They can als
|
|
|
440
435
|
|
|
441
436
|
- [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
|
|
442
437
|
|
|
443
|
-
|
|
444
|
-
|
|
445
438
|
### **3. How:** Knowledge, Instruments and Actions
|
|
446
439
|
|
|
447
440
|
The resources used by the personas are used to do the work.
|
|
@@ -541,8 +534,6 @@ The following glossary is used to clarify certain concepts:
|
|
|
541
534
|
|
|
542
535
|
_Note: This section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
543
536
|
|
|
544
|
-
|
|
545
|
-
|
|
546
537
|
### 💯 Core concepts
|
|
547
538
|
|
|
548
539
|
- [📚 Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
|
package/esm/index.es.js
CHANGED
|
@@ -18,7 +18,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
18
18
|
* @generated
|
|
19
19
|
* @see https://github.com/webgptorg/promptbook
|
|
20
20
|
*/
|
|
21
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.94.0-
|
|
21
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.94.0-14';
|
|
22
22
|
/**
|
|
23
23
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
24
24
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
|
|
|
15
15
|
export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
|
|
16
16
|
/**
|
|
17
17
|
* Represents the version string of the Promptbook engine.
|
|
18
|
-
* It follows semantic versioning (e.g., `0.94.0-
|
|
18
|
+
* It follows semantic versioning (e.g., `0.94.0-13`).
|
|
19
19
|
*
|
|
20
20
|
* @generated
|
|
21
21
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/azure-openai",
|
|
3
|
-
"version": "0.94.0-
|
|
3
|
+
"version": "0.94.0-14",
|
|
4
4
|
"description": "Promptbook: Run AI apps in plain human language across multiple models and platforms",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"module": "./esm/index.es.js",
|
|
87
87
|
"typings": "./esm/typings/src/_packages/azure-openai.index.d.ts",
|
|
88
88
|
"peerDependencies": {
|
|
89
|
-
"@promptbook/core": "0.94.0-
|
|
89
|
+
"@promptbook/core": "0.94.0-14"
|
|
90
90
|
},
|
|
91
91
|
"dependencies": {
|
|
92
92
|
"@azure/openai": "1.0.0-beta.12",
|
package/umd/index.umd.js
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* @generated
|
|
25
25
|
* @see https://github.com/webgptorg/promptbook
|
|
26
26
|
*/
|
|
27
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.94.0-
|
|
27
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.94.0-14';
|
|
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
|