You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: packages/utils/README.md
+10-47
Original file line number
Diff line number
Diff line change
@@ -2,35 +2,26 @@
2
2
3
3
# ❄ Promptbook
4
4
5
-
6
-
7
-
8
5
[ Promptbook](https://badge.fury.io/js/promptbook.svg)](https://www.npmjs.com/package/promptbook)
9
6
[ Promptbook](https://packagequality.com/shield/promptbook.svg)](https://packagequality.com/#?package=promptbook)
- 💙 Working [the **Book** language v1.0.0](https://github.com/webgptorg/book)
20
13
- 🖤 Run books from CLI - `npx ptbk run path/to/your/book`
21
14
- 📚 Support of `.docx`, `.doc` and `.pdf` documents
22
15
- ✨ **Support of [OpenAI o1 model](https://openai.com/o1/)**
23
16
24
-
25
-
26
17
<blockquotestyle="color: #ff8811">
27
18
<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>.
28
19
</blockquote>
29
20
30
21
## 📦 Package `@promptbook/utils`
31
22
32
-
- Promptbooks are [divided into several](#-packages) packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
33
-
- This package `@promptbook/utils` is one part of the promptbook ecosystem.
23
+
-Promptbooks are [divided into several](#-packages) packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
24
+
-This package `@promptbook/utils` is one part of the promptbook ecosystem.
34
25
35
26
To install this package, run:
36
27
@@ -74,20 +65,20 @@ unwrapResult('Best greeting for the user is "Hi Pavol!"'); // 'Hi Pavol!'
74
65
75
66
## Templating
76
67
77
-
There is a function `replaceParameters` which is used to replace the parameters in given template optimized to LLM prompt templates.
68
+
There is a function `templateParameters` which is used to replace the parameters in given template optimized to LLM prompt templates.
See also the documentation for all the functions in the `@promptbook/utils` package, every function is documented by jsdoc, typed by typescript and tested by jest.
158
149
159
-
160
-
161
150
`assertsExecutionSuccessful`,
162
151
`checkExpectations`,
163
152
`executionReportJsonToString`,
164
153
`isPassingExpectations`,
165
154
`isValidJsonString`,
166
-
`parseNumber`
167
-
155
+
`parseNumber`
168
156
169
157
---
170
158
171
159
Rest of the documentation is common for **entire promptbook ecosystem**:
172
160
173
-
174
-
175
-
176
161
## 🤍 The Book Abstract
177
162
178
163
**It's time for a paradigm shift! The future of software is in plain English, French or Latin.**
@@ -187,8 +172,6 @@ This shift is going to happen, whether we are ready for it or not. Our mission i
187
172
188
173
**Join us in this journey!**
189
174
190
-
191
-
192
175
## 🚀 Get started
193
176
194
177
Take a look at the simple starter kit with books integrated into the **Hello World** sample applications:
@@ -197,9 +180,6 @@ Take a look at the simple starter kit with books integrated into the **Hello Wor
197
180
-[Hello Book in Node.js](https://github.com/webgptorg/hello-world-node-js)
198
181
-[Hello Book in Next.js](https://github.com/webgptorg/hello-world-next-js)
199
182
200
-
201
-
202
-
203
183
## 💜 The Promptbook Project
204
184
205
185
Promptbook project is ecosystem of multiple projects and tools, following is a list of most important pieces of the project:
@@ -253,13 +233,8 @@ Also we have a community of developers and users:
Following is the documentation and blueprint of the Book language.
@@ -335,8 +310,6 @@ Todo todo
335
310
336
311
### Examples
337
312
338
-
339
-
340
313
## 📦 Packages _(for developers)_
341
314
342
315
This library is divided into several packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
@@ -360,7 +333,7 @@ Or you can install them separately:
360
333
-_(Not finished)_**[@promptbook/wizzard](https://www.npmjs.com/package/@promptbook/wizzard)** - Wizard for creating+running promptbooks in single line
361
334
-**[@promptbook/execute-javascript](https://www.npmjs.com/package/@promptbook/execute-javascript)** - Execution tools for javascript inside promptbooks
362
335
-**[@promptbook/openai](https://www.npmjs.com/package/@promptbook/openai)** - Execution tools for OpenAI API, wrapper around OpenAI SDK
363
-
-**[@promptbook/anthropic-claude](https://www.npmjs.com/package/@promptbook/anthropic-claude)** - Execution tools for Anthropic Claude API, wrapper around Anthropic Claude SDK
336
+
-**[@promptbook/anthropic-claude](https://www.npmjs.com/package/@promptbook/anthropic-claude)** - Execution tools for Anthropic Claude API, wrapper around Anthropic Claude SDK
364
337
-**[@promptbook/vercel](https://www.npmjs.com/package/@promptbook/vercel)** - Adapter for Vercel functionalities
365
338
-**[@promptbook/google](https://www.npmjs.com/package/@promptbook/google)** - Integration with Google's Gemini API
366
339
-**[@promptbook/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
@@ -377,11 +350,6 @@ Or you can install them separately:
377
350
-**[@promptbook/types](https://www.npmjs.com/package/@promptbook/types)** - Just typescript types used in the library
378
351
-**[@promptbook/cli](https://www.npmjs.com/package/@promptbook/cli)** - Command line interface utilities for promptbooks
379
352
380
-
381
-
382
-
383
-
384
-
385
353
## 📚 Dictionary
386
354
387
355
### 📚 Dictionary
@@ -464,8 +432,6 @@ _Note: Thos section is not complete dictionary, more list of general AI / LLM te
464
432
- Anonymous mode
465
433
- Application mode
466
434
467
-
468
-
469
435
## 🔌 Usage in Typescript / Javascript
470
436
471
437
-[Simple usage](./examples/usage/simple-script)
@@ -530,11 +496,8 @@ See [CHANGELOG.md](./CHANGELOG.md)
530
496
531
497
See [TODO.md](./TODO.md)
532
498
533
-
534
-
535
-
536
499
## 🖋️ Contributing
537
500
538
501
I am open to pull requests, feedback, and suggestions. Or if you like this utility, you can [☕ buy me a coffee](https://www.buymeacoffee.com/hejny) or [donate via cryptocurrencies](https://github.com/hejny/hejny/blob/main/documents/crypto.md).
539
502
540
-
You can also ⭐ star the promptbook package, [follow me on GitHub](https://github.com/hejny) or [various other social networks](https://www.pavolhejny.com/contact/).
503
+
You can also ⭐ star the promptbook package, [follow me on GitHub](https://github.com/hejny) or [various other social networks](https://www.pavolhejny.com/contact/).
0 commit comments