Test / app.py
Ankush05's picture
Update app.py
1e63eb9
raw
history blame
231 Bytes
import streamlit as st
def Chatbot():
st.title("Chatbot")
if query := st.chat_input("enter your message"):
with st.chat_message("user"):
st.write("Hello")
Chatbot()