ptbk 0.85.0 → 0.86.0-3
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.
- package/README.md +9 -25
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
## 🌟 New Features
|
|
18
18
|
|
|
19
|
+
- 📂 We have plugin for [VSCode](https://github.com/webgptorg/book-extension) to support `.book` file extension
|
|
19
20
|
- 💫 Support of [`o3-mini` model by OpenAI](https://openai.com/index/openai-o3-mini/)
|
|
20
21
|
- 🐋 **Support of [DeepSeek models](https://www.npmjs.com/package/@promptbook/deepseek)**
|
|
21
22
|
- 💙 Working [the **Book** language v1.0.0](https://github.com/webgptorg/book)
|
|
@@ -35,7 +36,7 @@
|
|
|
35
36
|
|
|
36
37
|
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**!
|
|
37
38
|
|
|
38
|
-
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!
|
|
39
|
+
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!
|
|
39
40
|
|
|
40
41
|
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.
|
|
41
42
|
|
|
@@ -64,41 +65,24 @@ Promptbook project is ecosystem of multiple projects and tools, following is a l
|
|
|
64
65
|
<thead>
|
|
65
66
|
<tr>
|
|
66
67
|
<th>Project</th>
|
|
67
|
-
<th>
|
|
68
|
-
<th>Link</th>
|
|
68
|
+
<th>About</th>
|
|
69
69
|
</tr>
|
|
70
70
|
</thead>
|
|
71
71
|
<tbody>
|
|
72
72
|
<tr>
|
|
73
|
-
<td>
|
|
74
|
-
<td>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.</td>
|
|
75
|
-
<td rowspan=2>https://github.com/webgptorg/book</td>
|
|
76
|
-
</tr>
|
|
77
|
-
<tr>
|
|
78
|
-
<td>Book language</td>
|
|
73
|
+
<td><a href="https://github.com/webgptorg/book">Book language</a></td>
|
|
79
74
|
<td>
|
|
80
|
-
Book is a markdown-like language to define core entities like
|
|
75
|
+
Book is a markdown-like language to define core entities like personas, knowledge, tasks,.... It is designed to be understandable by non-programmers and non-technical people<hr>
|
|
76
|
+
There is also <a href="https://github.com/webgptorg/book-extension">a plugin for VSCode</a> to support <code>.book</code> file extension
|
|
81
77
|
</td>
|
|
82
78
|
</tr>
|
|
83
79
|
<tr>
|
|
84
|
-
<td>Promptbook
|
|
85
|
-
<td>Promptbook implementation in TypeScript released as multiple NPM packages</td>
|
|
86
|
-
<td>https://github.com/webgptorg/promptbook + <a href="https://www.npmjs.com/package/@promptbook/core#-packages-for-developers">Multiple packages published on NPM</a></td>
|
|
80
|
+
<td><a href="https://github.com/webgptorg/promptbook">Promptbook Engine</a></td>
|
|
81
|
+
<td>Promptbook implementation in TypeScript 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">Docker HUB</a></td>
|
|
87
82
|
</tr>
|
|
88
83
|
<tr>
|
|
89
|
-
<td>Promptbook
|
|
84
|
+
<td><a href="https://promptbook.studio">Promptbook Studio</a></td>
|
|
90
85
|
<td>Studio to write Books and instantly publish them as miniapps</td>
|
|
91
|
-
<td>
|
|
92
|
-
https://promptbook.studio<br/>
|
|
93
|
-
https://github.com/hejny/promptbook-studio</td>
|
|
94
|
-
</tr><tr>
|
|
95
|
-
<td>Hello World</td>
|
|
96
|
-
<td>Simple starter kit with Books integrated into the sample applications</td>
|
|
97
|
-
<td>
|
|
98
|
-
https://github.com/webgptorg/hello-world<br/>
|
|
99
|
-
https://github.com/webgptorg/hello-world-node-js<br/>
|
|
100
|
-
https://github.com/webgptorg/hello-world-next-js
|
|
101
|
-
</td>
|
|
102
86
|
</tr>
|
|
103
87
|
</tbody>
|
|
104
88
|
</table>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ptbk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.86.0-3",
|
|
4
4
|
"description": "It's time for a paradigm shift. The future of software in plain English, French or Latin",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
},
|
|
45
45
|
"homepage": "https://ptbk.io/",
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"@promptbook/core": "0.
|
|
47
|
+
"@promptbook/core": "0.86.0-3"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"promptbook": "0.
|
|
50
|
+
"promptbook": "0.86.0-3"
|
|
51
51
|
},
|
|
52
52
|
"bin": {
|
|
53
53
|
"ptbk": "bin/promptbook-cli-proxy.js"
|