donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
11 lines • 317 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GptClient = void 0;
/** Generic client interface for talking to GPT providers. */
class GptClient {
constructor(config) {
this.config = config;
}
}
exports.GptClient = GptClient;
//# sourceMappingURL=GptClient.js.map