Commit
·
d64fc58
1
Parent(s):
d4eee96
autoclear loggin
Browse files
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 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
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 |
|