UNPKG

donobu

Version:

Create browser automations with an LLM agent and replay them as Playwright scripts.

10 lines 392 B
import { DonobuException } from './DonobuException'; /** * Thrown when attempting to use a GPT model that doesn't exist for a given platform. */ export declare class GptModelNotFoundException extends DonobuException { readonly platform: string; readonly gptModel: string; constructor(platform: string, gptModel: string); } //# sourceMappingURL=GptModelNotFoundException.d.ts.map