@promptbook/node
Advanced tools
Comparing version 0.59.0-20 to 0.59.0-21
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/node", | ||
"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", |
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 {}; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
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
975703
15154