> ## Documentation Index
> Fetch the complete documentation index at: https://phidatainc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Groq Finance Agent

> Write a stock report with DeepSeek R1 Distill on Groq and YFinance tools.

<Warning>
  Groq retired `deepseek-r1-distill-llama-70b-specdec` on March 24, 2025. Replace it with `openai/gpt-oss-120b`. See [Groq deprecations](https://console.groq.com/docs/deprecations).
</Warning>

```python finance_agent.py theme={null}
"""
Groq Finance Agent
==================

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

from agno.agent import Agent
from agno.models.groq import Groq
from agno.tools.yfinance import YFinanceTools

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

# Create an Agent with Groq and YFinanceTools
finance_agent = Agent(
    model=Groq(id="deepseek-r1-distill-llama-70b-specdec"),
    tools=[YFinanceTools()],
    description="You are an investment analyst with deep expertise in market analysis",
    instructions=[
        "Use tables to display data where possible.",
        "Always call the tool before you answer.",
    ],
    add_datetime_to_context=True,
    markdown=True,
)

# Example usage
finance_agent.print_response(
    "Write a report on NVDA with stock price, analyst recommendations, and stock fundamentals.",
    stream=True,
)

# ---------------------------------------------------------------------------
# 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 groq yfinance
    ```
  </Step>

  <Step title="Export your Groq API key">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export GROQ_API_KEY="your_groq_api_key_here"
      ```

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

  <Step title="Replace DeepSeek R1 SpecDec">
    Replace `deepseek-r1-distill-llama-70b-specdec` with `openai/gpt-oss-120b` in the saved file.
  </Step>

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

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

Full source: [cookbook/90\_models/groq/reasoning/finance\_agent.py](https://github.com/agno-agi/agno/blob/main/cookbook/90_models/groq/reasoning/finance_agent.py)
