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
google_genai_haystack-2.1.0.tar.gz
(806.1 kB
view details)
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-2.1.0.tar.gz.
File metadata
- Download URL: google_genai_haystack-2.1.0.tar.gz
- Upload date:
- Size: 806.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27f66c6fb3ae81e10c52765ab932e188563a11f0a579c5c711afdb83915cf1c3
|
|
| MD5 |
9091ada408cf424b3185898b22346b49
|
|
| BLAKE2b-256 |
05f5beff6883fa0c7b38d465381ffb3be1486bb1ea5ae9a65e99e72e00fcd682
|
File details
Details for the file google_genai_haystack-2.1.0-py3-none-any.whl.
File metadata
- Download URL: google_genai_haystack-2.1.0-py3-none-any.whl
- Upload date:
- Size: 22.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6d8209020ef1024c7d751fe9d3c09c2d53d4ab1859d8f7e34e0c0cc90a735e4
|
|
| MD5 |
e77340b0a3d47e23218270329711a605
|
|
| BLAKE2b-256 |
324d2474f63b23e4371d3d519555480ec48b3e1af4492a6f2d99605444adbb91
|