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

# Deprecated Package: genkit-plugin-ollama

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

### Migration

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

   # New
   import genkit_ollama
   ```

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