import type { FC } from 'react' import { memo } from 'react' import type { KnowledgeBaseNodeType } from './types' import type { NodeProps } from '@/app/components/workflow/types' const Node: FC> = ({ data }) => { return (
Index method
{data.indexing_technique}
Retrieval Method
{data.retrieval_model.search_method}
) } export default memo(Node)