@promptbook/remote-client 0.59.0-34 → 0.59.0-36
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/esm/index.es.js +1 -1
- package/esm/typings/src/execution/LlmExecutionTools.d.ts +1 -0
- package/esm/typings/src/llm-providers/openai/openai-models.d.ts +0 -1
- package/esm/typings/src/types/PromptbookJson/KnowledgeJson.d.ts +1 -1
- package/esm/typings/src/types/PromptbookJson/MaterialKnowledgePieceJson.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +1 -1
- package/umd/typings/src/execution/LlmExecutionTools.d.ts +1 -0
- package/umd/typings/src/llm-providers/openai/openai-models.d.ts +0 -1
- package/umd/typings/src/types/PromptbookJson/KnowledgeJson.d.ts +1 -1
- package/umd/typings/src/types/PromptbookJson/MaterialKnowledgePieceJson.d.ts +1 -1
package/esm/index.es.js
CHANGED
|
@@ -156,7 +156,7 @@ var RemoteLlmExecutionTools = /** @class */ (function () {
|
|
|
156
156
|
/**
|
|
157
157
|
* The version of the Promptbook library
|
|
158
158
|
*/
|
|
159
|
-
var PROMPTBOOK_VERSION = '0.59.0-
|
|
159
|
+
var PROMPTBOOK_VERSION = '0.59.0-35';
|
|
160
160
|
|
|
161
161
|
export { PROMPTBOOK_VERSION, RemoteLlmExecutionTools };
|
|
162
162
|
//# sourceMappingURL=index.es.js.map
|
|
@@ -44,6 +44,7 @@ export type AvailableModel = {
|
|
|
44
44
|
readonly modelVariant: ModelVariant;
|
|
45
45
|
};
|
|
46
46
|
/**
|
|
47
|
+
* TODO: [🧠] Emulation of one type of model with another one - emuate chat with completion; emulate translation with chat
|
|
47
48
|
* TODO: [🍓][♐] Some heuristic to pick the best model in listed models
|
|
48
49
|
* TODO: [🏳] gptChat -> chat, gptComplete -> complete, translate
|
|
49
50
|
* TODO: [🧠] Should or should not there be a word "GPT" in both gptComplete and gptChat
|
|
@@ -15,7 +15,6 @@ export declare const OPENAI_MODELS: Array<AvailableModel & {
|
|
|
15
15
|
};
|
|
16
16
|
}>;
|
|
17
17
|
/**
|
|
18
|
-
* TODO: !!!! Add embedding models
|
|
19
18
|
* TODO: [🧠] Some mechanism to propagate unsureness
|
|
20
19
|
* TODO: [🕚][👮♀️] Make this list dynamic - dynamically can be listed modelNames but not modelVariant, legacy status, context length and pricing
|
|
21
20
|
* TODO: [🧠][👮♀️] Put here more info like description, isVision, trainingDateCutoff, languages, strengths ( Top-level performance, intelligence, fluency, and understanding), contextWindow,...
|
|
@@ -2,5 +2,5 @@ import type { MaterialKnowledgePieceJson } from './MaterialKnowledgePieceJson';
|
|
|
2
2
|
export type KnowledgeJson = Array<MaterialKnowledgePieceJson>;
|
|
3
3
|
/**
|
|
4
4
|
* !!!! Annotate
|
|
5
|
-
* TODO: [🦪]
|
|
5
|
+
* TODO: [🦪] Internal links between (Material)KnowledgePieces withing the KnowledgeJson
|
|
6
6
|
*/
|
|
@@ -22,7 +22,7 @@ export type MaterialKnowledgePieceJson = {
|
|
|
22
22
|
/**
|
|
23
23
|
* TODO: !!! Use or uninstall xyzt
|
|
24
24
|
* !!!! Annotate
|
|
25
|
-
* TODO: [🧠][🦪] Maybe allow internal
|
|
25
|
+
* TODO: [🧠][🦪] Maybe allow internal links between (Material)KnowledgePieces withing the KnowledgeJson and maybe require to explicitelly reference the source of the knowledge
|
|
26
26
|
* TODO: [🧠] Make some non-material sources like external search engine or dialog to user
|
|
27
27
|
* TODO: [🧠] Make some non-material (and maybe non-knowledge-like but tool-like) sources like calculator, code interpreter
|
|
28
28
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/remote-client",
|
|
3
|
-
"version": "0.59.0-
|
|
3
|
+
"version": "0.59.0-36",
|
|
4
4
|
"description": "Library to supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
}
|
|
48
48
|
],
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@promptbook/core": "0.59.0-
|
|
50
|
+
"@promptbook/core": "0.59.0-36"
|
|
51
51
|
},
|
|
52
52
|
"main": "./umd/index.umd.js",
|
|
53
53
|
"module": "./esm/index.es.js",
|
package/umd/index.umd.js
CHANGED
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
/**
|
|
161
161
|
* The version of the Promptbook library
|
|
162
162
|
*/
|
|
163
|
-
var PROMPTBOOK_VERSION = '0.59.0-
|
|
163
|
+
var PROMPTBOOK_VERSION = '0.59.0-35';
|
|
164
164
|
|
|
165
165
|
exports.PROMPTBOOK_VERSION = PROMPTBOOK_VERSION;
|
|
166
166
|
exports.RemoteLlmExecutionTools = RemoteLlmExecutionTools;
|
|
@@ -44,6 +44,7 @@ export type AvailableModel = {
|
|
|
44
44
|
readonly modelVariant: ModelVariant;
|
|
45
45
|
};
|
|
46
46
|
/**
|
|
47
|
+
* TODO: [🧠] Emulation of one type of model with another one - emuate chat with completion; emulate translation with chat
|
|
47
48
|
* TODO: [🍓][♐] Some heuristic to pick the best model in listed models
|
|
48
49
|
* TODO: [🏳] gptChat -> chat, gptComplete -> complete, translate
|
|
49
50
|
* TODO: [🧠] Should or should not there be a word "GPT" in both gptComplete and gptChat
|
|
@@ -15,7 +15,6 @@ export declare const OPENAI_MODELS: Array<AvailableModel & {
|
|
|
15
15
|
};
|
|
16
16
|
}>;
|
|
17
17
|
/**
|
|
18
|
-
* TODO: !!!! Add embedding models
|
|
19
18
|
* TODO: [🧠] Some mechanism to propagate unsureness
|
|
20
19
|
* TODO: [🕚][👮♀️] Make this list dynamic - dynamically can be listed modelNames but not modelVariant, legacy status, context length and pricing
|
|
21
20
|
* TODO: [🧠][👮♀️] Put here more info like description, isVision, trainingDateCutoff, languages, strengths ( Top-level performance, intelligence, fluency, and understanding), contextWindow,...
|
|
@@ -2,5 +2,5 @@ import type { MaterialKnowledgePieceJson } from './MaterialKnowledgePieceJson';
|
|
|
2
2
|
export type KnowledgeJson = Array<MaterialKnowledgePieceJson>;
|
|
3
3
|
/**
|
|
4
4
|
* !!!! Annotate
|
|
5
|
-
* TODO: [🦪]
|
|
5
|
+
* TODO: [🦪] Internal links between (Material)KnowledgePieces withing the KnowledgeJson
|
|
6
6
|
*/
|
|
@@ -22,7 +22,7 @@ export type MaterialKnowledgePieceJson = {
|
|
|
22
22
|
/**
|
|
23
23
|
* TODO: !!! Use or uninstall xyzt
|
|
24
24
|
* !!!! Annotate
|
|
25
|
-
* TODO: [🧠][🦪] Maybe allow internal
|
|
25
|
+
* TODO: [🧠][🦪] Maybe allow internal links between (Material)KnowledgePieces withing the KnowledgeJson and maybe require to explicitelly reference the source of the knowledge
|
|
26
26
|
* TODO: [🧠] Make some non-material sources like external search engine or dialog to user
|
|
27
27
|
* TODO: [🧠] Make some non-material (and maybe non-knowledge-like but tool-like) sources like calculator, code interpreter
|
|
28
28
|
*/
|