> ## Documentation Index
> Fetch the complete documentation index at: https://agno-v2-codex-docs-audit-20260719-0149.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Hugging Face GPT-OSS Essay Writer

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

```python llama_essay_writer.py theme={null}
"""
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

<Steps>
  <Snippet file="create-venv-step.mdx" />

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U agno huggingface-hub
    ```
  </Step>

  <Step title="Export environment variables">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export HF_TOKEN="your_hf_token_here"
      ```

      ```bash Windows theme={null}
      $Env:HF_TOKEN="your_hf_token_here"
      ```
    </CodeGroup>
  </Step>

  <Step title="Run the example">
    Save the code above as `llama_essay_writer.py`, then run:

    ```bash theme={null}
    python llama_essay_writer.py
    ```
  </Step>
</Steps>

Full source: [cookbook/90\_models/huggingface/llama\_essay\_writer.py](https://github.com/agno-agi/agno/blob/v2.7.4/cookbook/90_models/huggingface/llama_essay_writer.py)
