from agno.agent import Agent
from agno.tools.youcom import YouTools
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
# Example 1: Default search agent
agent = Agent(
tools=[YouTools(show_results=True)],
markdown=True,
)
# Example 2: Search with a domain allowlist and a larger result count
agent_filtered = Agent(
tools=[
YouTools(
include_domains=["cnbc.com", "reuters.com", "bloomberg.com"],
num_results=8,
show_results=True,
)
],
markdown=True,
)
# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
agent.print_response("Search for the latest AAPL news", markdown=True)
agent_filtered.print_response(
"What did major financial outlets say about NVDA earnings this week?",
markdown=True,
)