llama_essay_writer.py
Run the Example
1
Set up your virtual environment
2
Install dependencies
3
Export environment variables
4
Run the example
Save the code above as
llama_essay_writer.py, then run:Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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__":
pass
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 huggingface-hub
Export environment variables
export HF_TOKEN="your_hf_token_here"
$Env:HF_TOKEN="your_hf_token_here"
Run the example
llama_essay_writer.py, then run:python llama_essay_writer.py
Was this page helpful?