mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-01-04 03:25:30 +08:00
### What problem does this PR solve? Feat: Add variable assignment node #10427 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
import { IRagNode } from '@/interfaces/database/agent';
|
|
import { NodeProps } from '@xyflow/react';
|
|
import { RagNode } from '.';
|
|
|
|
export function VariableAssignerNode({ ...props }: NodeProps<IRagNode>) {
|
|
return (
|
|
<RagNode {...props}>
|
|
<section>select</section>
|
|
</RagNode>
|
|
);
|
|
}
|