ragflow/web/src/pages/agent/form/tool-form/index.tsx
balibabu e96cf89524
Feat: Add a tool operator node from the agent form #3221 (#8344)
### What problem does this PR solve?
Feat: Add a tool operator node from the agent form #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2025-06-18 16:40:08 +08:00

7 lines
168 B
TypeScript

import { INextOperatorForm } from '../../interface';
const ToolForm = ({ node }: INextOperatorForm) => {
return <section>xxx</section>;
};
export default ToolForm;