ptbk 0.52.0-2 → 0.52.0-24
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 +7 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -72,7 +72,7 @@ File `write-website-content.ptbk.md`:
|
|
|
72
72
|
>
|
|
73
73
|
> Instructions for creating web page content.
|
|
74
74
|
>
|
|
75
|
-
> - PROMPTBOOK URL https://promptbook.webgpt.com/en/write-website-content.ptbk.md
|
|
75
|
+
> - PROMPTBOOK URL https://promptbook.webgpt.com/en/write-website-content.ptbk.md
|
|
76
76
|
> - PROMPTBOOK VERSION 0.0.1
|
|
77
77
|
> - INPUT PARAM `{rawTitle}` Automatically suggested a site name or empty text
|
|
78
78
|
> - INPUT PARAM `{rawAssigment}` Automatically generated site entry from image recognition
|
|
@@ -469,9 +469,10 @@ Internally it calls OpenAI, Azure, GPU, proxy, cache, logging,...
|
|
|
469
469
|
- _(Not implemented yet)_ `BardExecutionTools`
|
|
470
470
|
- _(Not implemented yet)_ `LamaExecutionTools`
|
|
471
471
|
- _(Not implemented yet)_ `GpuExecutionTools`
|
|
472
|
-
- And a special case are `
|
|
473
|
-
-
|
|
474
|
-
- The
|
|
472
|
+
- And a special case are `MultipleLlmExecutionTools` that combines multiple execution tools together and tries to execute the prompt on the best one.
|
|
473
|
+
- Another special case are `RemoteLlmExecutionTools` that connect to a remote server and run one of the above execution tools on that server.
|
|
474
|
+
- The another special case is `MockedEchoLlmExecutionTools` that is used for testing and mocking.
|
|
475
|
+
- The another special case is `LogLlmExecutionToolsWrapper` that is technically also an execution tools but it is more proxy wrapper around other execution tools that logs all calls to execution tools.
|
|
475
476
|
|
|
476
477
|
#### Script Execution Tools
|
|
477
478
|
|
|
@@ -530,8 +531,6 @@ _Note: LLMs work with tokens, not characters, but in Promptbooks we want to use
|
|
|
530
531
|
```markdown
|
|
531
532
|
# ✨ Sample: Expectations
|
|
532
533
|
|
|
533
|
-
- PROMPTBOOK URL https://promptbook.example.com/samples/postprocessing-2.ptbk.md@v1
|
|
534
|
-
- PROMPTBOOK VERSION 1.0.0
|
|
535
534
|
- INPUT PARAMETER {yourName} Name of the hero
|
|
536
535
|
|
|
537
536
|
## 💬 Question
|
|
@@ -570,6 +569,8 @@ Execution report is a simple object or markdown that contains information about
|
|
|
570
569
|
|
|
571
570
|
|
|
572
571
|
|
|
572
|
+
|
|
573
|
+
|
|
573
574
|
### Remote server
|
|
574
575
|
|
|
575
576
|
Remote server is a proxy server that uses its execution tools internally and exposes the executor interface externally.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ptbk",
|
|
3
|
-
"version": "0.52.0-
|
|
3
|
+
"version": "0.52.0-24",
|
|
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-
|
|
47
|
+
"promptbook": "0.52.0-24"
|
|
48
48
|
}
|
|
49
49
|
}
|