load_whitepaper
Load cryptocurrency project whitepapers into a structured knowledge base by providing the project name and PDF URL. Enables AI agents to access and analyze whitepaper content for enhanced learning.
Instructions
Load a whitepaper PDF from a URL into the knowledge base.
Parameters:
project_name (str): The name of the cryptocurrency project (e.g., 'bitcoin', 'ethereum').
url (str): The URL of the whitepaper PDF to download and load.
Returns:
str: A message indicating success or failure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_name | Yes | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_name": {
"title": "Project Name",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"project_name",
"url"
],
"title": "load_whitepaperArguments",
"type": "object"
}