@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
14 lines (13 loc) • 451 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;
/**
* TODO: Unit test
*/