@promptbook/remote-client 0.84.0-16 → 0.84.0-17
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 -1
- package/esm/index.es.js +3 -3
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/core.index.d.ts +2 -0
- package/esm/typings/src/config.d.ts +6 -0
- package/esm/typings/src/conversion/compilePipelineOnRemoteServer.d.ts +1 -1
- package/esm/typings/src/prepare/preparePipelineOnRemoteServer.d.ts +1 -1
- package/esm/typings/src/remote-server/socket-types/_subtypes/PromptbookServer_Identification.d.ts +5 -2
- package/package.json +6 -4
- package/umd/index.umd.js +3 -3
- package/umd/index.umd.js.map +1 -1
- package/LICENSE.md +0 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
## 🌟 New Features
|
|
18
18
|
|
|
19
|
-
- 🐋 **Support of [DeepSeek models](https://www.
|
|
19
|
+
- 🐋 **Support of [DeepSeek models](https://www.npmjs.com/package/@promptbook/deepseek)**
|
|
20
20
|
- 💙 Working [the **Book** language v1.0.0](https://github.com/webgptorg/book)
|
|
21
21
|
- 🖤 Run books from CLI - `npx ptbk run path/to/your/book`
|
|
22
22
|
- 📚 Support of `.docx`, `.doc` and `.pdf` documents as knowledge
|
|
@@ -435,6 +435,12 @@ See [TODO.md](./TODO.md)
|
|
|
435
435
|
|
|
436
436
|
|
|
437
437
|
|
|
438
|
+
|
|
439
|
+
## 🤝 Partners
|
|
440
|
+
|
|
441
|
+
[](https://technologickainkubace.org/en/about-technology-incubation/about-the-project/)
|
|
442
|
+
|
|
443
|
+
|
|
438
444
|
## 🖋️ Contributing
|
|
439
445
|
|
|
440
446
|
I am open to pull requests, feedback, and suggestions. Or if you like this utility, you can [☕ buy me a coffee](https://www.buymeacoffee.com/hejny) or [donate via cryptocurrencies](https://github.com/hejny/hejny/blob/main/documents/crypto.md).
|
package/esm/index.es.js
CHANGED
|
@@ -19,7 +19,7 @@ var BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
19
19
|
* @generated
|
|
20
20
|
* @see https://github.com/webgptorg/promptbook
|
|
21
21
|
*/
|
|
22
|
-
var PROMPTBOOK_ENGINE_VERSION = '0.84.0-
|
|
22
|
+
var PROMPTBOOK_ENGINE_VERSION = '0.84.0-16';
|
|
23
23
|
/**
|
|
24
24
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
25
25
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -651,7 +651,7 @@ function preparePipelineOnRemoteServer(pipeline, options) {
|
|
|
651
651
|
});
|
|
652
652
|
}
|
|
653
653
|
/**
|
|
654
|
-
* TODO:
|
|
654
|
+
* TODO: [🐚] Do not return Promise<PipelineJson> But PreparePipelineTask
|
|
655
655
|
*/
|
|
656
656
|
|
|
657
657
|
/**
|
|
@@ -5633,7 +5633,7 @@ function compilePipelineOnRemoteServer(pipelineString, options) {
|
|
|
5633
5633
|
});
|
|
5634
5634
|
}
|
|
5635
5635
|
/**
|
|
5636
|
-
* TODO:
|
|
5636
|
+
* TODO: [🐚] Do not return Promise<PipelineJson> But PreparePipelineTask
|
|
5637
5637
|
*/
|
|
5638
5638
|
|
|
5639
5639
|
/**
|