import streamlit as st def Chatbot(): st.title("Chatbot") if query := st.chat_input("enter your message"): st.write("Hello") Chatbot()