Test / app.py
Ankush05's picture
Update app.py
121c7ff
raw
history blame
344 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["content"][0])
Chatbot()