promptbook 0.100.0-9 β†’ 0.100.1

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.
Files changed (2) hide show
  1. package/README.md +7 -10
  2. package/package.json +30 -28
package/README.md CHANGED
@@ -10,14 +10,18 @@ Write AI applications using plain human language across multiple models and plat
10
10
  [![NPM Version of ![Promptbook logo - cube with letters P and B](./design/logo-h1.png) Promptbook](https://badge.fury.io/js/promptbook.svg)](https://www.npmjs.com/package/promptbook)
11
11
  [![Quality of package ![Promptbook logo - cube with letters P and B](./design/logo-h1.png) Promptbook](https://packagequality.com/shield/promptbook.svg)](https://packagequality.com/#?package=promptbook)
12
12
  [![Known Vulnerabilities](https://snyk.io/test/github/webgptorg/promptbook/badge.svg)](https://snyk.io/test/github/webgptorg/promptbook)
13
- [![Build Status](https://github.com/webgptorg/promptbook/actions/workflows/ci.yml/badge.svg)](https://github.com/webgptorg/promptbook/actions)
14
- [![Coverage Status](https://coveralls.io/repos/github/webgptorg/promptbook/badge.svg?branch=main)](https://coveralls.io/github/webgptorg/promptbook?branch=main)
13
+ [![πŸ§ͺ Test Books](https://github.com/webgptorg/promptbook/actions/workflows/test-books.yml/badge.svg)](https://github.com/webgptorg/promptbook/actions/workflows/test-books.yml)
14
+ [![πŸ§ͺ Test build](https://github.com/webgptorg/promptbook/actions/workflows/test-build.yml/badge.svg)](https://github.com/webgptorg/promptbook/actions/workflows/test-build.yml)
15
+ [![πŸ§ͺ Lint](https://github.com/webgptorg/promptbook/actions/workflows/test-lint.yml/badge.svg)](https://github.com/webgptorg/promptbook/actions/workflows/test-lint.yml)
16
+ [![πŸ§ͺ 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)
17
+ [![πŸ§ͺ Test types](https://github.com/webgptorg/promptbook/actions/workflows/test-types.yml/badge.svg)](https://github.com/webgptorg/promptbook/actions/workflows/test-types.yml)
15
18
  [![Issues](https://img.shields.io/github/issues/webgptorg/promptbook.svg?style=flat)](https://github.com/webgptorg/promptbook/issues)
16
19
 
17
20
 
18
21
 
19
22
  ## 🌟 New Features
20
23
 
24
+ - πŸš€ **GPT-5 Support** - Now includes OpenAI's most advanced language model with unprecedented reasoning capabilities and 200K context window
21
25
  - πŸ’‘ VS Code support for `.book` files with syntax highlighting and IntelliSense
22
26
  - 🐳 Official Docker image (`hejny/promptbook`) for seamless containerized usage
23
27
  - πŸ”₯ Native support for OpenAI `o3-mini`, GPT-4 and other leading LLMs
@@ -36,8 +40,6 @@ Write AI applications using plain human language across multiple models and plat
36
40
 
37
41
  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**!
38
42
 
39
-
40
-
41
43
  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!
42
44
 
43
45
  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.
@@ -163,8 +165,6 @@ Join our growing community of developers and users:
163
165
 
164
166
  _A concise, Markdown-based DSL for crafting AI workflows and automations._
165
167
 
166
-
167
-
168
168
  ### Introduction
169
169
 
170
170
  Book is a Markdown-based language that simplifies the creation of AI applications, workflows, and automations. With human-readable commands, you can define inputs, outputs, personas, knowledge sources, and actionsβ€”without needing model-specific details.
@@ -214,8 +214,6 @@ Personas can have access to different knowledge, tools and actions. They can als
214
214
 
215
215
  - [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
216
216
 
217
-
218
-
219
217
  ### **3. How:** Knowledge, Instruments and Actions
220
218
 
221
219
  The resources used by the personas are used to do the work.
@@ -290,6 +288,7 @@ Or you can install them separately:
290
288
  - **[@promptbook/editable](https://www.npmjs.com/package/@promptbook/editable)** - Editable book as native javascript object with imperative object API
291
289
  - **[@promptbook/templates](https://www.npmjs.com/package/@promptbook/templates)** - Useful templates and examples of books which can be used as a starting point
292
290
  - **[@promptbook/types](https://www.npmjs.com/package/@promptbook/types)** - Just typescript types used in the library
291
+ - **[@promptbook/color](https://www.npmjs.com/package/@promptbook/color)** - Color manipulation library
293
292
  - ⭐ **[@promptbook/cli](https://www.npmjs.com/package/@promptbook/cli)** - Command line interface utilities for promptbooks
294
293
  - πŸ‹ **[Docker image](https://hub.docker.com/r/hejny/promptbook/)** - Promptbook server
295
294
 
@@ -315,8 +314,6 @@ The following glossary is used to clarify certain concepts:
315
314
 
316
315
  _Note: This section is not a complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
317
316
 
318
-
319
-
320
317
  ### πŸ’― Core concepts
321
318
 
322
319
  - [πŸ“š Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promptbook",
3
- "version": "0.100.0-9",
3
+ "version": "0.100.1",
4
4
  "description": "Promptbook: Run AI apps in plain human language across multiple models and platforms",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -88,34 +88,36 @@
88
88
  "npm": ">=8.0.0"
89
89
  },
90
90
  "peerDependencies": {
91
- "@promptbook/core": "0.100.0-9"
91
+ "@promptbook/core": "0.100.1"
92
92
  },
93
93
  "dependencies": {
94
- "@promptbook/anthropic-claude": "0.100.0-9",
95
- "@promptbook/azure-openai": "0.100.0-9",
96
- "@promptbook/browser": "0.100.0-9",
97
- "@promptbook/cli": "0.100.0-9",
98
- "@promptbook/core": "0.100.0-9",
99
- "@promptbook/deepseek": "0.100.0-9",
100
- "@promptbook/documents": "0.100.0-9",
101
- "@promptbook/editable": "0.100.0-9",
102
- "@promptbook/fake-llm": "0.100.0-9",
103
- "@promptbook/google": "0.100.0-9",
104
- "@promptbook/javascript": "0.100.0-9",
105
- "@promptbook/legacy-documents": "0.100.0-9",
106
- "@promptbook/markdown-utils": "0.100.0-9",
107
- "@promptbook/markitdown": "0.100.0-9",
108
- "@promptbook/node": "0.100.0-9",
109
- "@promptbook/ollama": "0.100.0-9",
110
- "@promptbook/openai": "0.100.0-9",
111
- "@promptbook/pdf": "0.100.0-9",
112
- "@promptbook/remote-client": "0.100.0-9",
113
- "@promptbook/remote-server": "0.100.0-9",
114
- "@promptbook/templates": "0.100.0-9",
115
- "@promptbook/types": "0.100.0-9",
116
- "@promptbook/utils": "0.100.0-9",
117
- "@promptbook/vercel": "0.100.0-9",
118
- "@promptbook/website-crawler": "0.100.0-9",
119
- "@promptbook/wizard": "0.100.0-9"
94
+ "@promptbook/anthropic-claude": "0.100.1",
95
+ "@promptbook/azure-openai": "0.100.1",
96
+ "@promptbook/browser": "0.100.1",
97
+ "@promptbook/cli": "0.100.1",
98
+ "@promptbook/color": "0.100.1",
99
+ "@promptbook/components": "0.100.1",
100
+ "@promptbook/core": "0.100.1",
101
+ "@promptbook/deepseek": "0.100.1",
102
+ "@promptbook/documents": "0.100.1",
103
+ "@promptbook/editable": "0.100.1",
104
+ "@promptbook/fake-llm": "0.100.1",
105
+ "@promptbook/google": "0.100.1",
106
+ "@promptbook/javascript": "0.100.1",
107
+ "@promptbook/legacy-documents": "0.100.1",
108
+ "@promptbook/markdown-utils": "0.100.1",
109
+ "@promptbook/markitdown": "0.100.1",
110
+ "@promptbook/node": "0.100.1",
111
+ "@promptbook/ollama": "0.100.1",
112
+ "@promptbook/openai": "0.100.1",
113
+ "@promptbook/pdf": "0.100.1",
114
+ "@promptbook/remote-client": "0.100.1",
115
+ "@promptbook/remote-server": "0.100.1",
116
+ "@promptbook/templates": "0.100.1",
117
+ "@promptbook/types": "0.100.1",
118
+ "@promptbook/utils": "0.100.1",
119
+ "@promptbook/vercel": "0.100.1",
120
+ "@promptbook/website-crawler": "0.100.1",
121
+ "@promptbook/wizard": "0.100.1"
120
122
  }
121
123
  }