ptbk 0.94.0-1 → 0.94.0-12
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 +6 -8
- package/package.json +26 -3
package/README.md
CHANGED
@@ -36,6 +36,8 @@ Write AI applications using plain human language across multiple models and plat
|
|
36
36
|
|
37
37
|
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**!
|
38
38
|
|
39
|
+
|
40
|
+
|
39
41
|
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!
|
40
42
|
|
41
43
|
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.
|
@@ -161,16 +163,8 @@ Join our growing community of developers and users:
|
|
161
163
|
|
162
164
|
_A concise, Markdown-based DSL for crafting AI workflows and automations._
|
163
165
|
|
164
|
-
---
|
165
166
|
|
166
|
-
### 📑 Table of Contents
|
167
167
|
|
168
|
-
- [Introduction](#introduction)
|
169
|
-
- [Example](#example)
|
170
|
-
- [1. What: Workflows, Tasks & Parameters](#1-what-workflows-tasks--parameters)
|
171
|
-
- [2. Who: Personas](#2-who-personas)
|
172
|
-
- [3. How: Knowledge, Instruments & Actions](#3-how-knowledge-instruments-and-actions)
|
173
|
-
- [General Principles](#general-principles)
|
174
168
|
|
175
169
|
### Introduction
|
176
170
|
|
@@ -221,6 +215,8 @@ Personas can have access to different knowledge, tools and actions. They can als
|
|
221
215
|
|
222
216
|
- [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
|
223
217
|
|
218
|
+
|
219
|
+
|
224
220
|
### **3. How:** Knowledge, Instruments and Actions
|
225
221
|
|
226
222
|
The resources used by the personas are used to do the work.
|
@@ -320,6 +316,8 @@ The following glossary is used to clarify certain concepts:
|
|
320
316
|
|
321
317
|
_Note: This section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
322
318
|
|
319
|
+
|
320
|
+
|
323
321
|
### 💯 Core concepts
|
324
322
|
|
325
323
|
- [📚 Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "ptbk",
|
3
|
-
"version": "0.94.0-
|
3
|
+
"version": "0.94.0-12",
|
4
4
|
"description": "Promptbook: Run AI apps in plain human language across multiple models and platforms",
|
5
5
|
"private": false,
|
6
6
|
"sideEffects": false,
|
@@ -36,6 +36,29 @@
|
|
36
36
|
"o1-mini",
|
37
37
|
"o1-preview",
|
38
38
|
"anthropic",
|
39
|
+
"claude",
|
40
|
+
"claude-3",
|
41
|
+
"claude-3-opus",
|
42
|
+
"claude-3-sonnet",
|
43
|
+
"claude-3-haiku",
|
44
|
+
"gemini",
|
45
|
+
"gemini-pro",
|
46
|
+
"gemini-flash",
|
47
|
+
"mixtral",
|
48
|
+
"mistral",
|
49
|
+
"ollama",
|
50
|
+
"ai-orchestration",
|
51
|
+
"prompt-engineering",
|
52
|
+
"llmops",
|
53
|
+
"multimodal",
|
54
|
+
"reasoning",
|
55
|
+
"rag",
|
56
|
+
"embeddings",
|
57
|
+
"function-calling",
|
58
|
+
"large-language-models",
|
59
|
+
"ai-application-framework",
|
60
|
+
"text-generation",
|
61
|
+
"ai-agents",
|
39
62
|
"LLMOps"
|
40
63
|
],
|
41
64
|
"license": "BUSL-1.1",
|
@@ -60,10 +83,10 @@
|
|
60
83
|
"words": []
|
61
84
|
},
|
62
85
|
"peerDependencies": {
|
63
|
-
"@promptbook/core": "0.94.0-
|
86
|
+
"@promptbook/core": "0.94.0-12"
|
64
87
|
},
|
65
88
|
"dependencies": {
|
66
|
-
"promptbook": "0.94.0-
|
89
|
+
"promptbook": "0.94.0-12"
|
67
90
|
},
|
68
91
|
"bin": {
|
69
92
|
"ptbk": "bin/promptbook-cli-proxy.js"
|