Example
Agno — a single agent backed by Claude

A real, runnable mini-project. Download it and run with Docker.

June 28, 2026

Agno — a single agent backed by Claude

A tiny Agno sample: it builds one agent with a Claude model and runs your prompt.

Configure

cd samples/agno_1
cp .env.sample .env
# edit .env: set ANTHROPIC_API_KEY (and optionally MODEL)

Run with Docker

cd samples/agno_1
docker build -t aas-agno .
docker run --rm --env-file .env aas-agno "Say hello in one short sentence."

Run with Docker (in a devcontainer with DooD)

The foreground docker run may print nothing under Docker-outside-of-Docker — run detached and follow the logs:

docker logs -f "$(docker run -d --env-file .env aas-agno "Say hello in one short sentence.")"

Run locally

cd samples/agno_1
pip install -r requirements.txt
python app.py "Say hello in one short sentence."

Example run

Output varies by model and run — LLMs are non-deterministic. One run with claude-opus-4-8:

Hello, it's nice to meet you!

Files

.env.sample
# Copy to `.env` and add your Anthropic API key.
#   cp .env.sample .env
ANTHROPIC_API_KEY=

# Any Claude model id.
MODEL=claude-opus-4-8