Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Ankush05
/
Test
like
0
Sleeping
App
Files
Files
Community
2
Ankush05
commited on
Oct 12, 2023
Commit
c9e6e83
•
1 Parent(s):
575c6d4
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+17
-0
app.py
CHANGED
Viewed
@@ -0,0 +1,17 @@
1
+
import streamlit as st
2
+
3
+
4
+
5
+
6
+
7
+
8
+
def Chatbot():
9
+
st.title("Chatbot")
10
+
query = st.chat_input("enter your message"):
11
+
12
+
13
+
14
+
15
+
Chatbot()
16
+
17
+