ptbk 0.100.0-5 β†’ 0.100.0-61

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 +2 -8
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -18,6 +18,7 @@ Write AI applications using plain human language across multiple models and plat
18
18
 
19
19
  ## 🌟 New Features
20
20
 
21
+ - πŸš€ **GPT-5 Support** - Now includes OpenAI's most advanced language model with unprecedented reasoning capabilities and 200K context window
21
22
  - πŸ’‘ VS Code support for `.book` files with syntax highlighting and IntelliSense
22
23
  - 🐳 Official Docker image (`hejny/promptbook`) for seamless containerized usage
23
24
  - πŸ”₯ Native support for OpenAI `o3-mini`, GPT-4 and other leading LLMs
@@ -36,8 +37,6 @@ Write AI applications using plain human language across multiple models and plat
36
37
 
37
38
  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
39
 
39
-
40
-
41
40
  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
41
 
43
42
  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 +162,6 @@ Join our growing community of developers and users:
163
162
 
164
163
  _A concise, Markdown-based DSL for crafting AI workflows and automations._
165
164
 
166
-
167
-
168
165
  ### Introduction
169
166
 
170
167
  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 +211,6 @@ Personas can have access to different knowledge, tools and actions. They can als
214
211
 
215
212
  - [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
216
213
 
217
-
218
-
219
214
  ### **3. How:** Knowledge, Instruments and Actions
220
215
 
221
216
  The resources used by the personas are used to do the work.
@@ -290,6 +285,7 @@ Or you can install them separately:
290
285
  - **[@promptbook/editable](https://www.npmjs.com/package/@promptbook/editable)** - Editable book as native javascript object with imperative object API
291
286
  - **[@promptbook/templates](https://www.npmjs.com/package/@promptbook/templates)** - Useful templates and examples of books which can be used as a starting point
292
287
  - **[@promptbook/types](https://www.npmjs.com/package/@promptbook/types)** - Just typescript types used in the library
288
+ - **[@promptbook/color](https://www.npmjs.com/package/@promptbook/color)** - Color manipulation library
293
289
  - ⭐ **[@promptbook/cli](https://www.npmjs.com/package/@promptbook/cli)** - Command line interface utilities for promptbooks
294
290
  - πŸ‹ **[Docker image](https://hub.docker.com/r/hejny/promptbook/)** - Promptbook server
295
291
 
@@ -315,8 +311,6 @@ The following glossary is used to clarify certain concepts:
315
311
 
316
312
  _Note: This section is not a complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
317
313
 
318
-
319
-
320
314
  ### πŸ’― Core concepts
321
315
 
322
316
  - [πŸ“š Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ptbk",
3
- "version": "0.100.0-5",
3
+ "version": "0.100.0-61",
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,10 +88,10 @@
88
88
  "npm": ">=8.0.0"
89
89
  },
90
90
  "peerDependencies": {
91
- "@promptbook/core": "0.100.0-5"
91
+ "@promptbook/core": "0.100.0-61"
92
92
  },
93
93
  "dependencies": {
94
- "promptbook": "0.100.0-5"
94
+ "promptbook": "0.100.0-61"
95
95
  },
96
96
  "bin": {
97
97
  "ptbk": "bin/promptbook-cli-proxy.js"