ptbk 0.94.0-0 → 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 +1 -8
- package/package.json +26 -3
package/README.md
CHANGED
@@ -163,16 +163,8 @@ Join our growing community of developers and users:
|
|
163
163
|
|
164
164
|
_A concise, Markdown-based DSL for crafting AI workflows and automations._
|
165
165
|
|
166
|
-
---
|
167
166
|
|
168
|
-
### 📑 Table of Contents
|
169
167
|
|
170
|
-
- [Introduction](#introduction)
|
171
|
-
- [Example](#example)
|
172
|
-
- [1. What: Workflows, Tasks & Parameters](#1-what-workflows-tasks--parameters)
|
173
|
-
- [2. Who: Personas](#2-who-personas)
|
174
|
-
- [3. How: Knowledge, Instruments & Actions](#3-how-knowledge-instruments-and-actions)
|
175
|
-
- [General Principles](#general-principles)
|
176
168
|
|
177
169
|
### Introduction
|
178
170
|
|
@@ -285,6 +277,7 @@ Or you can install them separately:
|
|
285
277
|
- **[@promptbook/vercel](https://www.npmjs.com/package/@promptbook/vercel)** - Adapter for Vercel functionalities
|
286
278
|
- **[@promptbook/google](https://www.npmjs.com/package/@promptbook/google)** - Integration with Google's Gemini API
|
287
279
|
- **[@promptbook/deepseek](https://www.npmjs.com/package/@promptbook/deepseek)** - Integration with [DeepSeek API](https://www.deepseek.com/)
|
280
|
+
- **[@promptbook/ollama](https://www.npmjs.com/package/@promptbook/ollama)** - Integration with [Ollama](https://ollama.com/) API
|
288
281
|
- **[@promptbook/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
|
289
282
|
|
290
283
|
- **[@promptbook/fake-llm](https://www.npmjs.com/package/@promptbook/fake-llm)** - Mocked execution tools for testing the library and saving the tokens
|
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"
|