ask_whitepapers
Search and retrieve relevant cryptocurrency whitepaper content by entering a query, optionally filtered by project name, to access up to 5 matching results from the knowledge base.
Instructions
Search the knowledge base for information related to a query, optionally filtered by project.
Parameters:
query (str): The search query to find relevant whitepaper content.
project_name (str, optional): The name of the cryptocurrency project to filter results (e.g., 'bitcoin'). If None, searches all whitepapers.
Returns:
str: A string containing up to 5 matching results from the knowledge base.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_name | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_name": {
"default": null,
"title": "Project Name",
"type": "string"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "ask_whitepapersArguments",
"type": "object"
}