AdanosTools gives an agent market sentiment functions for stocks and cryptocurrencies.
adanos_tools.py
Run the Example
1
Set up your virtual environment
2
Install dependencies
3
Export your API keys
4
Run the example
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Research stock sentiment across Reddit, X, financial news, and Polymarket with AdanosTools.
AdanosTools gives an agent market sentiment functions for stocks and cryptocurrencies.
from agno.agent import Agent
from agno.models.openai import OpenAIResponses
from agno.tools.adanos import AdanosTools
agent = Agent(
name="Market Sentiment Research Agent",
model=OpenAIResponses(id="gpt-5.5"),
tools=[AdanosTools()],
instructions=[
"Compare sentiment across available sources before drawing conclusions.",
"Treat sentiment as research context, not as trading advice.",
],
markdown=True,
)
if __name__ == "__main__":
agent.print_response(
"Compare AAPL sentiment on Reddit, X, financial news, and Polymarket over the last seven UTC days."
)
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activate
uv venv --python 3.12
.venv\Scripts\activate
Install dependencies
uv pip install -U agno openai
Export your API keys
export OPENAI_API_KEY="***"
export ADANOS_API_KEY="***"
$Env:OPENAI_API_KEY="***"
$Env:ADANOS_API_KEY="***"
Run the example
python adanos_tools.py
Was this page helpful?