Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webgptorg/promptbook
It's time for a paradigm shift! The future of software is in plain English ✨
https://github.com/webgptorg/promptbook
autogpt llm-inference openai
Last synced: 5 days ago
JSON representation
It's time for a paradigm shift! The future of software is in plain English ✨
- Host: GitHub
- URL: https://github.com/webgptorg/promptbook
- Owner: webgptorg
- Created: 2023-09-27T15:02:55.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-05T15:42:06.000Z (8 days ago)
- Last Synced: 2024-12-05T16:29:55.832Z (8 days ago)
- Topics: autogpt, llm-inference, openai
- Language: TypeScript
- Homepage: https://ptbk.io
- Size: 121 MB
- Stars: 88
- Watchers: 3
- Forks: 9
- Open Issues: 54
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- jimsghstars - webgptorg/promptbook - It's time for a paradigm shift! The future of software is in plain English ✨ (TypeScript)
README
# ![Promptbook logo - cube with letters P and B](./other/design/logo-h1.png) Promptbook
[![NPM Version of ![Promptbook logo - cube with letters P and B](./other/design/logo-h1.png) Promptbook](https://badge.fury.io/js/promptbook.svg)](https://www.npmjs.com/package/promptbook)
[![Quality of package ![Promptbook logo - cube with letters P and B](./other/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)
[![Issues](https://img.shields.io/github/issues/webgptorg/promptbook.svg?style=flat)](https://github.com/webgptorg/promptbook/issues)## ✨ New Features
- 💙 Working [the **Book** language v1.0.0](https://github.com/webgptorg/book)
- 🖤 Run books from CLI - `npx ptbk run path/to/your/book`
- 📚 Support of `.docx`, `.doc` and `.pdf` documents
- ✨ **Support of [OpenAI o1 model](https://openai.com/o1/)**## 🤍 The Book Abstract
**It's time for a paradigm shift! The future of software is in plain English, French or Latin.**
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**!
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!
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.
This shift is going to happen, whether we are ready for it or not. Our mission is to make it excellently, not just good.
**Join us in this journey!**
## 🚀 Get started
Take a look at the simple starter kit with books integrated into the **Hello World** sample applications:
- [Hello Book](https://github.com/webgptorg/hello-world)
- [Hello Book in Node.js](https://github.com/webgptorg/hello-world-node-js)
- [Hello Book in Next.js](https://github.com/webgptorg/hello-world-next-js)## 💜 The Promptbook Project
Promptbook project is ecosystem of multiple projects and tools, following is a list of most important pieces of the project:
Project
Description
Link
Core
Promptbook Core is a description and documentation of the basic concepts, ideas and inner workings of how Promptbook should be implemented, and defines what features must be describable by book language.
https://github.com/webgptorg/book
Book language
Book is a markdown-like language to define core entities like projects, pipelines, knowledge,.... It is designed to be understandable by non-programmers and non-technical people
Promptbook typescript project
Promptbook implementation in TypeScript released as multiple NPM packages
https://github.com/webgptorg/promptbook + Multiple packages published on NPM
Promptbook studio
Studio to write Books and instantly publish them as miniapps
https://promptbook.studio
https://github.com/hejny/promptbook-studio
Hello World
Simple starter kit with Books integrated into the sample applications
https://github.com/webgptorg/hello-world
https://github.com/webgptorg/hello-world-node-js
https://github.com/webgptorg/hello-world-next-js
Also we have a community of developers and users:
- [Discord](https://discord.gg/x3QWNaa89N)
- [Landing page](https://ptbk.io)
- [Github discussions](https://github.com/webgptorg/promptbook/discussions)## 💙 Book language _(for prompt-engineer)_
## 💙 The blueprint of book language
Following is the documentation and blueprint of the Book language.
### Example
```markdown
# 🌟 My first Book- PERSONA Jane, marketing specialist with prior experience in writing articles about technology and artificial intelligence
- KNOWLEDGE https://ptbk.io
- KNOWLEDGE ./promptbook.pdf
- EXPECT MIN 1 Sentence
- EXPECT MAX 1 Paragraph> Write an article about the future of artificial intelligence in the next 10 years and how metalanguages will change the way AI is used in the world.
> Look specifically at the impact of Promptbook on the AI industry.-> {article}
```### Goals and principles of book language
File is designed to be easy to read and write. It is strict subset of markdown. It is designed to be understandable by both humans and machines and without specific knowledge of the language.
It has file with `.book.md` or `.book` extension with `UTF-8` non BOM encoding.
As it is source code, it can leverage all the features of version control systems like git and does not suffer from the problems of binary formats, proprietary formats, or no-code solutions.
But unlike programming languages, it is designed to be understandable by non-programmers and non-technical people.
### Structure
Book is divided into sections. Each section starts with heading. The language itself is not sensitive to the type of heading _(`h1`, `h2`, `h3`, ...)_ but it is recommended to use `h1` for header section and `h2` for other sections.
### Header
Header is the first section of the book. It contains metadata about the pipeline. It is recommended to use `h1` heading for header section but it is not required.
### Parameter
Foo bar
#### Parameter names
Reserved words:
- _each command_ like `PERSONA`, `EXPECT`, `KNOWLEDGE`, etc.
- `content`
- `context`
- `knowledge`
- `examples`
- `modelName`
- `currentDate`#### Parameter notation
### Task
### Task type
Todo todo
### Command
Todo todo
### Block
Todo todo
### Return parameter
### Examples
## 📦 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/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/wizzard](https://www.npmjs.com/package/@promptbook/wizzard)** - Wizard for creating+running promptbooks in single line
- **[@promptbook/execute-javascript](https://www.npmjs.com/package/@promptbook/execute-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/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
- **[@promptbook/langtail](https://www.npmjs.com/package/@promptbook/langtail)** - Execution tools for Langtail API, wrapper around Langtail SDK
- **[@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/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/types](https://www.npmjs.com/package/@promptbook/types)** - Just typescript types used in the library
- **[@promptbook/cli](https://www.npmjs.com/package/@promptbook/cli)** - Command line interface utilities for promptbooks## 📚 Dictionary
### 📚 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 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.
- **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: Thos section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
#### Promptbook core
- **Organization** _(legacy name collection)_ group jobs, workforce, knowledge, instruments, and actions into one package. Entities in one organization can share resources (= import resources from each other).
- **Jobs**
- **Task**
- **Subtask**
- **Workforce**
- **Persona**
- **Team**
- **Role**
- **Knowledge**
- **Public**
- **Private**
- **Protected**
- **Instruments**
- **Actions**#### Book language
- **Book file**
- **Section**
- **Heading**
- **Description**
- **Command**
- **Block**
- **Return statement**
- **Comment**
- **Import**
- **Scope**#### 💯 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)
- [✂️ Postprocessing](https://github.com/webgptorg/promptbook/discussions/31)
- [🔣 Words not tokens](https://github.com/webgptorg/promptbook/discussions/29)
- [☯ Separation of concerns](https://github.com/webgptorg/promptbook/discussions/32)##### Advanced concepts
- [📚 Knowledge (Retrieval-augmented generation)](https://github.com/webgptorg/promptbook/discussions/41)
- [🌏 Remote server](https://github.com/webgptorg/promptbook/discussions/89)
- [🃏 Jokers (conditions)](https://github.com/webgptorg/promptbook/discussions/66)
- [🔳 Metaprompting](https://github.com/webgptorg/promptbook/discussions/35)
- [🌏 Linguistically typed languages](https://github.com/webgptorg/promptbook/discussions/53)
- [🌍 Auto-Translations](https://github.com/webgptorg/promptbook/discussions/42)
- [📽 Images, audio, video, spreadsheets](https://github.com/webgptorg/promptbook/discussions/54)
- [🔙 Expectation-aware generation](https://github.com/webgptorg/promptbook/discussions/37)
- [⏳ Just-in-time fine-tuning](https://github.com/webgptorg/promptbook/discussions/33)
- [🔴 Anomaly detection](https://github.com/webgptorg/promptbook/discussions/40)
- [👮 Agent adversary expectations](https://github.com/webgptorg/promptbook/discussions/39)
- [view more](https://github.com/webgptorg/promptbook/discussions/categories/concepts)### Terms specific to Promptbook TypeScript implementation
- Anonymous mode
- Application mode## 🔌 Usage in Typescript / Javascript
- [Simple usage](./examples/usage/simple-script)
- [Usage with client and remote server](./examples/usage/remote)## ➕➖ 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
Promptbook by Pavol Hejný is licensed under CC BY 4.0
## 🎯 Todos
See [TODO.md](./TODO.md)
## 🖋️ Contributing
I am open to pull requests, feedback, and suggestions. Or if you like this utility, you can [☕ buy me a coffee](https://www.buymeacoffee.com/hejny) or [donate via cryptocurrencies](https://github.com/hejny/hejny/blob/main/documents/crypto.md).
You can also ⭐ star the promptbook package, [follow me on GitHub](https://github.com/hejny) or [various other social networks](https://www.pavolhejny.com/contact/).