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.1.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.1.tar.gz.
File metadata
- Download URL: google_genai_haystack-2.1.1.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 |
44a29f217a98588fda342a5d7265011de1e63fb0099d2a1415002dbafa60beb1
|
|
| MD5 |
aa22924877ea9c700ab0cd4dc4c1204f
|
|
| BLAKE2b-256 |
1050314b08d654a17cc5e39b4acd793b9aa765021372ff2dd4616d609a19b88d
|
File details
Details for the file google_genai_haystack-2.1.1-py3-none-any.whl.
File metadata
- Download URL: google_genai_haystack-2.1.1-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 |
0070a6cee42c2f7918cd4f7f3a6cd6e98fb7c633dadfab93b071ca950ce6f16e
|
|
| MD5 |
bb82995d292fbc38ec0758c8a23f0b85
|
|
| BLAKE2b-256 |
b71571df953aa181777adf776afc1d6d12d400773f1201818b1842f7f7b4fdcf
|