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

# Deprecated Package: genkit-plugin-compat-oai

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

### Migration

1. Update your dependencies:
   ```bash
   uv remove genkit-plugin-compat-oai
   uv add genkit-openai
   ```
2. Update your imports:
   ```python
   # Old
   from genkit.plugins import compat_oai

   # New
   import genkit_openai
   ```

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