@promptbook/openai
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
818 lines (568 loc) โข 37.5 kB
Markdown
<!-- โ ๏ธ WARNING: This code has been generated so that any manual changes will be overwritten -->
# โจ Promptbook: AI Agents
Turn your company's scattered knowledge into AI ready Books
[ Promptbook](https://badge.fury.io/js/promptbook.svg)](https://www.npmjs.com/package/promptbook)
[ Promptbook](https://packagequality.com/shield/promptbook.svg)](https://packagequality.com/#?package=promptbook)
[](https://snyk.io/test/github/webgptorg/promptbook)
[](https://github.com/webgptorg/promptbook/actions/workflows/test-books.yml)
[](https://github.com/webgptorg/promptbook/actions/workflows/test-build.yml)
[](https://github.com/webgptorg/promptbook/actions/workflows/test-lint.yml)
[](https://github.com/webgptorg/promptbook/actions/workflows/test-spell-check.yml)
[](https://github.com/webgptorg/promptbook/actions/workflows/test-types.yml)
[](https://github.com/webgptorg/promptbook/issues)
## ๐ New Features
- **Gemini 3 Support**
<blockquote style="color: #ff8811">
<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>.
</blockquote>
## ๐ฆ Package `@promptbook/openai`
- Promptbooks are [divided into several](#-packages) packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
- This package `@promptbook/openai` is one part of the promptbook ecosystem.
To install this package, run:
```bash
# Install entire promptbook ecosystem
npm i ptbk
# Install just this package to save space
npm install @promptbook/openai
```
OpenAI integration for Promptbook, providing execution tools for OpenAI GPT models, OpenAI Assistants, and OpenAI-compatible APIs within the Promptbook ecosystem.
## ๐ฏ Purpose and Motivation
This package bridges the gap between Promptbook's unified pipeline execution system and OpenAI's powerful language models. It provides a standardized interface for accessing OpenAI's various services while maintaining compatibility with Promptbook's execution framework, enabling seamless integration with different OpenAI offerings.
## ๐ง High-Level Functionality
The package offers three main integration paths:
- **Standard OpenAI API**: Direct integration with OpenAI's chat completions and embeddings
- **OpenAI Assistants**: Integration with OpenAI's Assistant API (GPTs)
- **OpenAI-Compatible APIs**: Support for third-party APIs that follow OpenAI's interface
- **Model Management**: Automatic model selection and configuration
- **Usage Tracking**: Built-in monitoring for tokens and costs
## โจ Key Features
- ๐ค **Multiple OpenAI Integrations** - Support for standard API, Assistants, and compatible services
- ๐ **Seamless Provider Switching** - Easy integration with other LLM providers
- ๐ฏ **Model Selection** - Access to all available OpenAI models with automatic selection
- ๐ง **Configuration Flexibility** - Support for custom endpoints, API keys, and parameters
- ๐ **Usage Tracking** - Built-in token usage and cost monitoring
- ๐ก๏ธ **Error Handling** - Comprehensive error handling and retry logic
- ๐ **Performance Optimization** - Caching and request optimization
- ๐ **OpenAI-Compatible Server** - Use Promptbook books as OpenAI-compatible models
## ๐งก Usage
```typescript
import { createPipelineExecutor } from '@promptbook/core';
import {
createPipelineCollectionFromDirectory,
$provideExecutionToolsForNode,
$provideFilesystemForNode,
$provideScrapersForNode,
$provideScriptingForNode,
} from '@promptbook/node';
import { JavascriptExecutionTools } from '@promptbook/javascript';
import { OpenAiExecutionTools } from '@promptbook/openai';
// ๐ Prepare the tools that will be used to compile and run your books
// Note: Here you can allow or deny some LLM providers, such as not providing DeepSeek for privacy reasons
const fs = $provideFilesystemForNode();
const llm = new OpenAiExecutionTools(
// <- TODO: [๐งฑ] Implement in a functional (not new Class) way
{
isVerbose: true,
apiKey: process.env.OPENAI_API_KEY,
},
);
const executables = await $provideExecutablesForNode();
const tools = {
llm,
fs,
scrapers: await $provideScrapersForNode({ fs, llm, executables }),
script: await $provideScriptingForNode({}),
};
// โถ Create whole pipeline collection
const collection = await createPipelineCollectionFromDirectory('./books', tools);
// โถ Get single Pipeline
const pipeline = await collection.getPipelineByUrl(`https://promptbook.studio/my-collection/write-article.book`);
// โถ Create executor - the function that will execute the Pipeline
const pipelineExecutor = createPipelineExecutor({ pipeline, tools });
// โถ Prepare input parameters
const inputParameters = { word: 'cat' };
// ๐โถ Execute the Pipeline
const result = await pipelineExecutor(inputParameters).asPromise({ isCrashedOnError: true });
// โถ Handle the result
const { isSuccessful, errors, outputParameters, executionReport } = result;
console.info(outputParameters);
```
## ๐คบ Usage with OpenAI's Assistants (GPTs)
> TODO: Write a guide how to use OpenAI's Assistants with Promptbook
## ๐งโโ๏ธ Wizard
Run books without any settings, boilerplate or struggle in Node.js:
```typescript
import { wizard } from '@promptbook/wizard';
const {
outputParameters: { joke },
} = await wizard.execute(`https://github.com/webgptorg/book/blob/main/books/templates/generic.book`, {
topic: 'Prague',
});
console.info(joke);
```
## ๐งโโ๏ธ Connect to LLM providers automatically
You can just use `$provideExecutionToolsForNode` function to create all required tools from environment variables like `ANTHROPIC_CLAUDE_API_KEY` and `OPENAI_API_KEY` automatically.
```typescript
import { createPipelineExecutor, createPipelineCollectionFromDirectory } from '@promptbook/core';
import { JavascriptExecutionTools } from '@promptbook/javascript';
import { $provideExecutionToolsForNode } from '@promptbook/node';
import { $provideFilesystemForNode } from '@promptbook/node';
// ๐ Prepare the tools that will be used to compile and run your books
// Note: Here you can allow or deny some LLM providers, such as not providing DeepSeek for privacy reasons
const tools = await $provideExecutionToolsForNode();
// โถ Create whole pipeline collection
const collection = await createPipelineCollectionFromDirectory('./books', tools);
// โถ Get single Pipeline
const pipeline = await collection.getPipelineByUrl(`https://promptbook.studio/my-collection/write-article.book`);
// โถ Create executor - the function that will execute the Pipeline
const pipelineExecutor = createPipelineExecutor({ pipeline, tools });
// โถ Prepare input parameters
const inputParameters = { word: 'dog' };
// ๐โถ Execute the Pipeline
const result = await pipelineExecutor(inputParameters).asPromise({ isCrashedOnError: true });
// โถ Handle the result
const { isSuccessful, errors, outputParameters, executionReport } = result;
console.info(outputParameters);
```
## ๐ Usage of multiple LLM providers
You can use multiple LLM providers in one Promptbook execution. The best model will be chosen automatically according to the prompt and the model's capabilities.
```typescript
import { createPipelineExecutor } from '@promptbook/core';
import {
createPipelineCollectionFromDirectory,
$provideExecutionToolsForNode,
$provideFilesystemForNode,
} from '@promptbook/node';
import { JavascriptExecutionTools } from '@promptbook/javascript';
import { OpenAiExecutionTools } from '@promptbook/openai';
import { AnthropicClaudeExecutionTools } from '@promptbook/anthropic-claude';
import { AzureOpenAiExecutionTools } from '@promptbook/azure-openai';
// โถ Prepare multiple tools
const fs = $provideFilesystemForNode();
const llm = [
// Note: You can use multiple LLM providers in one Promptbook execution.
// The best model will be chosen automatically according to the prompt and the model's capabilities.
new OpenAiExecutionTools(
// <- TODO: [๐งฑ] Implement in a functional (not new Class) way
{
apiKey: process.env.OPENAI_API_KEY,
},
),
new AnthropicClaudeExecutionTools(
// <- TODO: [๐งฑ] Implement in a functional (not new Class) way
{
apiKey: process.env.ANTHROPIC_CLAUDE_API_KEY,
},
),
new AzureOpenAiExecutionTools(
// <- TODO: [๐งฑ] Implement in a functional (not new Class) way
{
resourceName: process.env.AZUREOPENAI_RESOURCE_NAME,
deploymentName: process.env.AZUREOPENAI_DEPLOYMENT_NAME
apiKey: process.env.AZUREOPENAI_API_KEY,
},
),
];
const executables = await $provideExecutablesForNode();
const tools = {
llm,
fs,
scrapers: await $provideScrapersForNode({ fs, llm, executables }),
script: await $provideScriptingForNode({}),
};
// โถ Create whole pipeline collection
const collection = await createPipelineCollectionFromDirectory('./books', tools);
// โถ Get single Pipeline
const pipeline = await collection.getPipelineByUrl(`https://promptbook.studio/my-collection/write-article.book`);
// โถ Create executor - the function that will execute the Pipeline
const pipelineExecutor = createPipelineExecutor({ pipeline, tools });
// โถ Prepare input parameters
const inputParameters = { word: 'dog' };
// ๐โถ Execute the Pipeline
const result = await pipelineExecutor(inputParameters).asPromise({ isCrashedOnError: true });
// โถ Handle the result
const { isSuccessful, errors, outputParameters, executionReport } = result;
console.info(outputParameters);
```
### ๐ Integration with other models
See the other model integrations:
- [OpenAI](https://www.npmjs.com/package/@promptbook/openai)
- [Anthropic Claude](https://www.npmjs.com/package/@promptbook/anthropic-claude)
- [Google Gemini](https://www.npmjs.com/package/@promptbook/google)
- [Vercel](https://www.npmjs.com/package/@promptbook/vercel)
- [Azure OpenAI](https://www.npmjs.com/package/@promptbook/azure-openai)
## ๐ค Using Promptbook as an OpenAI-compatible model
You can use Promptbook books as if they were OpenAI models by using the OpenAI-compatible endpoint. This allows you to use the standard OpenAI SDK with Promptbook books.
First, start the Promptbook server:
```typescript
import { startRemoteServer } from '@promptbook/remote-server';
// Start the server
await startRemoteServer({
port: 3000,
collection: await createPipelineCollectionFromDirectory('./books'),
isAnonymousModeAllowed: true,
isApplicationModeAllowed: true,
});
```
Then use the standard OpenAI SDK with the server URL:
```typescript
import OpenAI from 'openai';
// Create OpenAI client pointing to your Promptbook server
const openai = new OpenAI({
baseURL: 'http://localhost:3000', // Your Promptbook server URL
apiKey: 'not-needed', // API key is not needed for Promptbook
});
// Use any Promptbook book as a model
const response = await openai.chat.completions.create({
model: 'https://promptbook.studio/my-collection/write-article.book', // Book URL as model name
messages: [
{
role: 'user',
content: 'Write a short story about a cat',
},
],
});
console.log(response.choices[0].message.content);
```
This allows you to:
- Use Promptbook books with any OpenAI-compatible client
- Integrate Promptbook into existing OpenAI-based applications
- Use Promptbook books as models in other AI frameworks
## ๐ฆ Exported Entities
### Version Information
- `BOOK_LANGUAGE_VERSION` - Current book language version
- `PROMPTBOOK_ENGINE_VERSION` - Current engine version
### Execution Tools Creation Functions
- `createOpenAiAssistantExecutionTools` - Create OpenAI Assistant execution tools
- `createOpenAiCompatibleExecutionTools` - Create OpenAI-compatible execution tools
- `createOpenAiExecutionTools` - Create standard OpenAI execution tools
### Model Information
- `OPENAI_MODELS` - Available OpenAI models configuration
### Execution Tools Classes
- `OpenAiAssistantExecutionTools` - OpenAI Assistant execution tools class
- `OpenAiCompatibleExecutionTools` - OpenAI-compatible execution tools class
- `OpenAiExecutionTools` - Standard OpenAI execution tools class
### Configuration Types
- `OpenAiAssistantExecutionToolsOptions` - Configuration options for OpenAI Assistant tools (type)
- `OpenAiCompatibleExecutionToolsOptions` - Configuration options for OpenAI-compatible tools (type)
- `OpenAiCompatibleExecutionToolsNonProxiedOptions` - Non-proxied configuration options (type)
- `OpenAiCompatibleExecutionToolsProxiedOptions` - Proxied configuration options (type)
- `OpenAiExecutionToolsOptions` - Configuration options for standard OpenAI tools (type)
### Provider Registrations
- `_OpenAiRegistration` - Standard OpenAI provider registration
- `_OpenAiAssistantRegistration` - OpenAI Assistant provider registration
- `_OpenAiCompatibleRegistration` - OpenAI-compatible provider registration
> ๐ก This package provides OpenAI integration for promptbook applications. For the core functionality, see [@promptbook/core](#-packages) or install all packages with `npm i ptbk`
---
Rest of the documentation is common for **entire promptbook ecosystem**:
## ๐ The Book Whitepaper
Nowadays, the biggest challenge for most business applications isn't the raw capabilities of AI models. Large language models such as GPT-5.2 and Claude-4.5 are incredibly capable.
The main challenge lies in **managing the context**, providing rules and knowledge, and narrowing the personality.
In Promptbook, you can define your context **using simple Books** that are very explicit, easy to understand and write, reliable, and highly portable.
<table style="border: 1px solid #777; border-radius: 10px;"><tr><td>
**<ins>Paul Smith</ins>**<br/>
<br/>
**PERSONA** You are a company lawyer.<br/>
Your job is to provide legal advice and support to the company and its employees.<br/>
**RULE** You are knowledgeable, professional, and detail-oriented.<br/>
TEAM You are part of the legal team of Paul Smith & Associรฉs, you discuss with {Emily White}, the head of the compliance department. {George Brown} is expert in corporate law and {Sophia Black} is expert in labor law.<br/>
</td></tr></table>
<div style="page-break-after: always;"></div>
### Aspects of great AI agent
We have created a language called **Book**, which allows you to write AI agents in their native language and create your own AI persona. Book provides a guide to define all the traits and commitments.
You can look at it as "prompting" _(or writing a system message)_, but decorated by **commitments**.
**Commitments** are special syntax elements that define contracts between you and the AI agent. They are transformed by Promptbook Engine into low-level parameters like which model to use, its temperature, system message, RAG index, MCP servers, and many other parameters. For some commitments _(for example `RULE` commitment)_ Promptbook Engine can even create adversary agents and extra checks to enforce the rules.
#### `Persona` commitment
Personas define the character of your AI persona, its role, and how it should interact with users. It sets the tone and style of communication.
<table style="border: 1px solid #777; border-radius: 10px;"><tr><td>
**<ins>Paul Smith & Associรฉs</ins>**<br/>
<br/>
**PERSONA** You are a company lawyer.<br/>
</td></tr></table>
#### `Knowledge` commitment
Knowledge Commitment allows you to provide specific information, facts, or context that the AI should be aware of when responding.
This can include domain-specific knowledge, company policies, or any other relevant information.
Promptbook Engine will automatically enforce this knowledge during interactions. When the knowledge is short enough, it will be included in the prompt. When it is too long, it will be stored in vector databases and RAG retrieved when needed. But you don't need to care about it.
<table style="border: 1px solid #777; border-radius: 10px;"><tr><td>
**<ins>Paul Smith & Associรฉs</ins>**<br/>
<br/>
**PERSONA** You are a company lawyer.<br/>
Your job is to provide legal advice and support to the company and its employees.<br/>
You are knowledgeable, professional, and detail-oriented.<br/>
<br/>
**KNOWLEDGE** https://company.com/company-policies.pdf<br/>
**KNOWLEDGE** https://company.com/internal-documents/employee-handbook.docx<br/>
</td></tr></table>
#### `Rule` commitment
Rules will enforce specific behaviors or constraints on the AI's responses. This can include ethical guidelines, communication styles, or any other rules you want the AI to follow.
Depending on rule strictness, Promptbook will either propagate it to the prompt or use other techniques, like adversary agent, to enforce it.
<table style="border: 1px solid #777; border-radius: 10px;"><tr><td>
**<ins>Paul Smith & Associรฉs</ins>**<br/>
<br/>
**PERSONA** You are a company lawyer.<br/>
Your job is to provide legal advice and support to the company and its employees.<br/>
You are knowledgeable, professional, and detail-oriented.<br/>
<br/>
**RULE** Always ensure compliance with laws and regulations.<br/>
**RULE** Never provide legal advice outside your area of expertise.<br/>
**RULE** Never provide legal advice about criminal law.<br/>
**KNOWLEDGE** https://company.com/company-policies.pdf<br/>
**KNOWLEDGE** https://company.com/internal-documents/employee-handbook.docx<br/>
</td></tr></table>
#### `Team` commitment
Team commitment allows you to define the team structure and advisory fellow members the AI can consult with. This allows the AI to simulate collaboration and consultation with other experts, enhancing the quality of its responses.
<table style="border: 1px solid #777; border-radius: 10px;"><tr><td>
**<ins>Paul Smith & Associรฉs</ins>**<br/>
<br/>
**PERSONA** You are a company lawyer.<br/>
Your job is to provide legal advice and support to the company and its employees.<br/>
You are knowledgeable, professional, and detail-oriented.<br/>
<br/>
**RULE** Always ensure compliance with laws and regulations.<br/>
**RULE** Never provide legal advice outside your area of expertise.<br/>
**RULE** Never provide legal advice about criminal law.<br/>
**KNOWLEDGE** https://company.com/company-policies.pdf<br/>
**KNOWLEDGE** https://company.com/internal-documents/employee-handbook.docx<br/>
TEAM You are part of the legal team of Paul Smith & Associรฉs, you discuss with {Emily White}, the head of the compliance department. {George Brown} is expert in corporate law and {Sophia Black} is expert in labor law.<br/>
</td></tr></table>
### Promptbook Ecosystem
!!!@@@
#### Promptbook Server
!!!@@@
#### Promptbook Engine
!!!@@@
## ๐ The Promptbook Project
Promptbook project is ecosystem of multiple projects and tools, following is a list of most important pieces of the project:
<table>
<thead>
<tr>
<th>Project</th>
<th>About</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://gallery.ptbk.io/">Agents Server</a></td>
<td>
Place where you "AI agents live". It allows to create, manage, deploy, and interact with AI agents created in Book language.
</td>
</tr>
<tr>
<td><a href="https://github.com/webgptorg/book">Book language</a></td>
<td>
Human-friendly, high-level language that abstracts away low-level details of AI. It allows to focus on personality, behavior, knowledge, and rules of AI agents rather than on models, parameters, and prompt engineering.
<hr>
There is also <a href="https://github.com/webgptorg/book-extension">a plugin for VSCode</a> to support <code>.book</code> file extension
</td>
</tr>
<tr>
<td><a href="https://github.com/webgptorg/promptbook">Promptbook Engine</a></td>
<td>
Promptbook engine can run AI agents based on Book language.
It is released as <a href="https://www.npmjs.com/package/@promptbook/core#-packages-for-developers">multiple NPM packages</a> and <a href="https://hub.docker.com/r/hejny/promptbook">Promptbook Agent Server as Docker Package</a>
Agent Server is based on Promptbook Engine.
</td>
</tr>
</tbody>
</table>
### ๐ Community & Social Media
Join our growing community of developers and users:
<table>
<thead>
<tr>
<th>Platform</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://discord.gg/x3QWNaa89N">๐ฌ Discord</a></td>
<td>Join our active developer community for discussions and support</td>
</tr>
<tr>
<td><a href="https://github.com/webgptorg/promptbook/discussions">๐ฃ๏ธ GitHub Discussions</a></td>
<td>Technical discussions, feature requests, and community Q&A</td>
</tr>
<tr>
<td><a href="https://linkedin.com/company/promptbook">๐ LinkedIn</a></td>
<td>Professional updates and industry insights</td>
</tr>
<tr>
<td><a href="https://www.facebook.com/61560776453536">๐ฑ Facebook</a></td>
<td>General announcements and community engagement</td>
</tr>
<tr>
<td><a href="https://ptbk.io">๐ ptbk.io</a></td>
<td>Official landing page with project information</td>
</tr>
</tbody>
</table>
### ๐ผ๏ธ Product & Brand Channels
#### Promptbook.studio
<table>
<tbody>
<tr>
<td><a href="https://www.instagram.com/promptbook.studio/">๐ธ Instagram @promptbook.studio</a></td>
<td>Visual updates, UI showcases, and design inspiration</td>
</tr>
</tbody>
</table>
## ๐ Documentation
See detailed guides and API reference in the [docs](https://github.com/webgptorg/promptbook/discussions/categories/concepts) or [online](https://discord.gg/x3QWNaa89N).
## ๐ Security
For information on reporting security vulnerabilities, see our [Security Policy](./SECURITY.md).
## ๐ฆ Packages _(for developers)_
This library is divided into several packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
You can install all of them at once:
```bash
npm i ptbk
```
Or you can install them separately:
> โญ Marked packages are worth to try first
- โญ **[ptbk](https://www.npmjs.com/package/ptbk)** - Bundle of all packages, when you want to install everything and you don't care about the size
- **[promptbook](https://www.npmjs.com/package/promptbook)** - Same as `ptbk`
- โญ๐งโโ๏ธ **[@promptbook/wizard](https://www.npmjs.com/package/@promptbook/wizard)** - Wizard to just run the books in node without any struggle
- **[@promptbook/core](https://www.npmjs.com/package/@promptbook/core)** - Core of the library, it contains the main logic for promptbooks
- **[@promptbook/node](https://www.npmjs.com/package/@promptbook/node)** - Core of the library for Node.js environment
- **[@promptbook/browser](https://www.npmjs.com/package/@promptbook/browser)** - Core of the library for browser environment
- โญ **[@promptbook/utils](https://www.npmjs.com/package/@promptbook/utils)** - Utility functions used in the library but also useful for individual use in preprocessing and postprocessing LLM inputs and outputs
- **[@promptbook/markdown-utils](https://www.npmjs.com/package/@promptbook/markdown-utils)** - Utility functions used for processing markdown
- _(Not finished)_ **[@promptbook/wizard](https://www.npmjs.com/package/@promptbook/wizard)** - Wizard for creating+running promptbooks in single line
- **[@promptbook/javascript](https://www.npmjs.com/package/@promptbook/javascript)** - Execution tools for javascript inside promptbooks
- **[@promptbook/openai](https://www.npmjs.com/package/@promptbook/openai)** - Execution tools for OpenAI API, wrapper around OpenAI SDK
- **[@promptbook/anthropic-claude](https://www.npmjs.com/package/@promptbook/anthropic-claude)** - Execution tools for Anthropic Claude API, wrapper around Anthropic Claude SDK
- **[@promptbook/vercel](https://www.npmjs.com/package/@promptbook/vercel)** - Adapter for Vercel functionalities
- **[@promptbook/google](https://www.npmjs.com/package/@promptbook/google)** - Integration with Google's Gemini API
- **[@promptbook/deepseek](https://www.npmjs.com/package/@promptbook/deepseek)** - Integration with [DeepSeek API](https://www.deepseek.com/)
- **[@promptbook/ollama](https://www.npmjs.com/package/@promptbook/ollama)** - Integration with [Ollama](https://ollama.com/) API
- **[@promptbook/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
- **[@promptbook/fake-llm](https://www.npmjs.com/package/@promptbook/fake-llm)** - Mocked execution tools for testing the library and saving the tokens
- **[@promptbook/remote-client](https://www.npmjs.com/package/@promptbook/remote-client)** - Remote client for remote execution of promptbooks
- **[@promptbook/remote-server](https://www.npmjs.com/package/@promptbook/remote-server)** - Remote server for remote execution of promptbooks
- **[@promptbook/pdf](https://www.npmjs.com/package/@promptbook/pdf)** - Read knowledge from `.pdf` documents
- **[@promptbook/documents](https://www.npmjs.com/package/@promptbook/markitdown)** - Integration of [Markitdown by Microsoft](https://github.com/microsoft/markitdown)
- **[@promptbook/documents](https://www.npmjs.com/package/@promptbook/documents)** - Read knowledge from documents like `.docx`, `.odt`,โฆ
- **[@promptbook/legacy-documents](https://www.npmjs.com/package/@promptbook/legacy-documents)** - Read knowledge from legacy documents like `.doc`, `.rtf`,โฆ
- **[@promptbook/website-crawler](https://www.npmjs.com/package/@promptbook/website-crawler)** - Crawl knowledge from the web
- **[@promptbook/editable](https://www.npmjs.com/package/@promptbook/editable)** - Editable book as native javascript object with imperative object API
- **[@promptbook/templates](https://www.npmjs.com/package/@promptbook/templates)** - Useful templates and examples of books which can be used as a starting point
- **[@promptbook/types](https://www.npmjs.com/package/@promptbook/types)** - Just typescript types used in the library
- **[@promptbook/color](https://www.npmjs.com/package/@promptbook/color)** - Color manipulation library
- โญ **[@promptbook/cli](https://www.npmjs.com/package/@promptbook/cli)** - Command line interface utilities for promptbooks
- ๐ **[Docker image](https://hub.docker.com/r/hejny/promptbook/)** - Promptbook server
## ๐ Dictionary
The following glossary is used to clarify certain concepts:
### General LLM / AI terms
- **Prompt drift** is a phenomenon where the AI model starts to generate outputs that are not aligned with the original prompt. This can happen due to the model's training data, the prompt's wording, or the model's architecture.
- [**Pipeline, workflow scenario or chain** is a sequence of tasks that are executed in a specific order. In the context of AI, a pipeline can refer to a sequence of AI models that are used to process data.](https://github.com/webgptorg/promptbook/discussions/88)
- **Fine-tuning** is a process where a pre-trained AI model is further trained on a specific dataset to improve its performance on a specific task.
- **Zero-shot learning** is a machine learning paradigm where a model is trained to perform a task without any labeled examples. Instead, the model is provided with a description of the task and is expected to generate the correct output.
- **Few-shot learning** is a machine learning paradigm where a model is trained to perform a task with only a few labeled examples. This is in contrast to traditional machine learning, where models are trained on large datasets.
- **Meta-learning** is a machine learning paradigm where a model is trained on a variety of tasks and is able to learn new tasks with minimal additional training. This is achieved by learning a set of meta-parameters that can be quickly adapted to new tasks.
- **Retrieval-augmented generation** is a machine learning paradigm where a model generates text by retrieving relevant information from a large database of text. This approach combines the benefits of generative models and retrieval models.
- **Longtail** refers to non-common or rare events, items, or entities that are not well-represented in the training data of machine learning models. Longtail items are often challenging for models to predict accurately.
_Note: This section is not a complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
### ๐ฏ Core concepts
- [๐ Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
- [๐ฏ Pipeline](https://github.com/webgptorg/promptbook/discussions/64)
- [๐โโ๏ธ Tasks and pipeline sections](https://github.com/webgptorg/promptbook/discussions/88)
- [๐คผ Personas](https://github.com/webgptorg/promptbook/discussions/22)
- [โญ Parameters](https://github.com/webgptorg/promptbook/discussions/83)
- [๐ Pipeline execution](https://github.com/webgptorg/promptbook/discussions/84)
- [๐งช Expectations](https://github.com/webgptorg/promptbook/discussions/30) - Define what outputs should look like and how they're validated
- [โ๏ธ Postprocessing](https://github.com/webgptorg/promptbook/discussions/31) - How outputs are refined after generation
- [๐ฃ Words not tokens](https://github.com/webgptorg/promptbook/discussions/29) - The human-friendly way to think about text generation
- [โฏ Separation of concerns](https://github.com/webgptorg/promptbook/discussions/32) - How Book language organizes different aspects of AI workflows
### Advanced concepts
<table>
<tr>
<th>Data & Knowledge Management</th>
<th>Pipeline Control</th>
</tr>
<tr>
<td>
<ul>
<li><a href="https://github.com/webgptorg/promptbook/discussions/41">๐ Knowledge (RAG)</a> - Retrieve and use external information</li>
<li><a href="https://github.com/webgptorg/promptbook/discussions/54">๐ฝ Media handling</a> - Working with images, audio, video, spreadsheets</li>
<li><a href="https://github.com/webgptorg/promptbook/discussions/40">๐ด Anomaly detection</a> - Identifying unusual patterns or outputs</li>
</ul>
</td>
<td>
<ul>
<li><a href="https://github.com/webgptorg/promptbook/discussions/89">๐ Remote server</a> - Executing workflows on remote infrastructure</li>
<li><a href="https://github.com/webgptorg/promptbook/discussions/66">๐ Jokers (conditions)</a> - Adding conditional logic to workflows</li>
<li><a href="https://github.com/webgptorg/promptbook/discussions/35">๐ณ Metaprompting</a> - Creating prompts that generate other prompts</li>
</ul>
</td>
</tr>
<tr>
<th>Language & Output Control</th>
<th>Advanced Generation</th>
</tr>
<tr>
<td>
<ul>
<li><a href="https://github.com/webgptorg/promptbook/discussions/53">๐ Linguistically typed languages</a> - Type systems for natural language</li>
<li><a href="https://github.com/webgptorg/promptbook/discussions/42">๐ Auto-Translations</a> - Automatic multilingual support</li>
<li><a href="https://github.com/webgptorg/promptbook/discussions/39">๐ฎ Agent adversary expectations</a> - Safety and control mechanisms</li>
</ul>
</td>
<td>
<ul>
<li><a href="https://github.com/webgptorg/promptbook/discussions/37">๐ Expectation-aware generation</a> - Outputs that meet defined criteria</li>
<li><a href="https://github.com/webgptorg/promptbook/discussions/33">โณ Just-in-time fine-tuning</a> - Dynamic model adaptation</li>
</ul>
</td>
</tr>
</table>
<p align="center"><a href="https://github.com/webgptorg/promptbook/discussions/categories/concepts">๐ View more concepts</a></p>
## ๐ Promptbook Engine

## โโ When to use Promptbook?
### โ When to use
- When you are writing app that generates complex things via LLM - like **websites, articles, presentations, code, stories, songs**,...
- When you want to **separate code from text prompts**
- When you want to describe **complex prompt pipelines** and don't want to do it in the code
- When you want to **orchestrate multiple prompts** together
- When you want to **reuse** parts of prompts in multiple places
- When you want to **version** your prompts and **test multiple versions**
- When you want to **log** the execution of prompts and backtrace the issues
[See more](https://github.com/webgptorg/promptbook/discussions/111)
### โ When not to use
- When you have already implemented single simple prompt and it works fine for your job
- When [OpenAI Assistant (GPTs)](https://help.openai.com/en/articles/8673914-gpts-vs-assistants) is enough for you
- When you need streaming _(this may be implemented in the future, [see discussion](https://github.com/webgptorg/promptbook/discussions/102))_.
- When you need to use something other than JavaScript or TypeScript _(other languages are on the way, [see the discussion](https://github.com/webgptorg/promptbook/discussions/101))_
- When your main focus is on something other than text - like images, audio, video, spreadsheets _(other media types may be added in the future, [see discussion](https://github.com/webgptorg/promptbook/discussions/103))_
- When you need to use recursion _([see the discussion](https://github.com/webgptorg/promptbook/discussions/38))_
[See more](https://github.com/webgptorg/promptbook/discussions/112)
## ๐ Known issues
- [๐คธโโ๏ธ Iterations not working yet](https://github.com/webgptorg/promptbook/discussions/55)
- [โคต๏ธ Imports not working yet](https://github.com/webgptorg/promptbook/discussions/34)
## ๐งผ Intentionally not implemented features
- [โฟ No recursion](https://github.com/webgptorg/promptbook/discussions/38)
- [๐ณ There are no types, just strings](https://github.com/webgptorg/promptbook/discussions/52)
## โ FAQ
If you have a question [start a discussion](https://github.com/webgptorg/promptbook/discussions/), [open an issue](https://github.com/webgptorg/promptbook/issues) or [write me an email](https://www.pavolhejny.com/contact).
- [โ Why not just use the OpenAI SDK / Anthropic Claude SDK / ...?](https://github.com/webgptorg/promptbook/discussions/114)
- [โ How is it different from the OpenAI`s GPTs?](https://github.com/webgptorg/promptbook/discussions/118)
- [โ How is it different from the Langchain?](https://github.com/webgptorg/promptbook/discussions/115)
- [โ How is it different from the DSPy?](https://github.com/webgptorg/promptbook/discussions/117)
- [โ How is it different from _anything_?](https://github.com/webgptorg/promptbook/discussions?discussions_q=is%3Aopen+label%3A%22Promptbook+vs%22)
- [โ Is Promptbook using RAG _(Retrieval-Augmented Generation)_?](https://github.com/webgptorg/promptbook/discussions/123)
- [โ Is Promptbook using function calling?](https://github.com/webgptorg/promptbook/discussions/124)
## ๐
Changelog
See [CHANGELOG.md](./CHANGELOG.md)
## ๐ License
This project is licensed under [BUSL 1.1](./LICENSE.md).
## ๐ค Contributing
We welcome contributions! See [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines.
You can also โญ star the project, [follow us on GitHub](https://github.com/hejny) or [various other social networks](https://www.pavolhejny.com/contact/).We are open to [pull requests, feedback, and suggestions](./CONTRIBUTING.md).
## ๐ Support & Community
Need help with Book language? We're here for you!
- ๐ฌ [Join our Discord community](https://discord.gg/x3QWNaa89N) for real-time support
- ๐ [Browse our GitHub discussions](https://github.com/webgptorg/promptbook/discussions) for FAQs and community knowledge
- ๐ [Report issues](https://github.com/webgptorg/book/issues) for bugs or feature requests
- ๐ Visit [ptbk.io](https://ptbk.io) for more resources and documentation
- ๐ง Contact us directly through the channels listed in our [signpost](./SIGNPOST.md)
We welcome contributions and feedback to make Book language better for everyone!