UNPKG

@promptbook/gemini

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

28 lines (27 loc) 812 B
import type { ReadonlyDeep } from 'type-fest'; import type { PipelineJson } from '../../pipeline/PipelineJson/PipelineJson'; import type { TaskJson } from '../../pipeline/PipelineJson/TaskJson'; import type { string_markdown } from '../../types/typeAliases'; import type { string_parameter_value } from '../../types/typeAliases'; /** * @@@ * * @private internal type of `getKnowledgeFoTask` */ type GetKnowledgeForTaskOptions = { /** * @@@ */ readonly preparedPipeline: ReadonlyDeep<PipelineJson>; /** * @@@ */ readonly task: ReadonlyDeep<TaskJson>; }; /** * @@@ * * @private internal utility of `createPipelineExecutor` */ export declare function getKnowledgeForTask(options: GetKnowledgeForTaskOptions): Promise<string_parameter_value & string_markdown>; export {};