File size: 350 Bytes
fb29606
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import streamlit as st

def chatbot(input_text):
    return input_text

st.title("Chatbot App")

user_input = st.text_input("Enter your message:")
if st.button("Send"):
    if user_input:
        bot_response = chatbot(user_input)
        st.text("Bot Response:")
        st.write(bot_response)
    else:
        st.warning("Please enter a message.")