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/activate

Install dependencies

uv pip install -U agno openai

Export your API keys

export OPENAI_API_KEY="***"
export ADANOS_API_KEY="***"

Run the example

python adanos_tools.py

Full source: cookbook/91_tools/adanos_tools.py