mathslearn commited on
Commit
f4ea673
·
verified ·
1 Parent(s): c9866ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -8
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
- def clear_query_on_change():
16
- # Your logic for processing the query and generating a response goes here
 
 
 
 
17
  response = f"User entered: {st.session_state.input}"
18
  st.write(response)
 
 
 
19
 
20
- # Create the search bar with on_change event
21
- query = st.text_input("Query:", key="input", on_change=clear_query_on_change)
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"