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)
This commit is contained in:
balibabu
2025-06-18 16:40:08 +08:00
committed by GitHub
parent 3671d20e43
commit e96cf89524
9 changed files with 207 additions and 23 deletions

View File

@ -0,0 +1,7 @@
import { INextOperatorForm } from '../../interface';
const ToolForm = ({ node }: INextOperatorForm) => {
return <section>xxx</section>;
};
export default ToolForm;