donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
12 lines • 556 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GptPlatformRateLimitedException = void 0;
const DonobuException_1 = require("./DonobuException");
class GptPlatformRateLimitedException extends DonobuException_1.DonobuException {
constructor(gptPlatform) {
super(`'${gptPlatform}' has enforced a rate limit.`, undefined, 429);
this.gptPlatform = gptPlatform;
}
}
exports.GptPlatformRateLimitedException = GptPlatformRateLimitedException;
//# sourceMappingURL=GptPlatformRateLimitedException.js.map