@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
11 lines (10 loc) • 424 B
TypeScript
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;