ptbk 0.84.0-9 → 0.85.0-0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  <!-- ⚠️ WARNING: This code has been generated so that any manual changes will be overwritten -->
2
2
 
3
- # Promptbook
3
+ # Promptbook
4
4
 
5
5
 
6
6
 
@@ -14,12 +14,13 @@
14
14
 
15
15
 
16
16
 
17
- ## New Features
17
+ ## 🌟 New Features
18
18
 
19
+ - 💫 Support of [`o3-mini` model by OpenAI](https://openai.com/index/openai-o3-mini/)
20
+ - 🐋 **Support of [DeepSeek models](https://www.npmjs.com/package/@promptbook/deepseek)**
19
21
  - 💙 Working [the **Book** language v1.0.0](https://github.com/webgptorg/book)
20
22
  - 🖤 Run books from CLI - `npx ptbk run path/to/your/book`
21
- - 📚 Support of `.docx`, `.doc` and `.pdf` documents
22
- - ✨ **Support of [OpenAI o1 model](https://openai.com/o1/)**
23
+ - 📚 Support of `.docx`, `.doc` and `.pdf` documents as knowledge
23
24
 
24
25
 
25
26
 
@@ -239,8 +240,9 @@ Or you can install them separately:
239
240
  - **[@promptbook/anthropic-claude](https://www.npmjs.com/package/@promptbook/anthropic-claude)** - Execution tools for Anthropic Claude API, wrapper around Anthropic Claude SDK
240
241
  - **[@promptbook/vercel](https://www.npmjs.com/package/@promptbook/vercel)** - Adapter for Vercel functionalities
241
242
  - **[@promptbook/google](https://www.npmjs.com/package/@promptbook/google)** - Integration with Google's Gemini API
243
+ - **[@promptbook/deepseek](https://www.npmjs.com/package/@promptbook/deepseek)** - Integration with [DeepSeek API](https://www.deepseek.com/)
242
244
  - **[@promptbook/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
243
- - **[@promptbook/langtail](https://www.npmjs.com/package/@promptbook/langtail)** - Execution tools for Langtail API, wrapper around Langtail SDK
245
+
244
246
  - **[@promptbook/fake-llm](https://www.npmjs.com/package/@promptbook/fake-llm)** - Mocked execution tools for testing the library and saving the tokens
245
247
  - **[@promptbook/remote-client](https://www.npmjs.com/package/@promptbook/remote-client)** - Remote client for remote execution of promptbooks
246
248
  - **[@promptbook/remote-server](https://www.npmjs.com/package/@promptbook/remote-server)** - Remote server for remote execution of promptbooks
@@ -410,6 +412,20 @@ See [TODO.md](./TODO.md)
410
412
 
411
413
 
412
414
 
415
+ ## 🤝 Partners
416
+
417
+ <div style="display: flex; align-items: center; gap: 20px;">
418
+
419
+ <a href="https://promptbook.studio/">
420
+ <img src="./other/design/promptbook-studio-logo.png" alt="Partner 3" height="100">
421
+ </a>
422
+
423
+ <a href="https://technologickainkubace.org/en/about-technology-incubation/about-the-project/">
424
+ <img src="./other/partners/CI-Technology-Incubation.png" alt="Technology Incubation" height="100">
425
+ </a>
426
+
427
+ </div>
428
+
413
429
  ## 🖋️ Contributing
414
430
 
415
431
  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).
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+ // <- TODO: [🎺] Ensure correct version of Node.js is used
3
+
4
+ console.log('!!!');
5
+
6
+ // TODO: !!!!!! Remove or proxy
7
+
8
+ /**
9
+ * If kept:
10
+ * TODO: !!! During the build check that this file exists
11
+ */
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "ptbk",
3
- "version": "0.84.0-9",
3
+ "version": "0.85.0-0",
4
4
  "description": "It's time for a paradigm shift. The future of software in plain English, French or Latin",
5
- "--note-0": " <- [🐊]",
6
5
  "private": false,
7
6
  "sideEffects": false,
8
7
  "repository": {
9
8
  "type": "git",
10
9
  "url": "https://github.com/webgptorg/promptbook"
11
10
  },
11
+ "author": "Pavol Hejný <pavol@ptbk.io> (https://www.pavolhejny.com/)",
12
12
  "contributors": [
13
- "Pavol Hejný <pavol@ptbk.io> (https://www.pavolhejny.com/)"
13
+ "Pavol Hejný <pavol@ptbk.io> (https://www.pavolhejny.com/)",
14
+ "Jiří Jahn <jiri@ptbk.io> (https://www.ptbk.io/)"
14
15
  ],
15
- "--todo-0": "TODO: [❇️] Make better list of keywords",
16
16
  "keywords": [
17
17
  "ai",
18
18
  "llm",
@@ -25,6 +25,9 @@
25
25
  "natural-language-processing",
26
26
  "nlp",
27
27
  "openai",
28
+ "o3",
29
+ "o3-mini",
30
+ "deepseek",
28
31
  "gpt-3",
29
32
  "gpt-4",
30
33
  "gpt-4o",
@@ -35,25 +38,15 @@
35
38
  "anthropic",
36
39
  "LLMOps"
37
40
  ],
38
- "license": "CC-BY-4.0",
41
+ "license": "BUSL-1.1",
39
42
  "bugs": {
40
43
  "url": "https://github.com/webgptorg/promptbook/issues"
41
44
  },
42
45
  "homepage": "https://www.npmjs.com/package/@promptbook/core",
43
- "funding": [
44
- {
45
- "type": "individual",
46
- "url": "https://buymeacoffee.com/hejny"
47
- },
48
- {
49
- "type": "github",
50
- "url": "https://github.com/webgptorg/promptbook/blob/main/README.md#%EF%B8%8F-contributing"
51
- }
52
- ],
53
46
  "peerDependencies": {
54
- "@promptbook/core": "0.84.0-9"
47
+ "@promptbook/core": "0.85.0-0"
55
48
  },
56
49
  "dependencies": {
57
- "promptbook": "0.84.0-9"
50
+ "promptbook": "0.85.0-0"
58
51
  }
59
52
  }