@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
12 lines (11 loc) • 346 B
TypeScript
import type { task_id } from '../types/string_token';
/**
* This error indicates errors during the execution of the pipeline
*
* @public exported from `@promptbook/core`
*/
export declare class PipelineExecutionError extends Error {
readonly name = "PipelineExecutionError";
readonly id?: task_id;
constructor(message: string);
}