@autobe/agent
Version:
AI backend server code generator
17 lines (16 loc) • 568 B
TypeScript
/**
* Custom error indicating RAG loop exhausted all retry attempts.
*
* Thrown by `AutoBePreliminaryController.orchestrate()` when the LLM repeatedly
* requests more data without ever calling `complete`, exceeding
* `AutoBeConfigConstant.RAG_LIMIT` iterations.
*
* Caught alongside `AutoBeTimeoutError` in orchestration pipelines to trigger
* force-pass behavior instead of crashing the entire process.
*
* @author Samchon
*/
export declare class AutoBePreliminaryExhaustedError extends Error {
constructor(message?: string);
get name(): string;
}