UNPKG

donobu

Version:

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

19 lines 452 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ToolCallResult = void 0; /** * Factory functions for creating ToolCallResult objects */ exports.ToolCallResult = { /** * Creates a successful ToolCallResult. */ successful() { return { isSuccessful: true, forLlm: 'SUCCESS', metadata: null, }; }, }; //# sourceMappingURL=ToolCallResult.js.map