@promptbook/cli 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/esm/index.es.js +833 -441
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/ollama.index.d.ts +6 -0
- package/esm/typings/src/_packages/openai.index.d.ts +2 -0
- package/esm/typings/src/execution/AvailableModel.d.ts +9 -1
- package/esm/typings/src/llm-providers/_common/filterModels.d.ts +2 -2
- package/esm/typings/src/llm-providers/{openai/computeUsage.d.ts → _common/utils/pricing.d.ts} +2 -2
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionToolsOptions.d.ts +1 -1
- package/esm/typings/src/llm-providers/azure-openai/AzureOpenAiExecutionToolsOptions.d.ts +1 -1
- package/esm/typings/src/llm-providers/deepseek/DeepseekExecutionToolsOptions.d.ts +1 -1
- package/esm/typings/src/llm-providers/google/GoogleExecutionToolsOptions.d.ts +1 -1
- package/esm/typings/src/llm-providers/ollama/OllamaExecutionTools.d.ts +36 -11
- package/esm/typings/src/llm-providers/ollama/OllamaExecutionToolsOptions.d.ts +23 -12
- package/esm/typings/src/llm-providers/ollama/createOllamaExecutionTools.d.ts +3 -3
- package/esm/typings/src/llm-providers/ollama/ollama-models.d.ts +14 -0
- package/esm/typings/src/llm-providers/openai/OpenAiAssistantExecutionToolsOptions.d.ts +1 -1
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +91 -0
- package/esm/typings/src/llm-providers/openai/OpenAiExecutionTools.d.ts +12 -53
- package/esm/typings/src/llm-providers/openai/OpenAiExecutionToolsOptions.d.ts +1 -1
- package/esm/typings/src/llm-providers/openai/createOpenAiExecutionTools.d.ts +2 -0
- package/esm/typings/src/llm-providers/openai/openai-models.d.ts +1 -7
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +24 -1
- package/umd/index.umd.js +837 -445
- package/umd/index.umd.js.map +1 -1
- /package/esm/typings/src/llm-providers/{openai/computeUsage.test.d.ts → _common/utils/pricing.test.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -114,6 +114,8 @@ Rest of the documentation is common for **entire promptbook ecosystem**:
|
|
|
114
114
|
|
|
115
115
|
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**!
|
|
116
116
|
|
|
117
|
+
|
|
118
|
+
|
|
117
119
|
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!
|
|
118
120
|
|
|
119
121
|
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.
|
|
@@ -239,16 +241,8 @@ Join our growing community of developers and users:
|
|
|
239
241
|
|
|
240
242
|
_A concise, Markdown-based DSL for crafting AI workflows and automations._
|
|
241
243
|
|
|
242
|
-
---
|
|
243
244
|
|
|
244
|
-
### 📑 Table of Contents
|
|
245
245
|
|
|
246
|
-
- [Introduction](#introduction)
|
|
247
|
-
- [Example](#example)
|
|
248
|
-
- [1. What: Workflows, Tasks & Parameters](#1-what-workflows-tasks--parameters)
|
|
249
|
-
- [2. Who: Personas](#2-who-personas)
|
|
250
|
-
- [3. How: Knowledge, Instruments & Actions](#3-how-knowledge-instruments-and-actions)
|
|
251
|
-
- [General Principles](#general-principles)
|
|
252
246
|
|
|
253
247
|
### Introduction
|
|
254
248
|
|
|
@@ -299,6 +293,8 @@ Personas can have access to different knowledge, tools and actions. They can als
|
|
|
299
293
|
|
|
300
294
|
- [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
|
|
301
295
|
|
|
296
|
+
|
|
297
|
+
|
|
302
298
|
### **3. How:** Knowledge, Instruments and Actions
|
|
303
299
|
|
|
304
300
|
The resources used by the personas are used to do the work.
|
|
@@ -398,6 +394,8 @@ The following glossary is used to clarify certain concepts:
|
|
|
398
394
|
|
|
399
395
|
_Note: This section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
400
396
|
|
|
397
|
+
|
|
398
|
+
|
|
401
399
|
### 💯 Core concepts
|
|
402
400
|
|
|
403
401
|
- [📚 Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
|