> ## 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.

# Qwen3 Plus Claude

> Route reasoning through Qwen3-32B on Groq while Claude writes the final answer.

<Warning>
  For free and developer tiers, Groq will shut down `qwen/qwen3-32b` on July 17, 2026. Replace it with `qwen/qwen3.6-27b` before that date. See [Groq deprecations](https://console.groq.com/docs/deprecations).
</Warning>

```python deepseek_plus_claude.py theme={null}
"""
Deepseek Plus Claude
====================

Demonstrates this reasoning cookbook example.
"""

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


# ---------------------------------------------------------------------------
# Create Example
# ---------------------------------------------------------------------------
def run_example() -> None:
    deepseek_plus_claude = Agent(
        model=Claude(id="claude-3-7-sonnet-20250219"),
        reasoning_model=Groq(
            id="qwen/qwen3-32b",
            temperature=0.6,
            max_tokens=1024,
            top_p=0.95,
        ),
    )
    deepseek_plus_claude.print_response("9.11 and 9.9 -- which is bigger?", stream=True)


# ---------------------------------------------------------------------------
# Run Example
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    run_example()
```

## Run the Example

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

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

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

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

  <Step title="Replace Qwen3 32B">
    Replace `qwen/qwen3-32b` with `qwen/qwen3.6-27b` in the saved file.
  </Step>

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

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

Full source: [cookbook/10\_reasoning/models/groq/deepseek\_plus\_claude.py](https://github.com/agno-agi/agno/blob/main/cookbook/10_reasoning/models/groq/deepseek_plus_claude.py)
