search_blocks_semantic
Find relevant blockchain blocks using semantic search with AI-powered vector similarity matching. Search Ethereum blocks by natural language queries to locate specific blockchain data.
Instructions
Semantic search for blocks using AI-powered vector similarity matching
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | The query to search for | |
| limit | No | The number of results to return (default: 10) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "The number of results to return (default: 10)",
"type": "integer"
},
"query": {
"description": "The query to search for",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}