ptbk 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 +2 -9
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -216,6 +216,8 @@ Or you can install them separately:
|
|
|
216
216
|
- **[@promptbook/execute-javascript](https://www.npmjs.com/package/@promptbook/execute-javascript)** - Execution tools for javascript inside promptbooks
|
|
217
217
|
- **[@promptbook/openai](https://www.npmjs.com/package/@promptbook/openai)** - Execution tools for OpenAI API, wrapper around OpenAI SDK
|
|
218
218
|
- **[@promptbook/anthropic-claude](https://www.npmjs.com/package/@promptbook/anthropic-claude)** - Execution tools for Anthropic Claude API, wrapper around Anthropic Claude SDK
|
|
219
|
+
- **[@promptbook/vercel](https://www.npmjs.com/package/@promptbook/vercel)** - Adapter for Vercel functionalities
|
|
220
|
+
- **[@promptbook/gemini](https://www.npmjs.com/package/@promptbook/gemini)** - Integration with Google's Gemini API
|
|
219
221
|
- **[@promptbook/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
|
|
220
222
|
- **[@promptbook/langtail](https://www.npmjs.com/package/@promptbook/langtail)** - Execution tools for Langtail API, wrapper around Langtail SDK
|
|
221
223
|
- **[@promptbook/fake-llm](https://www.npmjs.com/package/@promptbook/fake-llm)** - Mocked execution tools for testing the library and saving the tokens
|
|
@@ -235,11 +237,6 @@ Or you can install them separately:
|
|
|
235
237
|
|
|
236
238
|
## 📚 Dictionary
|
|
237
239
|
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
240
|
### 📚 Dictionary
|
|
244
241
|
|
|
245
242
|
The following glossary is used to clarify certain concepts:
|
|
@@ -255,8 +252,6 @@ The following glossary is used to clarify certain concepts:
|
|
|
255
252
|
- **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.
|
|
256
253
|
- **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.
|
|
257
254
|
|
|
258
|
-
|
|
259
|
-
|
|
260
255
|
_Note: Thos section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
261
256
|
|
|
262
257
|
#### Promptbook core
|
|
@@ -317,8 +312,6 @@ _Note: Thos section is not complete dictionary, more list of general AI / LLM te
|
|
|
317
312
|
- [👮 Agent adversary expectations](https://github.com/webgptorg/promptbook/discussions/39)
|
|
318
313
|
- [view more](https://github.com/webgptorg/promptbook/discussions/categories/concepts)
|
|
319
314
|
|
|
320
|
-
|
|
321
|
-
|
|
322
315
|
### Terms specific to Promptbook TypeScript implementation
|
|
323
316
|
|
|
324
317
|
- Anonymous mode
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ptbk",
|
|
3
|
-
"version": "0.
|
|
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,
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
}
|
|
52
52
|
],
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@promptbook/core": "0.
|
|
54
|
+
"@promptbook/core": "0.76.0"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"promptbook": "0.
|
|
57
|
+
"promptbook": "0.76.0"
|
|
58
58
|
}
|
|
59
59
|
}
|