UNPKG

donobu

Version:

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

15 lines 540 B
import { JSONSchema7 } from 'json-schema'; export type AskAiRequest = { /** * The prompt to use with the AI to generate a response from. */ readonly prompt: string; /** * The name of a specific GPT configuration to use. If this is not defined, * the default agent configuration will be used. **/ readonly gptConfigNameOverride?: string; /** If non-null, will attempt to respond using this JSON-schema. */ readonly resultJsonSchema?: JSONSchema7; }; //# sourceMappingURL=AskAiRequest.d.ts.map