@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
11 lines (10 loc) • 554 B
TypeScript
import type { ReadonlyDeep } from 'type-fest';
import type { TaskJson } from '../../pipeline/PipelineJson/TaskJson';
import type { string_markdown } from '../../types/string_markdown';
import type { string_parameter_value } from '../../types/string_name';
/**
* 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>;