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

# Deprecated Package: genkit-plugin-vertex-ai

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

### Migration

1. Update your dependencies:
   ```bash
   uv remove genkit-plugin-vertex-ai
   uv add genkit-vertexai
   ```
2. Update your imports:
   ```python
   # Old
   from genkit.plugins import vertex_ai

   # New
   import genkit_vertexai
   ```

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