Skip to main content

A reverse-engineered async wrapper for Google Gemini web client

Project description

Gemini Icon Gemini-API

Reverse-engineered asynchronous python wrapper for Google Gemini (formerly Bard) web client, providing a simple and elegant interface inspired by Google GenerativeAI's official API.

Installation

pip install gemini-webapi

Authentication

  • Go to https://gemini.google.com/ and login with your Google account
  • Press F12 for web inspector, go to Network tab and refresh the page
  • Click any request and copy cookie values of __Secure-1PSID and __Secure-1PSIDTS

Usage

Initialization

from gemini import GeminiClient

# Replace "COOKIE VALUE HERE" with your actual cookie values as strings
Secure_1PSID = "COOKIE VALUE HERE"
Secure_1PSIDTS = "COOKIE VALUE HERE"

client = GeminiClient(Secure_1PSID, Secure_1PSIDTS, proxy=None)
await client.init()

Generate contents from text inputs

response = await client.generate_content("Hello World!")
print(response.text)  # Note: simply use print(response) to get the same output if you just want to see the response text

Retrieve images in response

response = await client.generate_content("Send me some pictures of cats")
images = response.images
for image in images:
    print(f"{image.title}({image.url}) - {image.alt}", sep="\n")

Conversations across multiple turns

chat = client.start_chat()  # A chat stores the metadata to keep a conversation continuous. It will automatically get updated after each turn
response1 = await chat.send_message("Briefly introduce Europe")
response2 = await chat.send_message("What's the population there?")
print(response1.text, response2.text, sep="\n----------------------------------\n")

Check and switch to other answer candidates

chat = client.start_chat()
response = await chat.send_message("What's the best Japanese dish in your mind? Choose one only.")
for candidate in response.candidates:
    print(candidate, "\n----------------------------------\n")

# Control the ongoing conversation flow by choosing candidate manually
new_candidate = chat.choose_candidate(index=1) # Choose the second candidate here
followup_response = await chat.send_message("Tell me more about it.")  # Will generate contents based on the chosen candidate
print(new_candidate, followup_response, sep="\n----------------------------------\n")

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-webapi-0.0.1.tar.gz (11.2 kB view details)

Uploaded Source

Built Distribution

gemini_webapi-0.0.1-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file gemini-webapi-0.0.1.tar.gz.

File metadata

  • Download URL: gemini-webapi-0.0.1.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for gemini-webapi-0.0.1.tar.gz
Algorithm Hash digest
SHA256 6a4b54efbecd13ab8ca5bdb08530c9673ec856a58d12e0d373bbb58d46784b93
MD5 7f32c8f6bfd37297ec0fb2c0367ffd8e
BLAKE2b-256 a229b903136792561178c9e0d4c52a1995c7e53a6e9a65db1c499a6f71c939c7

See more details on using hashes here.

File details

Details for the file gemini_webapi-0.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for gemini_webapi-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 064be5688d02679c6f61dd702048f5767075f1ebeb7937a7701ad78c7fd44ef3
MD5 19118d7c1f0fc05212a17394ed0de3b2
BLAKE2b-256 9392788f448e6badcf743753bf771169a9920ec7b1d2ff8bd5c6a18a97798b44

See more details on using hashes here.

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