donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
9 lines • 376 B
TypeScript
import { DonobuException } from './DonobuException';
/**
* Thrown when attempting resolve a GPT configuration that does not exist.
*/
export declare class GptConfigNotFoundException extends DonobuException {
readonly configName: string | undefined | null;
constructor(configName: string | undefined | null);
}
//# sourceMappingURL=GptConfigNotFoundException.d.ts.map