cucumber-ai
Version:
Write automated tests using natural language
15 lines (14 loc) • 504 B
TypeScript
import { Agent } from "../agent";
import { Context } from "../context";
import { Action } from "../loaders/action-parser";
export { ConceptAgent } from "./concept-agent";
export declare class ActionAgent implements Agent {
private context;
private actionContext;
constructor(context: Context);
start(): Promise<void>;
stop(): Promise<void>;
executeActions(actions: Action[], args?: Record<string, string>): Promise<void>;
private replaceArgValue;
private updateContext;
}