simplebardapi

A simpler and faster version of BardAPI.


Keywords
artificial-intelligence, google-bard-api, google-bard, bard-api, google, bard, ai
License
GPL-3.0
Install
pip install simplebardapi==1.0.1

Documentation

PyPI Downloads Status

simplebardapi

A simpler and faster version of BardAPI.

Get started:

python -m pip install -U simplebardapi

Join my Discord server for live chat, support, or if you have any issues with this package.

Support this repository:

  • Star the project: Star this repository. It means a lot to me! 💕
  • 🎉 Join my Discord Server: Chat with me and others. Join here:

DiscordWidget

Example:

from simplebardapi import Bard

Secure_1PSID = "yourCookieValue"
bard = Bard(Secure_1PSID)
while True:
    prompt = input("👦: ")
    try:
        resp = bard.generate_answer(prompt)
        print(f"🤖: {resp}")
    except Exception as e:
        print(f"🤖: {e}")