strawberry.py
Run the Example
1
Set up your virtual environment
2
Install dependencies
3
Export your API keys
4
Run the example
Save the code above as
strawberry.py, then run:Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run three async agents (plain, built-in chain-of-thought, deepseek-reasoner) on the ‘r’ in ‘strawberry’ count, with rich console rules.
"""
Strawberry Letter Counting
==========================
Demonstrates regular vs reasoning-backed agents for counting tasks.
"""
import asyncio
from agno.agent import Agent
from agno.models.deepseek import DeepSeek
from agno.models.openai import OpenAIResponses
from rich.console import Console
# ---------------------------------------------------------------------------
# Create Agents
# ---------------------------------------------------------------------------
console = Console()
task = "How many 'r' are in the word 'strawberry'?"
regular_agent = Agent(model=OpenAIResponses(id="gpt-5.6"), markdown=True)
reasoning_agent = Agent(
model=OpenAIResponses(id="gpt-5.6"),
reasoning_model=DeepSeek(id="deepseek-reasoner"),
markdown=True,
)
async def run_agents() -> None:
console.rule("[bold blue]Counting 'r' In 'strawberry'[/bold blue]")
console.rule("[bold green]Regular Agent[/bold green]")
await regular_agent.aprint_response(task, stream=True)
console.rule("[bold cyan]Reasoning Agent (DeepSeek)[/bold cyan]")
await reasoning_agent.aprint_response(task, stream=True, show_full_reasoning=True)
# ---------------------------------------------------------------------------
# Run Agents
# ---------------------------------------------------------------------------
if __name__ == "__main__":
asyncio.run(run_agents())
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 DEEPSEEK_API_KEY="your_deepseek_api_key_here"
export OPENAI_API_KEY="your_openai_api_key_here"
$Env:DEEPSEEK_API_KEY="your_deepseek_api_key_here"
$Env:OPENAI_API_KEY="your_openai_api_key_here"
Run the example
strawberry.py, then run:python strawberry.py