Test / app.py
Ankush05's picture
Update app.py
05b93b1
raw
history blame
180 Bytes
import streamlit as st
def Chatbot():
st.title("Chatbot")
if query := st.chat_input("enter your message"):
st.write("Hello")
Chatbot()