promptbook 0.61.0-9 → 0.61.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 +3 -3
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -64,7 +64,7 @@ File `write-website-content.ptbk.md`:
|
|
|
64
64
|
> - PROMPTBOOK VERSION 0.0.1
|
|
65
65
|
> - INPUT PARAM `{rawTitle}` Automatically suggested a site name or empty text
|
|
66
66
|
> - INPUT PARAM `{rawAssigment}` Automatically generated site entry from image recognition
|
|
67
|
-
> - OUTPUT PARAM `{
|
|
67
|
+
> - OUTPUT PARAM `{websiteContent}` Web content
|
|
68
68
|
> - OUTPUT PARAM `{keywords}` Keywords
|
|
69
69
|
>
|
|
70
70
|
> ## 👤 Specifying the assigment
|
|
@@ -223,7 +223,7 @@ File `write-website-content.ptbk.md`:
|
|
|
223
223
|
> {contentBody}
|
|
224
224
|
> ```
|
|
225
225
|
>
|
|
226
|
-
> `-> {
|
|
226
|
+
> `-> {websiteContent}`
|
|
227
227
|
|
|
228
228
|
|
|
229
229
|
|
|
@@ -263,7 +263,7 @@ flowchart LR
|
|
|
263
263
|
templateCombineTheBeginning--"{contentBeginning}"-->templateCombineTheContent
|
|
264
264
|
templateWriteTheContent--"{contentBody}"-->templateCombineTheContent
|
|
265
265
|
|
|
266
|
-
templateCombineTheContent--"{
|
|
266
|
+
templateCombineTheContent--"{websiteContent}"-->output
|
|
267
267
|
output((Output)):::output
|
|
268
268
|
|
|
269
269
|
classDef input color: grey;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "promptbook",
|
|
3
|
-
"version": "0.61.0
|
|
3
|
+
"version": "0.61.0",
|
|
4
4
|
"description": "Supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -44,19 +44,19 @@
|
|
|
44
44
|
}
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@promptbook/anthropic-claude": "0.61.0
|
|
48
|
-
"@promptbook/azure-openai": "0.61.0
|
|
49
|
-
"@promptbook/cli": "0.61.0
|
|
50
|
-
"@promptbook/core": "0.61.0
|
|
51
|
-
"@promptbook/execute-javascript": "0.61.0
|
|
52
|
-
"@promptbook/fake-llm": "0.61.0
|
|
53
|
-
"@promptbook/langtail": "0.61.0
|
|
54
|
-
"@promptbook/markdown-utils": "0.61.0
|
|
55
|
-
"@promptbook/node": "0.61.0
|
|
56
|
-
"@promptbook/openai": "0.61.0
|
|
57
|
-
"@promptbook/remote-client": "0.61.0
|
|
58
|
-
"@promptbook/remote-server": "0.61.0
|
|
59
|
-
"@promptbook/types": "0.61.0
|
|
60
|
-
"@promptbook/utils": "0.61.0
|
|
47
|
+
"@promptbook/anthropic-claude": "0.61.0",
|
|
48
|
+
"@promptbook/azure-openai": "0.61.0",
|
|
49
|
+
"@promptbook/cli": "0.61.0",
|
|
50
|
+
"@promptbook/core": "0.61.0",
|
|
51
|
+
"@promptbook/execute-javascript": "0.61.0",
|
|
52
|
+
"@promptbook/fake-llm": "0.61.0",
|
|
53
|
+
"@promptbook/langtail": "0.61.0",
|
|
54
|
+
"@promptbook/markdown-utils": "0.61.0",
|
|
55
|
+
"@promptbook/node": "0.61.0",
|
|
56
|
+
"@promptbook/openai": "0.61.0",
|
|
57
|
+
"@promptbook/remote-client": "0.61.0",
|
|
58
|
+
"@promptbook/remote-server": "0.61.0",
|
|
59
|
+
"@promptbook/types": "0.61.0",
|
|
60
|
+
"@promptbook/utils": "0.61.0"
|
|
61
61
|
}
|
|
62
62
|
}
|