@promptbook/types 0.75.10 → 0.76.0

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
@@ -261,6 +261,8 @@ Or you can install them separately:
261
261
  - **[@promptbook/execute-javascript](https://www.npmjs.com/package/@promptbook/execute-javascript)** - Execution tools for javascript inside promptbooks
262
262
  - **[@promptbook/openai](https://www.npmjs.com/package/@promptbook/openai)** - Execution tools for OpenAI API, wrapper around OpenAI SDK
263
263
  - **[@promptbook/anthropic-claude](https://www.npmjs.com/package/@promptbook/anthropic-claude)** - Execution tools for Anthropic Claude API, wrapper around Anthropic Claude SDK
264
+ - **[@promptbook/vercel](https://www.npmjs.com/package/@promptbook/vercel)** - Adapter for Vercel functionalities
265
+ - **[@promptbook/gemini](https://www.npmjs.com/package/@promptbook/gemini)** - Integration with Google's Gemini API
264
266
  - **[@promptbook/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
265
267
  - **[@promptbook/langtail](https://www.npmjs.com/package/@promptbook/langtail)** - Execution tools for Langtail API, wrapper around Langtail SDK
266
268
  - **[@promptbook/fake-llm](https://www.npmjs.com/package/@promptbook/fake-llm)** - Mocked execution tools for testing the library and saving the tokens
@@ -280,11 +282,6 @@ Or you can install them separately:
280
282
 
281
283
  ## 📚 Dictionary
282
284
 
283
-
284
-
285
-
286
-
287
-
288
285
  ### 📚 Dictionary
289
286
 
290
287
  The following glossary is used to clarify certain concepts:
@@ -300,8 +297,6 @@ The following glossary is used to clarify certain concepts:
300
297
  - **Retrieval-augmented generation** is a machine learning paradigm where a model generates text by retrieving relevant information from a large database of text. This approach combines the benefits of generative models and retrieval models.
301
298
  - **Longtail** refers to non-common or rare events, items, or entities that are not well-represented in the training data of machine learning models. Longtail items are often challenging for models to predict accurately.
302
299
 
303
-
304
-
305
300
  _Note: Thos section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
306
301
 
307
302
  #### Promptbook core
@@ -362,8 +357,6 @@ _Note: Thos section is not complete dictionary, more list of general AI / LLM te
362
357
  - [👮 Agent adversary expectations](https://github.com/webgptorg/promptbook/discussions/39)
363
358
  - [view more](https://github.com/webgptorg/promptbook/discussions/categories/concepts)
364
359
 
365
-
366
-
367
360
  ### Terms specific to Promptbook TypeScript implementation
368
361
 
369
362
  - Anonymous mode
@@ -0,0 +1,2 @@
1
+ import { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION } from '../version';
2
+ export { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION };
@@ -0,0 +1,2 @@
1
+ import { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION } from '../version';
2
+ export { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/types",
3
- "version": "0.75.10",
3
+ "version": "0.76.0",
4
4
  "description": "It's time for a paradigm shift. The future of software in plain English, French or Latin",
5
5
  "--note-0": " <- [🐊]",
6
6
  "private": false,
@@ -52,6 +52,6 @@
52
52
  ],
53
53
  "typings": "./esm/typings/src/_packages/types.index.d.ts",
54
54
  "peerDependencies": {
55
- "@promptbook/core": "0.75.10"
55
+ "@promptbook/core": "0.76.0"
56
56
  }
57
57
  }