@promptbook/documents 0.93.0 → 0.94.0-1

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 CHANGED
@@ -25,6 +25,10 @@ Write AI applications using plain human language across multiple models and plat
25
25
 
26
26
 
27
27
 
28
+ <blockquote style="color: #ff8811">
29
+ <b>⚠ Warning:</b> This is a pre-release version of the library. It is not yet ready for production use. Please look at <a href="https://www.npmjs.com/package/@promptbook/core?activeTab=versions">latest stable release</a>.
30
+ </blockquote>
31
+
28
32
  ## 📦 Package `@promptbook/documents`
29
33
 
30
34
  - Promptbooks are [divided into several](#-packages) packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
@@ -59,8 +63,6 @@ Rest of the documentation is common for **entire promptbook ecosystem**:
59
63
 
60
64
  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**!
61
65
 
62
-
63
-
64
66
  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!
65
67
 
66
68
  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.
@@ -246,8 +248,6 @@ Personas can have access to different knowledge, tools and actions. They can als
246
248
 
247
249
  - [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
248
250
 
249
-
250
-
251
251
  ### **3. How:** Knowledge, Instruments and Actions
252
252
 
253
253
  The resources used by the personas are used to do the work.
@@ -308,6 +308,7 @@ Or you can install them separately:
308
308
  - **[@promptbook/vercel](https://www.npmjs.com/package/@promptbook/vercel)** - Adapter for Vercel functionalities
309
309
  - **[@promptbook/google](https://www.npmjs.com/package/@promptbook/google)** - Integration with Google's Gemini API
310
310
  - **[@promptbook/deepseek](https://www.npmjs.com/package/@promptbook/deepseek)** - Integration with [DeepSeek API](https://www.deepseek.com/)
311
+ - **[@promptbook/ollama](https://www.npmjs.com/package/@promptbook/ollama)** - Integration with [Ollama](https://ollama.com/) API
311
312
  - **[@promptbook/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
312
313
 
313
314
  - **[@promptbook/fake-llm](https://www.npmjs.com/package/@promptbook/fake-llm)** - Mocked execution tools for testing the library and saving the tokens
@@ -346,8 +347,6 @@ The following glossary is used to clarify certain concepts:
346
347
 
347
348
  _Note: This section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
348
349
 
349
-
350
-
351
350
  ### 💯 Core concepts
352
351
 
353
352
  - [📚 Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
package/esm/index.es.js CHANGED
@@ -28,7 +28,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
28
28
  * @generated
29
29
  * @see https://github.com/webgptorg/promptbook
30
30
  */
31
- const PROMPTBOOK_ENGINE_VERSION = '0.93.0';
31
+ const PROMPTBOOK_ENGINE_VERSION = '0.94.0-1';
32
32
  /**
33
33
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
34
34
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -5782,6 +5782,13 @@ async function executePipeline(options) {
5782
5782
  * Note: This is a flag to prevent `onProgress` call after the pipeline execution is finished
5783
5783
  */
5784
5784
  let isReturned = false;
5785
+ // Note: Report all output parameters upfront as empty strings
5786
+ if (onProgress) {
5787
+ const emptyOutputParameters = Object.fromEntries(preparedPipeline.parameters.filter((param) => !param.isInput).map((param) => [param.name, '']));
5788
+ onProgress({
5789
+ outputParameters: emptyOutputParameters,
5790
+ });
5791
+ }
5785
5792
  // Note: Check that all input input parameters are defined
5786
5793
  for (const parameter of preparedPipeline.parameters.filter(({ isInput }) => isInput)) {
5787
5794
  if (inputParameters[parameter.name] === undefined) {