Skip to main content

Next-generation Gemini API Client

Project description

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

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

  2. 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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gemini_ng-0.1.1.tar.gz (10.8 kB view hashes)

Uploaded Source

Built Distribution

gemini_ng-0.1.1-py3-none-any.whl (12.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page