Files
ragflow/web/src/pages/agent/canvas/node/variable-aggregator-node.tsx
T

12 lines
311 B
TypeScript
Raw Normal View History

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