Spaces:
Sleeping
Sleeping
File size: 313 Bytes
e768845 |
1 2 3 4 5 6 7 8 |
import streamlit as st
# Import additional required libraries
st.title("Your Friendly Chatbot")
user_input = st.text_input("What would you like to ask?")
if st.button("Submit"):
# Here's where the chatbot's response will go
if st.button("Submit"):
st.write(f"Chatbot: You mentioned, '{user_input}'") |