Groq Basic

Run GPT-OSS 120B on Groq using the current replacement for the historical reasoning model.

Groq retired deepseek-r1-distill-llama-70b-specdec on March 24, 2025. Replace it with openai/gpt-oss-120b. See Groq deprecations.

basic.py
"""
Groq Basic
==========

Cookbook example for `groq/reasoning/basic.py`.
"""

from agno.agent import Agent
from agno.models.groq import Groq

# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------

agent = Agent(model=Groq(id="deepseek-r1-distill-llama-70b-specdec"), markdown=True)

# Print the response on the terminal

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    # --- Sync ---
    agent.print_response("Share a 2 sentence horror story")

    # --- Sync + Streaming ---
    agent.print_response("Share a 2 sentence horror story", stream=True)

Run the Example

Set up your virtual environment

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

Install dependencies

uv pip install -U agno groq

Export your Groq API key

export GROQ_API_KEY="your_groq_api_key_here"

Replace DeepSeek R1 SpecDec

Replace deepseek-r1-distill-llama-70b-specdec with openai/gpt-oss-120b in the saved file.

Run the example

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

python basic.py

Full source: cookbook/90_models/groq/reasoning/basic.py