UNPKG

@promptbook/utils

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

805 lines (561 loc) โ€ข 36.7 kB
<!-- โš ๏ธ 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 [![NPM Version of ![Promptbook logo](./design/logo-h1.png) Promptbook](https://badge.fury.io/js/promptbook.svg)](https://www.npmjs.com/package/promptbook) [![Quality of package ![Promptbook logo](./design/logo-h1.png) Promptbook](https://packagequality.com/shield/promptbook.svg)](https://packagequality.com/#?package=promptbook) [![Known Vulnerabilities](https://snyk.io/test/github/webgptorg/promptbook/badge.svg)](https://snyk.io/test/github/webgptorg/promptbook) [![๐Ÿงช Test Books](https://github.com/webgptorg/promptbook/actions/workflows/test-books.yml/badge.svg)](https://github.com/webgptorg/promptbook/actions/workflows/test-books.yml) [![๐Ÿงช Test build](https://github.com/webgptorg/promptbook/actions/workflows/test-build.yml/badge.svg)](https://github.com/webgptorg/promptbook/actions/workflows/test-build.yml) [![๐Ÿงช Lint](https://github.com/webgptorg/promptbook/actions/workflows/test-lint.yml/badge.svg)](https://github.com/webgptorg/promptbook/actions/workflows/test-lint.yml) [![๐Ÿงช Spell check](https://github.com/webgptorg/promptbook/actions/workflows/test-spell-check.yml/badge.svg)](https://github.com/webgptorg/promptbook/actions/workflows/test-spell-check.yml) [![๐Ÿงช Test types](https://github.com/webgptorg/promptbook/actions/workflows/test-types.yml/badge.svg)](https://github.com/webgptorg/promptbook/actions/workflows/test-types.yml) [![Issues](https://img.shields.io/github/issues/webgptorg/promptbook.svg?style=flat)](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/utils` - Promptbooks are [divided into several](#-packages) packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook). - This package `@promptbook/utils` 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/utils ``` Comprehensive utility functions for text processing, validation, normalization, and LLM input/output handling in the Promptbook ecosystem. ## ๐ŸŽฏ Purpose and Motivation The utils package provides a rich collection of utility functions that are essential for working with LLM inputs and outputs. It handles common tasks like text normalization, parameter templating, validation, and postprocessing, eliminating the need to implement these utilities from scratch in every promptbook application. ## ๐Ÿ”ง High-Level Functionality This package offers utilities across multiple domains: - **Text Processing**: Counting, splitting, and analyzing text content - **Template System**: Secure parameter substitution and prompt formatting - **Normalization**: Converting text to various naming conventions and formats - **Validation**: Comprehensive validation for URLs, emails, file paths, and more - **Serialization**: JSON handling, deep cloning, and object manipulation - **Environment Detection**: Runtime environment identification utilities - **Format Parsing**: Support for CSV, JSON, XML validation and parsing ## โœจ Key Features - ๐Ÿ”’ **Secure Templating** - Prompt injection protection with template functions - ๐Ÿ“Š **Text Analysis** - Count words, sentences, paragraphs, pages, and characters - ๐Ÿ”„ **Case Conversion** - Support for kebab-case, camelCase, PascalCase, SCREAMING_CASE - โœ… **Comprehensive Validation** - Email, URL, file path, UUID, and format validators - ๐Ÿงน **Text Cleaning** - Remove emojis, quotes, diacritics, and normalize whitespace - ๐Ÿ“ฆ **Serialization Tools** - Deep cloning, JSON export, and serialization checking - ๐ŸŒ **Environment Aware** - Detect browser, Node.js, Jest, and Web Worker environments - ๐ŸŽฏ **LLM Optimized** - Functions specifically designed for LLM input/output processing ## Simple templating The `prompt` template tag function helps format prompt strings for LLM interactions. It handles string interpolation and maintains consistent formatting for multiline strings and lists and also handles a security to avoid **prompt injection**. ```typescript import { prompt } from '@promptbook/utils'; const promptString = prompt` Correct the following sentence: > ${unsecureUserInput} `; ``` The `prompt` name could be overloaded by multiple things in your code. If you want to use the `promptTemplate` which is alias for `prompt`: ```typescript import { promptTemplate } from '@promptbook/utils'; const promptString = promptTemplate` Correct the following sentence: > ${unsecureUserInput} `; ``` ## Advanced templating There is a function `templateParameters` which is used to replace the parameters in given template optimized to LLM prompt templates. ```typescript import { templateParameters } from '@promptbook/utils'; templateParameters('Hello, {name}!', { name: 'world' }); // 'Hello, world!' ``` And also multiline templates with blockquotes ```typescript import { templateParameters, spaceTrim } from '@promptbook/utils'; templateParameters( spaceTrim(` Hello, {name}! > {answer} `), { name: 'world', answer: spaceTrim(` I'm fine, thank you! And you? `), }, ); // Hello, world! // // > I'm fine, // > thank you! // > // > And you? ``` ## Counting These functions are useful to count stats about the input/output in human-like terms not tokens and bytes, you can use `countCharacters`, `countLines`, `countPages`, `countParagraphs`, `countSentences`, `countWords` ```typescript import { countWords } from '@promptbook/utils'; console.log(countWords('Hello, world!')); // 2 ``` ## Splitting Splitting functions are similar to counting but they return the split parts of the input/output, you can use `splitIntoCharacters`, `splitIntoLines`, `splitIntoPages`, `splitIntoParagraphs`, `splitIntoSentences`, `splitIntoWords` ```typescript import { splitIntoWords } from '@promptbook/utils'; console.log(splitIntoWords('Hello, world!')); // ['Hello', 'world'] ``` ## Normalization Normalization functions are used to put the string into a normalized form, you can use `kebab-case` `PascalCase` `SCREAMING_CASE` `snake_case` `kebab-case` ```typescript import { normalizeTo } from '@promptbook/utils'; console.log(normalizeTo['kebab-case']('Hello, world!')); // 'hello-world' ``` - There are more normalization functions like `capitalize`, `decapitalize`, `removeDiacritics`,... - These can be also used as postprocessing functions in the `POSTPROCESS` command in promptbook ## Postprocessing Sometimes you need to postprocess the output of the LLM model, every postprocessing function that is available through `POSTPROCESS` command in promptbook is exported from `@promptbook/utils`. You can use: - `spaceTrim` - `extractAllBlocksFromMarkdown`, _<- Note: Exported from [`@promptbook/markdown-utils`](https://www.npmjs.com/package/@promptbook/markdown-utils)_ - `extractAllListItemsFromMarkdown` _<- Note: Exported from [`@promptbook/markdown-utils`](https://www.npmjs.com/package/@promptbook/markdown-utils)_ - `extractBlock` - `extractOneBlockFromMarkdown `_<- Note: Exported from [`@promptbook/markdown-utils`](https://www.npmjs.com/package/@promptbook/markdown-utils)_ - `prettifyPipelineString` - `removeMarkdownComments` - `removeEmojis` - `removeMarkdownFormatting` _<- Note: Exported from [`@promptbook/markdown-utils`](https://www.npmjs.com/package/@promptbook/markdown-utils)_ - `removeQuotes` - `trimCodeBlock` - `trimEndOfCodeBlock` - `unwrapResult` Very often you will use `unwrapResult`, which is used to extract the result you need from output with some additional information: ```typescript import { unwrapResult } from '@promptbook/utils'; unwrapResult('Best greeting for the user is "Hi Pavol!"'); // 'Hi Pavol!' ``` ## ๐Ÿ“ฆ Exported Entities ### Version Information - `BOOK_LANGUAGE_VERSION` - Current book language version - `PROMPTBOOK_ENGINE_VERSION` - Current engine version ### Configuration Constants - `VALUE_STRINGS` - Standard value strings - `SMALL_NUMBER` - Small number constant ### Visualization - `renderPromptbookMermaid` - Render promptbook as Mermaid diagram ### Error Handling - `deserializeError` - Deserialize error objects - `serializeError` - Serialize error objects ### Async Utilities - `forEachAsync` - Async forEach implementation ### Format Validation - `isValidCsvString` - Validate CSV string format - `isValidJsonString` - Validate JSON string format - `jsonParse` - Safe JSON parsing - `isValidXmlString` - Validate XML string format ### Template Functions - `prompt` - Template tag for secure prompt formatting - `promptTemplate` - Alias for prompt template tag ### Environment Detection - `$getCurrentDate` - Get current date (side effect) - `$isRunningInBrowser` - Check if running in browser - `$isRunningInJest` - Check if running in Jest - `$isRunningInNode` - Check if running in Node.js - `$isRunningInWebWorker` - Check if running in Web Worker ### Text Counting and Analysis - `CHARACTERS_PER_STANDARD_LINE` - Characters per standard line constant - `LINES_PER_STANDARD_PAGE` - Lines per standard page constant - `countCharacters` - Count characters in text - `countLines` - Count lines in text - `countPages` - Count pages in text - `countParagraphs` - Count paragraphs in text - `splitIntoSentences` - Split text into sentences - `countSentences` - Count sentences in text - `countWords` - Count words in text - `CountUtils` - Utility object with all counting functions ### Text Normalization - `capitalize` - Capitalize first letter - `decapitalize` - Decapitalize first letter - `DIACRITIC_VARIANTS_LETTERS` - Diacritic variants mapping - `string_keyword` - Keyword string type (type) - `Keywords` - Keywords type (type) - `isValidKeyword` - Validate keyword format - `nameToUriPart` - Convert name to URI part - `nameToUriParts` - Convert name to URI parts - `string_kebab_case` - Kebab case string type (type) - `normalizeToKebabCase` - Convert to kebab-case - `string_camelCase` - Camel case string type (type) - `normalizeTo_camelCase` - Convert to camelCase - `string_PascalCase` - Pascal case string type (type) - `normalizeTo_PascalCase` - Convert to PascalCase - `string_SCREAMING_CASE` - Screaming case string type (type) - `normalizeTo_SCREAMING_CASE` - Convert to SCREAMING_CASE - `normalizeTo_snake_case` - Convert to snake_case - `normalizeWhitespaces` - Normalize whitespace characters - `orderJson` - Order JSON object properties - `parseKeywords` - Parse keywords from input - `parseKeywordsFromString` - Parse keywords from string - `removeDiacritics` - Remove diacritic marks - `searchKeywords` - Search within keywords - `suffixUrl` - Add suffix to URL - `titleToName` - Convert title to name format ### Text Organization - `spaceTrim` - Trim spaces while preserving structure ### Parameter Processing - `extractParameterNames` - Extract parameter names from template - `numberToString` - Convert number to string - `templateParameters` - Replace template parameters - `valueToString` - Convert value to string ### Parsing Utilities - `parseNumber` - Parse number from string ### Text Processing - `removeEmojis` - Remove emoji characters - `removeQuotes` - Remove quote characters ### Serialization - `$deepFreeze` - Deep freeze object (side effect) - `checkSerializableAsJson` - Check if serializable as JSON - `clonePipeline` - Clone pipeline object - `deepClone` - Deep clone object - `exportJson` - Export object as JSON - `isSerializableAsJson` - Check if object is JSON serializable - `jsonStringsToJsons` - Convert JSON strings to objects ### Set Operations - `difference` - Set difference operation - `intersection` - Set intersection operation - `union` - Set union operation ### Code Processing - `trimCodeBlock` - Trim code block formatting - `trimEndOfCodeBlock` - Trim end of code block - `unwrapResult` - Extract result from wrapped output ### Validation - `isValidEmail` - Validate email address format - `isRootPath` - Check if path is root path - `isValidFilePath` - Validate file path format - `isValidJavascriptName` - Validate JavaScript identifier - `isValidPromptbookVersion` - Validate promptbook version - `isValidSemanticVersion` - Validate semantic version - `isHostnameOnPrivateNetwork` - Check if hostname is on private network - `isUrlOnPrivateNetwork` - Check if URL is on private network - `isValidPipelineUrl` - Validate pipeline URL format - `isValidUrl` - Validate URL format - `isValidUuid` - Validate UUID format > ๐Ÿ’ก This package provides utility functions 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 ![Schema of Promptbook Engine](./documents/promptbook-engine.svg) ## โž•โž– 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!