UNPKG

cucumber-ai

Version:

Write automated tests using natural language

13 lines (12 loc) 380 B
import { Agent } from "../agent"; import { Context } from "../context"; export declare class TextAgent implements Agent { private context; private readonly llm; private systemPrompt; constructor(context: Context); start(): Promise<void>; stop(): Promise<void>; find(predefinedTextList: string[], text: string): Promise<any>; private getCacheKey; }