Skip to content
This repository was archived by the owner on Apr 24, 2024. It is now read-only.

0.1.13

Choose a tag to compare

@dsdanielpark dsdanielpark released this 25 May 19:09
· 633 commits to main since this release

I will update the ChatBard class. The stable version is still 0.1.11.
Starting from version 0.1.12, it will be available only on the GitHub dev branch.

ChatBard

from bardapi import ChatBard
    
chat = ChatBard()
chat.start()

or

from bardapi import ChatBard
import os
os.environ["_BARD_API_KEY"] = 'xxxxxx'   # Requird
os.environ["_BARD_API_LANG"] = Arabic    # Optional, Default to English
os.environ["_BARD_API_TIMEOUT"] = 30     # Optional, Session Timeout
 
chat = ChatBard()
chat.start()