mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-31 13:03:49 +08:00
12 lines
291 B
TypeScript
12 lines
291 B
TypeScript
|
|
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>
|
||
|
|
);
|
||
|
|
}
|