Use models like Gemini via Google Gen AI SDK
Project description
Google Gen AI Haystack Integration
Table of Contents
Installation
pip install google-genai-haystack
Usage
This integration provides components to use Google's Gemini models via the new Google Gen AI SDK.
Chat Generator
from haystack.dataclasses.chat_message import ChatMessage
from haystack_integrations.components.generators.google_genai import GoogleGenAIChatGenerator
# Initialize the chat generator
chat_generator = GoogleGenAIChatGenerator(model="gemini-2.0-flash")
# Generate a response
messages = [ChatMessage.from_user("Tell me about the future of AI")]
response = chat_generator.run(messages=messages)
print(response["replies"][0].text)
Streaming Chat Generator
from haystack.dataclasses.chat_message import ChatMessage
from haystack.dataclasses import StreamingChunk
from haystack_integrations.components.generators.google_genai import GoogleGenAIChatGenerator
def streaming_callback(chunk: StreamingChunk):
print(chunk.content, end='', flush=True)
# Initialize with streaming callback
chat_generator = GoogleGenAIChatGenerator(
model="gemini-2.0-flash",
streaming_callback=streaming_callback
)
# Generate a streaming response
messages = [ChatMessage.from_user("Write a short story")]
response = chat_generator.run(messages=messages)
# Text will stream in real-time via the callback
License
google-genai-haystack is distributed under the terms of the Apache-2.0 license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file google_genai_haystack-1.0.1.tar.gz.
File metadata
- Download URL: google_genai_haystack-1.0.1.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7baa04a2c93accdce612d507b01b85a8a90b962522e960d1541a4627aa34c8ae
|
|
| MD5 |
4326ba5a37c188af989f68ac84675beb
|
|
| BLAKE2b-256 |
f3b17e4639deb35ec7f12c22abfced317b4831b67d5f832b74a5b1429278e501
|
File details
Details for the file google_genai_haystack-1.0.1-py3-none-any.whl.
File metadata
- Download URL: google_genai_haystack-1.0.1-py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04df8cf21f2059d24d943298014cba51035a26268a31bfe28d335a6f124bf7b4
|
|
| MD5 |
3e77e103c9a6233adfeeb07a4728ab95
|
|
| BLAKE2b-256 |
1cd4d41974f83ae839c71321507ddbbc51053057c5ae52b77260097b4c3a6d70
|