search_addresses_llm
Search Ethereum blockchain addresses using natural language queries powered by LLaMA 3.2 3B AI to intelligently analyze 150+ address parameters and return relevant results.
Instructions
LLM-powered address search using LLaMA 3.2 3B to intelligently select from 150+ parameters
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Natural language query for address search |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "Natural language query for address search",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}