@promptbook/anthropic-claude 0.59.0-21 → 0.59.0-22
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
CHANGED
|
@@ -670,7 +670,7 @@ var AnthropicClaudeExecutionTools = /** @class */ (function () {
|
|
|
670
670
|
/**
|
|
671
671
|
* The version of the Promptbook library
|
|
672
672
|
*/
|
|
673
|
-
var PROMPTBOOK_VERSION = '0.59.0-
|
|
673
|
+
var PROMPTBOOK_VERSION = '0.59.0-21';
|
|
674
674
|
|
|
675
675
|
export { AnthropicClaudeExecutionTools, PROMPTBOOK_VERSION };
|
|
676
676
|
//# sourceMappingURL=index.es.js.map
|
package/esm/typings/src/knowledge/prepare-knowledge/markdown/prepareKnowledgeFromMarkdown.d.ts
CHANGED
|
@@ -1,21 +1,7 @@
|
|
|
1
1
|
import type { LlmExecutionTools } from '../../../execution/LlmExecutionTools';
|
|
2
2
|
import type { KnowledgeJson } from '../../../types/PromptbookJson/KnowledgeJson';
|
|
3
3
|
import type { string_markdown } from '../../../types/typeAliases';
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* The source of the knowledge in markdown format
|
|
7
|
-
*/
|
|
4
|
+
export declare function prepareKnowledgeFromMarkdown(options: {
|
|
8
5
|
content: string_markdown;
|
|
9
|
-
/**
|
|
10
|
-
* The LLM tools to use for the conversion and extraction of knowledge
|
|
11
|
-
*/
|
|
12
6
|
llmTools: LlmExecutionTools;
|
|
13
|
-
|
|
14
|
-
* If true, the preaparation of knowledge logs additional information
|
|
15
|
-
*
|
|
16
|
-
* @default false
|
|
17
|
-
*/
|
|
18
|
-
isVerbose?: boolean;
|
|
19
|
-
};
|
|
20
|
-
export declare function prepareKnowledgeFromMarkdown(options: PrepareKnowledgeFromMarkdownOptions): Promise<KnowledgeJson>;
|
|
21
|
-
export {};
|
|
7
|
+
}): Promise<KnowledgeJson>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/anthropic-claude",
|
|
3
|
-
"version": "0.59.0-
|
|
3
|
+
"version": "0.59.0-22",
|
|
4
4
|
"description": "Library to supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
}
|
|
49
49
|
],
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"@promptbook/core": "0.59.0-
|
|
51
|
+
"@promptbook/core": "0.59.0-22"
|
|
52
52
|
},
|
|
53
53
|
"main": "./umd/index.umd.js",
|
|
54
54
|
"module": "./esm/index.es.js",
|
package/umd/index.umd.js
CHANGED
|
@@ -678,7 +678,7 @@
|
|
|
678
678
|
/**
|
|
679
679
|
* The version of the Promptbook library
|
|
680
680
|
*/
|
|
681
|
-
var PROMPTBOOK_VERSION = '0.59.0-
|
|
681
|
+
var PROMPTBOOK_VERSION = '0.59.0-21';
|
|
682
682
|
|
|
683
683
|
exports.AnthropicClaudeExecutionTools = AnthropicClaudeExecutionTools;
|
|
684
684
|
exports.PROMPTBOOK_VERSION = PROMPTBOOK_VERSION;
|
package/umd/typings/src/knowledge/prepare-knowledge/markdown/prepareKnowledgeFromMarkdown.d.ts
CHANGED
|
@@ -1,21 +1,7 @@
|
|
|
1
1
|
import type { LlmExecutionTools } from '../../../execution/LlmExecutionTools';
|
|
2
2
|
import type { KnowledgeJson } from '../../../types/PromptbookJson/KnowledgeJson';
|
|
3
3
|
import type { string_markdown } from '../../../types/typeAliases';
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* The source of the knowledge in markdown format
|
|
7
|
-
*/
|
|
4
|
+
export declare function prepareKnowledgeFromMarkdown(options: {
|
|
8
5
|
content: string_markdown;
|
|
9
|
-
/**
|
|
10
|
-
* The LLM tools to use for the conversion and extraction of knowledge
|
|
11
|
-
*/
|
|
12
6
|
llmTools: LlmExecutionTools;
|
|
13
|
-
|
|
14
|
-
* If true, the preaparation of knowledge logs additional information
|
|
15
|
-
*
|
|
16
|
-
* @default false
|
|
17
|
-
*/
|
|
18
|
-
isVerbose?: boolean;
|
|
19
|
-
};
|
|
20
|
-
export declare function prepareKnowledgeFromMarkdown(options: PrepareKnowledgeFromMarkdownOptions): Promise<KnowledgeJson>;
|
|
21
|
-
export {};
|
|
7
|
+
}): Promise<KnowledgeJson>;
|