@promptbook/gemini
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
10 lines (9 loc) • 331 B
TypeScript
/**
* This error indicates that the promptbook object has valid syntax (=can be parsed) but contains logical errors (like circular dependencies)
*
* @public exported from `@promptbook/core`
*/
export declare class PipelineLogicError extends Error {
readonly name = "PipelineLogicError";
constructor(message: string);
}