Spaces:
Sleeping
Sleeping
this
Browse files
app.py
CHANGED
@@ -17,6 +17,10 @@ client = MongoClient(uri, tlsCertificateKeyFile="database/cert.pem")
|
|
17 |
db = client["myapp"]
|
18 |
|
19 |
col = db["reminders"]
|
|
|
|
|
|
|
|
|
20 |
|
21 |
def Chatbot():
|
22 |
st.title("Chatbot")
|
|
|
17 |
db = client["myapp"]
|
18 |
|
19 |
col = db["reminders"]
|
20 |
+
|
21 |
+
bardkey = os.environ.get("BARD_API_KEY")
|
22 |
+
|
23 |
+
bard = Bard(token=bardkey)
|
24 |
|
25 |
def Chatbot():
|
26 |
st.title("Chatbot")
|