ptbk 0.75.9 → 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 +10 -11
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ Promptbook project is ecosystem of multiple projects and tools, following is a l
|
|
|
71
71
|
<tr>
|
|
72
72
|
<td>Core</td>
|
|
73
73
|
<td>Promptbook Core is a description and documentation of the basic concepts, ideas and inner workings of how Promptbook should be implemented, and defines what features must be describable by book language.</td>
|
|
74
|
-
<td rowspan=2>https://
|
|
74
|
+
<td rowspan=2>https://github.com/webgptorg/book</td>
|
|
75
75
|
</tr>
|
|
76
76
|
<tr>
|
|
77
77
|
<td>Book language</td>
|
|
@@ -82,7 +82,7 @@ Promptbook project is ecosystem of multiple projects and tools, following is a l
|
|
|
82
82
|
<tr>
|
|
83
83
|
<td>Promptbook typescript project</td>
|
|
84
84
|
<td>Promptbook implementation in TypeScript released as multiple NPM packages</td>
|
|
85
|
-
<td>https://github.com/webgptorg/promptbook + Multiple packages on NPM</td>
|
|
85
|
+
<td>https://github.com/webgptorg/promptbook + <a href="https://www.npmjs.com/package/@promptbook/core#-packages-for-developers">Multiple packages published on NPM</a></td>
|
|
86
86
|
</tr>
|
|
87
87
|
<tr>
|
|
88
88
|
<td>Promptbook studio</td>
|
|
@@ -102,6 +102,12 @@ Promptbook project is ecosystem of multiple projects and tools, following is a l
|
|
|
102
102
|
</tbody>
|
|
103
103
|
</table>
|
|
104
104
|
|
|
105
|
+
Also we have a community of developers and users:
|
|
106
|
+
|
|
107
|
+
- [Discord](https://discord.gg/x3QWNaa89N)
|
|
108
|
+
- [Landing page](https://ptbk.io)
|
|
109
|
+
- [Github discussions](https://github.com/webgptorg/promptbook/discussions)
|
|
110
|
+
|
|
105
111
|
|
|
106
112
|
|
|
107
113
|
## 💙 Book language _(for prompt-engineer)_
|
|
@@ -210,6 +216,8 @@ Or you can install them separately:
|
|
|
210
216
|
- **[@promptbook/execute-javascript](https://www.npmjs.com/package/@promptbook/execute-javascript)** - Execution tools for javascript inside promptbooks
|
|
211
217
|
- **[@promptbook/openai](https://www.npmjs.com/package/@promptbook/openai)** - Execution tools for OpenAI API, wrapper around OpenAI SDK
|
|
212
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
|
|
213
221
|
- **[@promptbook/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
|
|
214
222
|
- **[@promptbook/langtail](https://www.npmjs.com/package/@promptbook/langtail)** - Execution tools for Langtail API, wrapper around Langtail SDK
|
|
215
223
|
- **[@promptbook/fake-llm](https://www.npmjs.com/package/@promptbook/fake-llm)** - Mocked execution tools for testing the library and saving the tokens
|
|
@@ -229,11 +237,6 @@ Or you can install them separately:
|
|
|
229
237
|
|
|
230
238
|
## 📚 Dictionary
|
|
231
239
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
240
|
### 📚 Dictionary
|
|
238
241
|
|
|
239
242
|
The following glossary is used to clarify certain concepts:
|
|
@@ -249,8 +252,6 @@ The following glossary is used to clarify certain concepts:
|
|
|
249
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.
|
|
250
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.
|
|
251
254
|
|
|
252
|
-
|
|
253
|
-
|
|
254
255
|
_Note: Thos section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
255
256
|
|
|
256
257
|
#### Promptbook core
|
|
@@ -311,8 +312,6 @@ _Note: Thos section is not complete dictionary, more list of general AI / LLM te
|
|
|
311
312
|
- [👮 Agent adversary expectations](https://github.com/webgptorg/promptbook/discussions/39)
|
|
312
313
|
- [view more](https://github.com/webgptorg/promptbook/discussions/categories/concepts)
|
|
313
314
|
|
|
314
|
-
|
|
315
|
-
|
|
316
315
|
### Terms specific to Promptbook TypeScript implementation
|
|
317
316
|
|
|
318
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
|
}
|