@promptbook/templates 0.94.0-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 +1 -6
- package/esm/index.es.js +10 -10
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/cli.index.d.ts +4 -0
- package/esm/typings/src/_packages/core.index.d.ts +2 -0
- package/esm/typings/src/_packages/ollama.index.d.ts +8 -0
- package/esm/typings/src/_packages/types.index.d.ts +2 -0
- package/esm/typings/src/_packages/wizzard.index.d.ts +4 -0
- package/esm/typings/src/execution/ExecutionTask.d.ts +3 -1
- package/esm/typings/src/llm-providers/ollama/OllamaExecutionTools.d.ts +19 -0
- package/esm/typings/src/llm-providers/ollama/OllamaExecutionToolsOptions.d.ts +12 -0
- package/esm/typings/src/llm-providers/ollama/createOllamaExecutionTools.d.ts +11 -0
- package/esm/typings/src/llm-providers/ollama/playground/playground.d.ts +6 -0
- package/esm/typings/src/llm-providers/ollama/register-configuration.d.ts +14 -0
- package/esm/typings/src/llm-providers/ollama/register-constructor.d.ts +15 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +10 -10
- package/umd/index.umd.js.map +1 -1
package/README.md
CHANGED
|
@@ -62,8 +62,6 @@ Rest of the documentation is common for **entire promptbook ecosystem**:
|
|
|
62
62
|
|
|
63
63
|
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**!
|
|
64
64
|
|
|
65
|
-
|
|
66
|
-
|
|
67
65
|
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!
|
|
68
66
|
|
|
69
67
|
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.
|
|
@@ -249,8 +247,6 @@ Personas can have access to different knowledge, tools and actions. They can als
|
|
|
249
247
|
|
|
250
248
|
- [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
|
|
251
249
|
|
|
252
|
-
|
|
253
|
-
|
|
254
250
|
### **3. How:** Knowledge, Instruments and Actions
|
|
255
251
|
|
|
256
252
|
The resources used by the personas are used to do the work.
|
|
@@ -311,6 +307,7 @@ Or you can install them separately:
|
|
|
311
307
|
- **[@promptbook/vercel](https://www.npmjs.com/package/@promptbook/vercel)** - Adapter for Vercel functionalities
|
|
312
308
|
- **[@promptbook/google](https://www.npmjs.com/package/@promptbook/google)** - Integration with Google's Gemini API
|
|
313
309
|
- **[@promptbook/deepseek](https://www.npmjs.com/package/@promptbook/deepseek)** - Integration with [DeepSeek API](https://www.deepseek.com/)
|
|
310
|
+
- **[@promptbook/ollama](https://www.npmjs.com/package/@promptbook/ollama)** - Integration with [Ollama](https://ollama.com/) API
|
|
314
311
|
- **[@promptbook/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
|
|
315
312
|
|
|
316
313
|
- **[@promptbook/fake-llm](https://www.npmjs.com/package/@promptbook/fake-llm)** - Mocked execution tools for testing the library and saving the tokens
|
|
@@ -349,8 +346,6 @@ The following glossary is used to clarify certain concepts:
|
|
|
349
346
|
|
|
350
347
|
_Note: This section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
351
348
|
|
|
352
|
-
|
|
353
|
-
|
|
354
349
|
### 💯 Core concepts
|
|
355
350
|
|
|
356
351
|
- [📚 Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
|
package/esm/index.es.js
CHANGED
|
@@ -16,7 +16,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
16
16
|
* @generated
|
|
17
17
|
* @see https://github.com/webgptorg/promptbook
|
|
18
18
|
*/
|
|
19
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.94.0-
|
|
19
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.94.0-1';
|
|
20
20
|
/**
|
|
21
21
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
22
22
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1571,7 +1571,7 @@ function getTemplatesPipelineCollection() {
|
|
|
1571
1571
|
"preparations": [
|
|
1572
1572
|
{
|
|
1573
1573
|
"id": 1,
|
|
1574
|
-
"promptbookVersion": "0.
|
|
1574
|
+
"promptbookVersion": "0.94.0-0",
|
|
1575
1575
|
"usage": {
|
|
1576
1576
|
"price": {
|
|
1577
1577
|
"value": 0.017265000000000003
|
|
@@ -2067,7 +2067,7 @@ function getTemplatesPipelineCollection() {
|
|
|
2067
2067
|
"preparations": [
|
|
2068
2068
|
{
|
|
2069
2069
|
"id": 1,
|
|
2070
|
-
"promptbookVersion": "0.
|
|
2070
|
+
"promptbookVersion": "0.94.0-0",
|
|
2071
2071
|
"usage": {
|
|
2072
2072
|
"price": {
|
|
2073
2073
|
"value": 0.017265000000000003
|
|
@@ -2472,7 +2472,7 @@ function getTemplatesPipelineCollection() {
|
|
|
2472
2472
|
"preparations": [
|
|
2473
2473
|
{
|
|
2474
2474
|
"id": 1,
|
|
2475
|
-
"promptbookVersion": "0.
|
|
2475
|
+
"promptbookVersion": "0.94.0-0",
|
|
2476
2476
|
"usage": {
|
|
2477
2477
|
"price": {
|
|
2478
2478
|
"value": 0.016422
|
|
@@ -2620,7 +2620,7 @@ function getTemplatesPipelineCollection() {
|
|
|
2620
2620
|
"preparations": [
|
|
2621
2621
|
{
|
|
2622
2622
|
"id": 1,
|
|
2623
|
-
"promptbookVersion": "0.
|
|
2623
|
+
"promptbookVersion": "0.94.0-0",
|
|
2624
2624
|
"usage": {
|
|
2625
2625
|
"price": {
|
|
2626
2626
|
"value": 0.016332
|
|
@@ -2716,7 +2716,7 @@ function getTemplatesPipelineCollection() {
|
|
|
2716
2716
|
"preparations": [
|
|
2717
2717
|
{
|
|
2718
2718
|
"id": 1,
|
|
2719
|
-
"promptbookVersion": "0.
|
|
2719
|
+
"promptbookVersion": "0.94.0-0",
|
|
2720
2720
|
"usage": {
|
|
2721
2721
|
"price": {
|
|
2722
2722
|
"value": 0
|
|
@@ -2859,7 +2859,7 @@ function getTemplatesPipelineCollection() {
|
|
|
2859
2859
|
"preparations": [
|
|
2860
2860
|
{
|
|
2861
2861
|
"id": 1,
|
|
2862
|
-
"promptbookVersion": "0.
|
|
2862
|
+
"promptbookVersion": "0.94.0-0",
|
|
2863
2863
|
"usage": {
|
|
2864
2864
|
"price": {
|
|
2865
2865
|
"value": 0.016719
|
|
@@ -3015,7 +3015,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3015
3015
|
"preparations": [
|
|
3016
3016
|
{
|
|
3017
3017
|
"id": 1,
|
|
3018
|
-
"promptbookVersion": "0.
|
|
3018
|
+
"promptbookVersion": "0.94.0-0",
|
|
3019
3019
|
"usage": {
|
|
3020
3020
|
"price": {
|
|
3021
3021
|
"value": 0.016899
|
|
@@ -3348,7 +3348,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3348
3348
|
"preparations": [
|
|
3349
3349
|
{
|
|
3350
3350
|
"id": 1,
|
|
3351
|
-
"promptbookVersion": "0.
|
|
3351
|
+
"promptbookVersion": "0.94.0-0",
|
|
3352
3352
|
"usage": {
|
|
3353
3353
|
"price": {
|
|
3354
3354
|
"value": 0.017847000000000002
|
|
@@ -3495,7 +3495,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3495
3495
|
"preparations": [
|
|
3496
3496
|
{
|
|
3497
3497
|
"id": 1,
|
|
3498
|
-
"promptbookVersion": "0.
|
|
3498
|
+
"promptbookVersion": "0.94.0-0",
|
|
3499
3499
|
"usage": {
|
|
3500
3500
|
"price": {
|
|
3501
3501
|
"value": 0.016389
|