Hugging Face GPT-OSS Essay Writer
Write a 300-word essay on a user topic with GPT-OSS 120B on Hugging Face.
"""
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__":
passRun the Example
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activateInstall dependencies
uv pip install -U agno huggingface-hubExport 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.pyFull source: cookbook/90_models/huggingface/llama_essay_writer.py