UNPKG

@promptbook/remote-client

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

14 lines (13 loc) 451 B
import type { PipelineString } from '../../../pipeline/PipelineString'; /** * Converts a pipeline structure to its string representation. * * Transforms a flat, simple pipeline into a properly formatted pipeline string * with sections for title, prompt, and return statement. * * @public exported from `@promptbook/editable` */ export declare function deflatePipeline(pipelineString: PipelineString): PipelineString; /** * TODO: Unit test */