ptbk 0.94.0-0 → 0.94.0-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 +1 -6
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -36,8 +36,6 @@ Write AI applications using plain human language across multiple models and plat
36
36
 
37
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**!
38
38
 
39
-
40
-
41
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!
42
40
 
43
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.
@@ -223,8 +221,6 @@ Personas can have access to different knowledge, tools and actions. They can als
223
221
 
224
222
  - [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
225
223
 
226
-
227
-
228
224
  ### **3. How:** Knowledge, Instruments and Actions
229
225
 
230
226
  The resources used by the personas are used to do the work.
@@ -285,6 +281,7 @@ Or you can install them separately:
285
281
  - **[@promptbook/vercel](https://www.npmjs.com/package/@promptbook/vercel)** - Adapter for Vercel functionalities
286
282
  - **[@promptbook/google](https://www.npmjs.com/package/@promptbook/google)** - Integration with Google's Gemini API
287
283
  - **[@promptbook/deepseek](https://www.npmjs.com/package/@promptbook/deepseek)** - Integration with [DeepSeek API](https://www.deepseek.com/)
284
+ - **[@promptbook/ollama](https://www.npmjs.com/package/@promptbook/ollama)** - Integration with [Ollama](https://ollama.com/) API
288
285
  - **[@promptbook/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
289
286
 
290
287
  - **[@promptbook/fake-llm](https://www.npmjs.com/package/@promptbook/fake-llm)** - Mocked execution tools for testing the library and saving the tokens
@@ -323,8 +320,6 @@ The following glossary is used to clarify certain concepts:
323
320
 
324
321
  _Note: This section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
325
322
 
326
-
327
-
328
323
  ### 💯 Core concepts
329
324
 
330
325
  - [📚 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.94.0-0",
3
+ "version": "0.94.0-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,
@@ -60,10 +60,10 @@
60
60
  "words": []
61
61
  },
62
62
  "peerDependencies": {
63
- "@promptbook/core": "0.94.0-0"
63
+ "@promptbook/core": "0.94.0-1"
64
64
  },
65
65
  "dependencies": {
66
- "promptbook": "0.94.0-0"
66
+ "promptbook": "0.94.0-1"
67
67
  },
68
68
  "bin": {
69
69
  "ptbk": "bin/promptbook-cli-proxy.js"