Test / app.py
Ankush05's picture
Update app.py
f10a6c7
raw
history blame
330 Bytes
import streamlit as st
from bardapi import Bard
import os
uri = os.environ["BARD_API_KEY"]
bard = Bard(token = uri)
def Chatbot():
st.title("Chatbot")
if query := st.chat_input("Enter your message"):
umsg = bard.get_answer(query)
with st.chat_message("user"):
st.write(umsg)
Chatbot()