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

# Gemini 3 Pro Thinking Level

> Migrate the pinned thinking-level example to Gemini 3.1 Pro Preview and stream the async response.

<Warning>
  Google shut down Gemini 3 Pro Preview on March 9, 2026. The pinned `gemini-3-pro-preview` ID currently aliases to `gemini-3.1-pro-preview`; replace it explicitly before running.
</Warning>

```python gemini_3_pro_thinking_level.py theme={null}
"""
Async example using Gemini with tool calls.
"""

import asyncio

from agno.agent import Agent
from agno.models.google import Gemini

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

agent = Agent(
    model=Gemini(id="gemini-3-pro-preview", thinking_level="low"),
    markdown=True,
)

asyncio.run(agent.aprint_response("Whats the current news in France?", 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 google-genai
    ```
  </Step>

  <Step title="Export your Google API key">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export GOOGLE_API_KEY="your_google_api_key_here"
      ```

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

  <Step title="Use Gemini 3.1 Pro Preview">
    Replace `gemini-3-pro-preview` with `gemini-3.1-pro-preview` in the saved Python file before running.
  </Step>

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

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

Full source: [cookbook/90\_models/google/gemini/gemini\_3\_pro\_thinking\_level.py](https://github.com/agno-agi/agno/blob/main/cookbook/90_models/google/gemini/gemini_3_pro_thinking_level.py)
