wholewhale commited on
Commit
d64fc58
·
1 Parent(s): d4eee96

autoclear loggin

Browse files
Files changed (1) hide show
  1. app.py +11 -16
app.py CHANGED
@@ -115,22 +115,17 @@ def infer(question, history):
115
  except Exception as e:
116
  return f"Error querying chatbot: {str(e)}"
117
 
118
- def auto_clear_data():
119
- global qa, db, last_interaction_time
120
- buffer_time = 300 # 5 minutes buffer time
121
- if time.time() - last_interaction_time > (1000 + buffer_time):
122
- try:
123
- qa = None
124
- db = None
125
- print("Data cleared successfully.") # Logging
126
- except Exception as e:
127
- print(f"Error while clearing data: {str(e)}") # Exception Handling
128
-
129
- def periodic_clear():
130
- while True:
131
- auto_clear_data()
132
- time.sleep(1000) # Sleep for 1000 seconds
133
-
134
 
135
  threading.Thread(target=periodic_clear).start()
136
 
 
115
  except Exception as e:
116
  return f"Error querying chatbot: {str(e)}"
117
 
118
+ def auto_clear_data():
119
+ global qa, db, last_interaction_time
120
+ if time.time() - last_interaction_time > 1000:
121
+ qa = None
122
+ db = None
123
+ print("Data cleared successfully.") # Logging
124
+
125
+ def periodic_clear():
126
+ while True:
127
+ auto_clear_data()
128
+ time.sleep(1000)
 
 
 
 
 
129
 
130
  threading.Thread(target=periodic_clear).start()
131