/**
 * Promptbook is the **core concept of this package**.
 * It represents a series of tasks chained together to form a pipeline / one big task with input and result parameters.
 *
 * Represents a Promptbook pipeline defined as a string.
 *
 * @see The main Promptbook documentation for more details: https://github.com/webgptorg/promptbook#promptbook
 */
export type PipelineString = string & {
    readonly _type: 'Promptbook';
};
