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