@promptbook/core
Advanced tools
Comparing version 0.36.4 to 0.37.0
import { Wizzard } from '../wizzard/Wizzard'; | ||
export { Wizzard }; | ||
/** | ||
* TODO: [π§ββοΈ] | ||
*/ |
@@ -40,2 +40,3 @@ import { PromptbookJson } from '../_packages/types.index'; | ||
* Note: CreatePromptbookExecutorOptions are just connected to PromptbookExecutor so do not extract to types folder | ||
* TODO: [π§ ][3] transparent = (report intermediate parameters) / opaque execution = (report only output parameters) progress reporting mode | ||
*/ |
@@ -62,3 +62,4 @@ import type { string_markdown_text, string_name, string_version } from '.././types/typeAliases'; | ||
readonly type: 'PARAMETER'; | ||
readonly isInputParameter: boolean; | ||
readonly isInput: boolean; | ||
readonly isOutput: boolean; | ||
readonly parameterName: string_name; | ||
@@ -65,0 +66,0 @@ readonly parameterDescription: string_markdown_text | null; |
@@ -14,7 +14,9 @@ import { string_name } from '../typeAliases'; | ||
* The parameter is input of the pipeline | ||
* | ||
* Note: OUTPUT PARAMETER is every parameter including input one | ||
*/ | ||
readonly isInput: boolean; | ||
/** | ||
* The parameter is output of the pipeline | ||
*/ | ||
readonly isOutput: boolean; | ||
/** | ||
* Description of the parameter | ||
@@ -21,0 +23,0 @@ * - It can use simple markdown formatting like **bold**, *italic*, [link](https://example.com), ... BUT not code blocks and structure |
export {}; | ||
/** | ||
* TODO: [π§ββοΈ] | ||
url, sources nebo folder | ||
* TODO: [π§ ] OpenAi apiKey vs token | ||
*/ |
export declare const Wizzard: any; | ||
/** | ||
* TODO: [π§ββοΈ] | ||
*/ |
{ | ||
"name": "@promptbook/core", | ||
"version": "0.36.4", | ||
"version": "0.37.0", | ||
"description": "Library to supercharge your use of large language models", | ||
@@ -5,0 +5,0 @@ "private": false, |
import { Wizzard } from '../wizzard/Wizzard'; | ||
export { Wizzard }; | ||
/** | ||
* TODO: [π§ββοΈ] | ||
*/ |
@@ -40,2 +40,3 @@ import { PromptbookJson } from '../_packages/types.index'; | ||
* Note: CreatePromptbookExecutorOptions are just connected to PromptbookExecutor so do not extract to types folder | ||
* TODO: [π§ ][3] transparent = (report intermediate parameters) / opaque execution = (report only output parameters) progress reporting mode | ||
*/ |
@@ -62,3 +62,4 @@ import type { string_markdown_text, string_name, string_version } from '.././types/typeAliases'; | ||
readonly type: 'PARAMETER'; | ||
readonly isInputParameter: boolean; | ||
readonly isInput: boolean; | ||
readonly isOutput: boolean; | ||
readonly parameterName: string_name; | ||
@@ -65,0 +66,0 @@ readonly parameterDescription: string_markdown_text | null; |
@@ -14,7 +14,9 @@ import { string_name } from '../typeAliases'; | ||
* The parameter is input of the pipeline | ||
* | ||
* Note: OUTPUT PARAMETER is every parameter including input one | ||
*/ | ||
readonly isInput: boolean; | ||
/** | ||
* The parameter is output of the pipeline | ||
*/ | ||
readonly isOutput: boolean; | ||
/** | ||
* Description of the parameter | ||
@@ -21,0 +23,0 @@ * - It can use simple markdown formatting like **bold**, *italic*, [link](https://example.com), ... BUT not code blocks and structure |
export {}; | ||
/** | ||
* TODO: [π§ββοΈ] | ||
url, sources nebo folder | ||
* TODO: [π§ ] OpenAi apiKey vs token | ||
*/ |
export declare const Wizzard: any; | ||
/** | ||
* TODO: [π§ββοΈ] | ||
*/ |
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
618706
9381