Files
ragflow/web/src/pages/agent/canvas/node/data-operations-node.tsx

12 lines
291 B
TypeScript
Raw Normal View History

import { IRagNode } from '@/interfaces/database/agent';
import { NodeProps } from '@xyflow/react';
import { RagNode } from '.';
export function DataOperationsNode({ ...props }: NodeProps<IRagNode>) {
return (
<RagNode {...props}>
<section>select</section>
</RagNode>
);
}