UNPKG

@promptbook/remote-client

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

12 lines (11 loc) 477 B
import type { PipelineExecutor } from '../PipelineExecutor'; import type { CreatePipelineExecutorOptions } from './00-CreatePipelineExecutorOptions'; /** * Creates executor function from pipeline and execution tools. * * @returns The executor function * @throws {PipelineLogicError} on logical error in the pipeline * * @public exported from `@promptbook/core` */ export declare function createPipelineExecutor(options: CreatePipelineExecutorOptions): PipelineExecutor;