@promptbook/browser
Advanced tools
Comparing version 0.75.0-0 to 0.75.0-1
@@ -16,3 +16,3 @@ import spaceTrim$1, { spaceTrim } from 'spacetrim'; | ||
*/ | ||
var PROMPTBOOK_ENGINE_VERSION = '0.74.0-13'; | ||
var PROMPTBOOK_ENGINE_VERSION = '0.75.0-0'; | ||
/** | ||
@@ -442,2 +442,3 @@ * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine | ||
/** | ||
* TODO: Extract `constants.ts` from `config.ts` | ||
* TODO: [๐ง ][๐งโโ๏ธ] Maybe join remoteUrl and path into single value | ||
@@ -444,0 +445,0 @@ */ |
@@ -62,5 +62,8 @@ import { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION } from '../version'; | ||
import { TextFormatDefinition } from '../formats/text/TextFormatDefinition'; | ||
import { BoilerplateFormfactorDefinition } from '../formfactors/_boilerplate/BoilerplateFormfactorDefinition'; | ||
import { ChatFormfactorDefinition } from '../formfactors/chat/ChatFormfactorDefinition'; | ||
import { GenericFormfactorDefinition } from '../formfactors/generic/GenericFormfactorDefinition'; | ||
import { FORMFACTOR_DEFINITIONS } from '../formfactors/index'; | ||
import { SheetsFormfactorDefinition } from '../formfactors/sheets/SheetsFormfactorDefinition'; | ||
import { TranslatorFormfactorDefinition } from '../formfactors/translator/TranslatorFormfactorDefinition'; | ||
import { $llmToolsMetadataRegister } from '../llm-providers/_common/register/$llmToolsMetadataRegister'; | ||
@@ -79,2 +82,3 @@ import { $llmToolsRegister } from '../llm-providers/_common/register/$llmToolsRegister'; | ||
import { preparePersona } from '../personas/preparePersona'; | ||
import { GENERIC_PIPELINE_INTERFACE } from '../pipeline/pipeline-interface/constants'; | ||
import { getPipelineInterface } from '../pipeline/pipeline-interface/getPipelineInterface'; | ||
@@ -165,5 +169,8 @@ import { isPipelineImplementingInterface } from '../pipeline/pipeline-interface/isPipelineImplementingInterface'; | ||
export { TextFormatDefinition }; | ||
export { BoilerplateFormfactorDefinition }; | ||
export { ChatFormfactorDefinition }; | ||
export { GenericFormfactorDefinition }; | ||
export { FORMFACTOR_DEFINITIONS }; | ||
export { SheetsFormfactorDefinition }; | ||
export { TranslatorFormfactorDefinition }; | ||
export { $llmToolsMetadataRegister }; | ||
@@ -182,2 +189,3 @@ export { $llmToolsRegister }; | ||
export { preparePersona }; | ||
export { GENERIC_PIPELINE_INTERFACE }; | ||
export { getPipelineInterface }; | ||
@@ -184,0 +192,0 @@ export { isPipelineImplementingInterface }; |
@@ -15,4 +15,4 @@ import { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION } from '../version'; | ||
import { $isRunningInWebWorker } from '../utils/environment/$isRunningInWebWorker'; | ||
import { CHARACTERS_PER_STANDARD_LINE } from '../utils/expectation-counters/config'; | ||
import { LINES_PER_STANDARD_PAGE } from '../utils/expectation-counters/config'; | ||
import { CHARACTERS_PER_STANDARD_LINE } from '../utils/expectation-counters/constants'; | ||
import { LINES_PER_STANDARD_PAGE } from '../utils/expectation-counters/constants'; | ||
import { countCharacters } from '../utils/expectation-counters/countCharacters'; | ||
@@ -19,0 +19,0 @@ import { countLines } from '../utils/expectation-counters/countLines'; |
@@ -195,3 +195,4 @@ import type { CsvSettings } from './formats/csv/CsvSettings'; | ||
/** | ||
* TODO: Extract `constants.ts` from `config.ts` | ||
* TODO: [๐ง ][๐งโโ๏ธ] Maybe join remoteUrl and path into single value | ||
*/ |
@@ -1,5 +0,6 @@ | ||
import type { string_SCREAMING_CASE } from '../../utils/normalization/normalizeTo_SCREAMING_CASE'; | ||
import type { PipelineInterface } from '../../pipeline/pipeline-interface/PipelineInterface'; | ||
import type { string_markdown_text } from '../../types/typeAliases'; | ||
import type { string_name } from '../../types/typeAliases'; | ||
import type { string_promptbook_documentation_url } from '../../types/typeAliases'; | ||
import type { string_SCREAMING_CASE } from '../../utils/normalization/normalizeTo_SCREAMING_CASE'; | ||
/** | ||
@@ -29,2 +30,6 @@ * @@@ | ||
readonly documentationUrl: string_promptbook_documentation_url; | ||
/** | ||
* @@@ | ||
*/ | ||
readonly pipelineInterface: PipelineInterface; | ||
}; |
@@ -1,2 +0,2 @@ | ||
import type { FORMFACTOR_DEFINITIONS } from '../index'; | ||
import { FORMFACTOR_DEFINITIONS } from '../index'; | ||
/** | ||
@@ -3,0 +3,0 @@ * @@@ |
@@ -7,5 +7,10 @@ /** | ||
export declare const ChatFormfactorDefinition: { | ||
readonly name: "CHAT"; | ||
readonly name: "CHATBOT"; | ||
readonly aliasNames: readonly ["CHAT"]; | ||
readonly description: "@@@"; | ||
readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@"; | ||
readonly pipelineInterface: { | ||
readonly inputParameterNames: readonly ["previousTitle", "previousConversationSummary", "userMessage"]; | ||
readonly outputParameterNames: readonly ["title", "conversationSummary", "chatbotResponse"]; | ||
}; | ||
}; |
@@ -10,2 +10,6 @@ /** | ||
readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@"; | ||
readonly pipelineInterface: { | ||
readonly inputParameterNames: readonly []; | ||
readonly outputParameterNames: readonly []; | ||
}; | ||
}; |
@@ -10,6 +10,31 @@ /** | ||
readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@"; | ||
readonly pipelineInterface: { | ||
readonly inputParameterNames: readonly []; | ||
readonly outputParameterNames: readonly []; | ||
}; | ||
}, { | ||
readonly name: "CHAT"; | ||
readonly name: "CHATBOT"; | ||
readonly aliasNames: readonly ["CHAT"]; | ||
readonly description: "@@@"; | ||
readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@"; | ||
readonly pipelineInterface: { | ||
readonly inputParameterNames: readonly ["previousTitle", "previousConversationSummary", "userMessage"]; | ||
readonly outputParameterNames: readonly ["title", "conversationSummary", "chatbotResponse"]; | ||
}; | ||
}, { | ||
readonly name: "TRANSLATOR"; | ||
readonly description: "@@@"; | ||
readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@"; | ||
readonly pipelineInterface: { | ||
readonly inputParameterNames: readonly ["inputMessage"]; | ||
readonly outputParameterNames: readonly ["outputMessage"]; | ||
}; | ||
}, { | ||
readonly name: "SHEETS"; | ||
readonly description: "@@@"; | ||
readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@"; | ||
readonly pipelineInterface: { | ||
readonly inputParameterNames: readonly ["inputSheet"]; | ||
readonly outputParameterNames: readonly ["outputSheet"]; | ||
}; | ||
}]; |
@@ -11,3 +11,3 @@ import type { string_parameter_name } from '../../types/typeAliases'; | ||
*/ | ||
inputParameterNames: Array<string_parameter_name>; | ||
readonly inputParameterNames: ReadonlyArray<string_parameter_name>; | ||
/** | ||
@@ -18,3 +18,3 @@ * @@@ | ||
*/ | ||
outputParameterNames: Array<string_parameter_name>; | ||
readonly outputParameterNames: ReadonlyArray<string_parameter_name>; | ||
}; | ||
@@ -21,0 +21,0 @@ /** |
{ | ||
"name": "@promptbook/browser", | ||
"version": "0.75.0-0", | ||
"version": "0.75.0-1", | ||
"description": "Supercharge your use of large language models", | ||
@@ -56,3 +56,3 @@ "private": false, | ||
"peerDependencies": { | ||
"@promptbook/core": "0.75.0-0" | ||
"@promptbook/core": "0.75.0-1" | ||
}, | ||
@@ -59,0 +59,0 @@ "dependencies": { |
@@ -23,3 +23,3 @@ (function (global, factory) { | ||
*/ | ||
var PROMPTBOOK_ENGINE_VERSION = '0.74.0-13'; | ||
var PROMPTBOOK_ENGINE_VERSION = '0.75.0-0'; | ||
/** | ||
@@ -449,2 +449,3 @@ * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine | ||
/** | ||
* TODO: Extract `constants.ts` from `config.ts` | ||
* TODO: [๐ง ][๐งโโ๏ธ] Maybe join remoteUrl and path into single value | ||
@@ -451,0 +452,0 @@ */ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
624895
601
12478