donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
13 lines • 504 B
TypeScript
import { Request, Response } from 'express';
import { AgentsManager } from '../managers/AgentsManager';
/**
* This API manages the mapping of Donobu agents to GPT configurations.
*/
export declare class AgentsApi {
private readonly agentsManager;
constructor(agentsManager: AgentsManager);
set(req: Request, res: Response): Promise<void>;
get(req: Request, res: Response): Promise<void>;
getAll(_req: Request, res: Response): Promise<void>;
}
//# sourceMappingURL=AgentsApi.d.ts.map