@jss-rule-engine/chat
Version:
8 lines (7 loc) • 351 B
TypeScript
import { IWorkflowAction, WorkflowAction } from '@jss-rule-engine/workflow';
import { WorkflowExecutionContext } from '@jss-rule-engine/workflow';
export declare class ChatbotAIAction implements IWorkflowAction {
private aiService;
constructor();
execute(action: WorkflowAction, context: WorkflowExecutionContext): Promise<void>;
}