Metadata-Version: 2.4
Name: genkit-plugin-google-genai
Version: 0.9.0
Summary: Deprecated: This package has been renamed to genkit-google-genai.
License: Apache-2.0
Requires-Python: >=3.10
Requires-Dist: genkit-google-genai==0.9.0
Description-Content-Type: text/markdown

# Deprecated Package: genkit-plugin-google-genai

**IMPORTANT**: This package has been renamed to **[genkit-google-genai](https://pypi.org/project/genkit-google-genai/)**.

### Migration

1. Update your dependencies:
   ```bash
   uv remove genkit-plugin-google-genai
   uv add genkit-google-genai
   ```
2. Update your imports:
   ```python
   # Old
   from genkit.plugins import google_genai

   # New
   import genkit_google_genai
   ```

Importing from `genkit.plugins.google_genai` (including submodules) still works but emits a `DeprecationWarning`.
Please migrate to `genkit_google_genai` when you can.
