UNPKG

@promptbook/browser

Version:

Promptbook: Run AI apps in plain human language across multiple models and platforms

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>;