Metadata-Version: 2.4
Name: datapizza-ai-embedders-google
Version: 0.0.6
Summary: Google embedder for the datapizza-ai framework
Author-email: Datapizza <datapizza@datapizza.tech>
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: <4,>=3.10.0
Requires-Dist: datapizza-ai-core<0.2.0,>=0.1.0
Requires-Dist: google-genai<2.0.0,>=1.3.0
Description-Content-Type: text/markdown

# Google Embedder

Google Generative AI embedder implementation for datapizza-ai

## Installation

```bash
pip install datapizza-ai-embedders-google
```

## Usage

```python
from datapizza.embedders.google import GoogleEmbedder

embedder = GoogleEmbedder(api_key="your-google-api-key")
embeddings = embedder.embed("Hello world", model_name="models/text-embedding-004")
```
