ptbk 0.68.0-0 → 0.68.0-2
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 +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -70,7 +70,7 @@ File `write-website-content.ptbk.md`:
|
|
|
70
70
|
>
|
|
71
71
|
> What is your web about?
|
|
72
72
|
>
|
|
73
|
-
> -
|
|
73
|
+
> - DIALOG BLOCK
|
|
74
74
|
>
|
|
75
75
|
> ```
|
|
76
76
|
> {rawAssigment}
|
|
@@ -104,7 +104,7 @@ File `write-website-content.ptbk.md`:
|
|
|
104
104
|
>
|
|
105
105
|
> Is the title for your website okay?
|
|
106
106
|
>
|
|
107
|
-
> -
|
|
107
|
+
> - DIALOG BLOCK
|
|
108
108
|
>
|
|
109
109
|
> ```
|
|
110
110
|
> {enhancedTitle}
|
|
@@ -265,7 +265,7 @@ flowchart LR
|
|
|
265
265
|
end;
|
|
266
266
|
```
|
|
267
267
|
|
|
268
|
-
- [More template samples](./samples/
|
|
268
|
+
- [More template samples](./samples/pipelines/)
|
|
269
269
|
- [Read more about `.ptbk.md` file format here](https://github.com/webgptorg/promptbook/discussions/categories/concepts?discussions_q=is%3Aopen+label%3A.ptbk.md+category%3AConcepts)
|
|
270
270
|
|
|
271
271
|
_Note: We are using [postprocessing functions](#postprocessing-functions) like `unwrapResult` that can be used to postprocess the result._
|
|
@@ -382,7 +382,7 @@ If you have a question [start a discussion](https://github.com/webgptorg/promptb
|
|
|
382
382
|
|
|
383
383
|
### Why not just use the OpenAI SDK / Anthropic Claude SDK / ...?
|
|
384
384
|
|
|
385
|
-
Different levels of abstraction. OpenAI library is for direct use of OpenAI API. This library is for a higher level of abstraction. It
|
|
385
|
+
Different levels of abstraction. OpenAI library is for direct use of OpenAI API. This library is for a higher level of abstraction. It define pipelines that are independent of the underlying library, LLM model, or even LLM provider.
|
|
386
386
|
|
|
387
387
|
### How is it different from the Langchain library?
|
|
388
388
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ptbk",
|
|
3
|
-
"version": "0.68.0-
|
|
3
|
+
"version": "0.68.0-2",
|
|
4
4
|
"description": "Supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
}
|
|
45
45
|
],
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"@promptbook/core": "0.68.0-
|
|
47
|
+
"@promptbook/core": "0.68.0-2"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"promptbook": "0.68.0-
|
|
50
|
+
"promptbook": "0.68.0-2"
|
|
51
51
|
}
|
|
52
52
|
}
|