UNPKG

@promptbook/azure-openai

Version:

Promptbook: Run AI apps in plain human language across multiple models and platforms

18 lines (17 loc) 691 B
import type { PipelineString } from '../../../pipeline/PipelineString'; import type { string_markdown_text } from '../../../types/typeAliases'; type AddPipelineCommandOptions = { commandString: string_markdown_text; pipelineString: PipelineString; }; /** * Adds a new command to a pipeline string in the correct format. * * @public exported from `@promptbook/editable` */ export declare function addPipelineCommand(options: AddPipelineCommandOptions): PipelineString; export {}; /** * TODO: [🧠] What is the better solution - `- xxx`, - `- xxx` or preserve (see also next TODO) * TODO: When existing commands 1) as 2) number 3) list, add 4) new command as next number */