Hugging Face GPT-OSS Essay Writer

Write a 300-word essay on a user topic with GPT-OSS 120B on Hugging Face.

llama_essay_writer.py
"""
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

Set up your virtual environment

uv venv --python 3.12
source .venv/bin/activate

Install dependencies

uv pip install -U agno huggingface-hub

Export environment variables

export HF_TOKEN="your_hf_token_here"

Run the example

Save the code above as llama_essay_writer.py, then run:

python llama_essay_writer.py

Full source: cookbook/90_models/huggingface/llama_essay_writer.py