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