UNPKG

donobu

Version:

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

12 lines 518 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ToolRequiresGptException = void 0; const DonobuException_1 = require("./DonobuException"); class ToolRequiresGptException extends DonobuException_1.DonobuException { constructor(toolName) { super(`Cannot use '${toolName}' since it requires a non-null GPT client.`); this.toolName = toolName; } } exports.ToolRequiresGptException = ToolRequiresGptException; //# sourceMappingURL=ToolRequiresGptException.js.map