Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -12,18 +12,24 @@ from PIL import Image
|
|
12 |
st.title("Nexus TCM Chatbot")
|
13 |
#query = st.text_input("Query: ", key="input")
|
14 |
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
17 |
response = f"User entered: {st.session_state.input}"
|
18 |
st.write(response)
|
|
|
|
|
|
|
19 |
|
20 |
-
#
|
21 |
-
|
22 |
-
|
23 |
-
# Check if the user has entered a new query
|
24 |
-
if 'input' in st.session_state:
|
25 |
-
# Clear the input after processing
|
26 |
st.session_state.input = ""
|
|
|
|
|
27 |
|
28 |
# Set the logo URL
|
29 |
#logo_url = "https://huggingface.co/spaces/mathslearn/chatbot_test_streamlit/blob/main/logo.jpeg"
|
|
|
12 |
st.title("Nexus TCM Chatbot")
|
13 |
#query = st.text_input("Query: ", key="input")
|
14 |
|
15 |
+
# Create the search bar
|
16 |
+
query = st.text_input("Query:", key="input")
|
17 |
+
|
18 |
+
# Create a button to clear the input
|
19 |
+
if st.button("Clear Input"):
|
20 |
+
# Process the query and generate a response
|
21 |
response = f"User entered: {st.session_state.input}"
|
22 |
st.write(response)
|
23 |
+
|
24 |
+
# Clear the input by setting a flag
|
25 |
+
st.session_state.clear_input_flag = True
|
26 |
|
27 |
+
# Check if the input needs to be cleared
|
28 |
+
if hasattr(st.session_state, 'clear_input_flag') and st.session_state.clear_input_flag:
|
29 |
+
# Clear the input
|
|
|
|
|
|
|
30 |
st.session_state.input = ""
|
31 |
+
# Reset the flag
|
32 |
+
st.session_state.clear_input_flag = False
|
33 |
|
34 |
# Set the logo URL
|
35 |
#logo_url = "https://huggingface.co/spaces/mathslearn/chatbot_test_streamlit/blob/main/logo.jpeg"
|