Adanos Market Sentiment
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."
)Run the Example
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activateInstall dependencies
uv pip install -U agno openaiExport your API keys
export OPENAI_API_KEY="***"
export ADANOS_API_KEY="***"Run the example
python adanos_tools.pyFull source: cookbook/91_tools/adanos_tools.py