# Google (Gemini) (/docs/providers/google)


Overview [#overview]

[Google AI](https://ai.google.dev) provides the Gemini series of multimodal models with long context windows and native multimodal understanding.

**Official Website:** [https://ai.google.dev](https://ai.google.dev)
&#x2A;*API Documentation:** [https://ai.google.dev/docs](https://ai.google.dev/docs)

Key Features [#key-features]

* **Long Context** — Very large context windows
* **Native Multimodal** — Built-in vision, audio, video understanding
* **Deep Thinking** — Extended reasoning capabilities
* **Grounding** — Connect to real-time information
* **Code Execution** — Built-in code execution

Usage Example [#usage-example]

```python
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://api.yuhuanstudio.com/v1"
)

response = client.chat.completions.create(
    model="model-id",
    messages=[{"role": "user", "content": "Hello!"}]
)

print(response.choices[0].message.content)
```

Available Models [#available-models]

Use the [Models API](/docs/models-api) to query available models:

```bash
curl https://api.yuhuanstudio.com/v1/models?provider=google \
  -H "Authorization: Bearer YOUR_API_KEY"
```

<Callout type="info">
  Models and pricing are synced automatically from Google. Check the dashboard for current availability and rates.
</Callout>

Official Resources [#official-resources]

* [Google AI Studio](https://ai.google.dev)
* [API Documentation](https://ai.google.dev/docs)
* [Pricing](https://ai.google.dev/pricing)
