Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Ankush05
/
Test
like
0
Sleeping
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
4155768
Test
/
app.py
Ankush05
Update app.py
4155768
over 1 year ago
raw
Copy download link
history
blame
Safe
226 Bytes
import
streamlit
as
st
def
Chatbot
():
st.title(
"Chatbot"
)
if
query := st.chat_input(
"enter your message"
):
st.chat_message(
"user"
):
st.write(
"Hello"
)
Chatbot()