gemini-ng 0.1.4

Creator: bradpython12

Last updated:

Add to Cart

Description:

gemining 0.1.4

Next-generation Gemini API Client
A human-friendly API client for the Gemini API, with support for text, image, and video inputs.
Installation
pip install -U gemini-ng

Usage


Set the GEMINI_NG_API_KEY environment variable with your Google AI Studio API key.


Use the client to interact with the Gemini API.


from gemini_ng import GeminiClient

client = GeminiClient() # api key from environment variable `GEMINI_NG_API_KEY`

with client.start_chat(model="models/gemini-1.5-pro-latest") as chat:
image = client.upload_image("path/to/image.jpg")
video = client.upload_video("path/to/video.mp4", verbose=True)

prompt = [
video,
image,
"Describe the scene in the video and the image above in detail.",
]
rsp = chat.send_message(prompt)

print(rsp.candidates[0].text)

License
This project is licensed under the terms of the MIT license. See the LICENSE file for details.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.