ptbk 0.52.0-9 → 0.53.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.
Files changed (2) hide show
  1. package/README.md +1 -13
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -11,7 +11,6 @@ Library to supercharge your use of large language models
11
11
  [![Issues](https://img.shields.io/github/issues/webgptorg/promptbook.svg?style=flat)](https://github.com/webgptorg/promptbook/issues)
12
12
 
13
13
 
14
- [![Socket Badge](https://socket.dev/api/badge/npm/package/ptbk)](https://socket.dev/npm/package/ptbk)
15
14
 
16
15
 
17
16
 
@@ -51,15 +50,6 @@ In any of these situations, but especially in (3), the Promptbook library can ma
51
50
  - _(Not ready yet)_ Leverage the **streaming** to make super cool UI/UX.
52
51
  - _(Not ready yet)_ **A/B testing** to determine which prompt works best for the job.
53
52
 
54
- ![WebGPT](./other/screencasts/screencast-fiabciakcmgepblmdkmemdbbkilneeeh-2023.10.26-21_46_17.gif)
55
-
56
- ## 🧔 Promptbook _(for prompt-engeneers)_
57
-
58
- **P**romp**t** **b**oo**k** markdown file (**PTBK** for short, or `.ptbk.md`) is document that describes a series of prompts that are chained together to form somewhat reciepe for transforming natural language input. Inside a PTBK you can use chat prompts, completion prompts, scripting or trigger interaction with user to ask for additional information.
59
-
60
- - Multiple promptbooks forms a library which will become a **part of your application codebase**.
61
- - Theese promptbooks are designed such as they **can be written by non-programmers**.
62
-
63
53
 
64
54
 
65
55
  ### Sample:
@@ -72,7 +62,7 @@ File `write-website-content.ptbk.md`:
72
62
  >
73
63
  > Instructions for creating web page content.
74
64
  >
75
- > - PROMPTBOOK URL https://promptbook.webgpt.com/en/write-website-content.ptbk.md@v0.1.0
65
+ > - PROMPTBOOK URL https://promptbook.webgpt.com/en/write-website-content.ptbk.md
76
66
  > - PROMPTBOOK VERSION 0.0.1
77
67
  > - INPUT  PARAM `{rawTitle}` Automatically suggested a site name or empty text
78
68
  > - INPUT  PARAM `{rawAssigment}` Automatically generated site entry from image recognition
@@ -531,8 +521,6 @@ _Note: LLMs work with tokens, not characters, but in Promptbooks we want to use
531
521
  ```markdown
532
522
  # ✨ Sample: Expectations
533
523
 
534
- - PROMPTBOOK URL https://promptbook.example.com/samples/postprocessing-2.ptbk.md@v1
535
- - PROMPTBOOK VERSION 1.0.0
536
524
  - INPUT  PARAMETER {yourName} Name of the hero
537
525
 
538
526
  ## 💬 Question
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ptbk",
3
- "version": "0.52.0-9",
3
+ "version": "0.53.0",
4
4
  "description": "Library to supercharge your use of large language models",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -44,6 +44,6 @@
44
44
  }
45
45
  ],
46
46
  "dependencies": {
47
- "promptbook": "0.52.0-9"
47
+ "promptbook": "0.53.0"
48
48
  }
49
49
  }