@promptbook/fake-llm
Advanced tools
Comparing version 0.59.0-20 to 0.59.0-21
@@ -846,5 +846,5 @@ import { spaceTrim } from 'spacetrim'; | ||
*/ | ||
var PROMPTBOOK_VERSION = '0.59.0-22'; | ||
var PROMPTBOOK_VERSION = '0.59.0-20'; | ||
export { MockedEchoLlmExecutionTools, MockedFackedLlmExecutionTools, PROMPTBOOK_VERSION }; | ||
//# sourceMappingURL=index.es.js.map |
import type { LlmExecutionTools } from '../../../execution/LlmExecutionTools'; | ||
import type { KnowledgeJson } from '../../../types/PromptbookJson/KnowledgeJson'; | ||
import type { string_markdown } from '../../../types/typeAliases'; | ||
export declare function prepareKnowledgeFromMarkdown(options: { | ||
type PrepareKnowledgeFromMarkdownOptions = { | ||
/** | ||
* The source of the knowledge in markdown format | ||
*/ | ||
content: string_markdown; | ||
/** | ||
* The LLM tools to use for the conversion and extraction of knowledge | ||
*/ | ||
llmTools: LlmExecutionTools; | ||
}): Promise<KnowledgeJson>; | ||
/** | ||
* If true, the preaparation of knowledge logs additional information | ||
* | ||
* @default false | ||
*/ | ||
isVerbose?: boolean; | ||
}; | ||
export declare function prepareKnowledgeFromMarkdown(options: PrepareKnowledgeFromMarkdownOptions): Promise<KnowledgeJson>; | ||
export {}; |
{ | ||
"name": "@promptbook/fake-llm", | ||
"version": "0.59.0-20", | ||
"version": "0.59.0-21", | ||
"description": "Library to supercharge your use of large language models", | ||
@@ -51,3 +51,3 @@ "private": false, | ||
"peerDependencies": { | ||
"@promptbook/core": "0.59.0-20" | ||
"@promptbook/core": "0.59.0-21" | ||
}, | ||
@@ -54,0 +54,0 @@ "main": "./umd/index.umd.js", |
@@ -849,3 +849,3 @@ (function (global, factory) { | ||
*/ | ||
var PROMPTBOOK_VERSION = '0.59.0-22'; | ||
var PROMPTBOOK_VERSION = '0.59.0-20'; | ||
@@ -852,0 +852,0 @@ exports.MockedEchoLlmExecutionTools = MockedEchoLlmExecutionTools; |
import type { LlmExecutionTools } from '../../../execution/LlmExecutionTools'; | ||
import type { KnowledgeJson } from '../../../types/PromptbookJson/KnowledgeJson'; | ||
import type { string_markdown } from '../../../types/typeAliases'; | ||
export declare function prepareKnowledgeFromMarkdown(options: { | ||
type PrepareKnowledgeFromMarkdownOptions = { | ||
/** | ||
* The source of the knowledge in markdown format | ||
*/ | ||
content: string_markdown; | ||
/** | ||
* The LLM tools to use for the conversion and extraction of knowledge | ||
*/ | ||
llmTools: LlmExecutionTools; | ||
}): Promise<KnowledgeJson>; | ||
/** | ||
* If true, the preaparation of knowledge logs additional information | ||
* | ||
* @default false | ||
*/ | ||
isVerbose?: boolean; | ||
}; | ||
export declare function prepareKnowledgeFromMarkdown(options: PrepareKnowledgeFromMarkdownOptions): Promise<KnowledgeJson>; | ||
export {}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
571189
9909