Create your own tools
Contributor Guide
Building Tools for Move Agent Kit
Tool Structure
import { Tool } from "langchain/tools";
class MyMoveTool extends Tool {
name = "my_move_tool";
description = "Description of what your tool does";
constructor() {
super();
}
async _call(args: string): Promise<string> {
// Your tool implementation
}
}Quick Start Example
Tool Requirements
Testing Your Tool
Contributing Your Tool
Community Guidelines
Last updated