donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
10 lines • 341 B
TypeScript
/**
* This interface is intended to be the base for all tool parameters that are generated by a GPT.
*/
export interface BaseToolGptParameters {
/**
* The reason why this particular action is being taken. It MUST relate to the overall objective.
*/
rationale: string;
}
//# sourceMappingURL=BaseToolGptParameters.d.ts.map