Copy
Ask AI
"""
Huggingface Llama Essay Writer
==============================
Cookbook example for `huggingface/llama_essay_writer.py`.
"""
from agno.agent import Agent
from agno.models.huggingface import HuggingFace
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
agent = Agent(
model=HuggingFace(
id="openai/gpt-oss-120b",
max_tokens=4096,
),
description="You are an essay writer. Write a 300 words essay on topic that will be provided by user",
)
agent.print_response("topic: AI")
# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
pass
Run the Example
Copy
Ask AI
# Clone and setup repo
git clone https://github.com/agno-agi/agno.git
cd agno/cookbook/90_models/huggingface
# Create and activate virtual environment
./scripts/demo_setup.sh
source .venvs/demo/bin/activate
python llama_essay_writer.py