@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
17 lines (16 loc) • 540 B
TypeScript
import type { PipelineString } from '../../../pipeline/PipelineString';
import type { string_markdown_text } from '../../../types/string_markdown';
/**
* Options for add pipeline command.
*/
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 {};