search_tokens_semantic
Find relevant cryptocurrency tokens using AI-powered semantic search that understands the meaning behind your search queries for blockchain analysis.
Instructions
Semantic search for tokens 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"
}