UNPKG

@promptbook/vercel

Version:

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

11 lines (10 loc) 550 B
import type { ReadonlyDeep } from 'type-fest'; import type { TaskJson } from '../../pipeline/PipelineJson/TaskJson'; import type { string_markdown } from '../../types/typeAliases'; import type { string_parameter_value } from '../../types/typeAliases'; /** * Retrieves example values or templates for a given task, used to guide or validate pipeline execution. * * @private internal utility of `createPipelineExecutor` */ export declare function getExamplesForTask(task: ReadonlyDeep<TaskJson>): Promise<string_parameter_value & string_markdown>;