import { IRagNode } from '@/interfaces/database/agent'; import { NodeProps } from '@xyflow/react'; import { get } from 'lodash'; import { LLMLabelCard } from './card'; import { RagNode } from './index'; export function ExtractorNode({ ...props }: NodeProps) { const { data } = props; return ( ); }