process_command
Execute natural language commands for Base network operations, enabling wallet management, balance checks, and transaction execution through LLM-powered automation.
Instructions
Process a natural language command for Base network operations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Natural language command (e.g., "Send 0.1 ETH to 0x123...") |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Natural language command (e.g., \"Send 0.1 ETH to 0x123...\")",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}