Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -277,6 +277,7 @@ def create_app():
|
|
277 |
# Run the agent in a separate thread
|
278 |
thread = threading.Thread(target=run_agent, args=(prompt, socketio))
|
279 |
socketio.emit("log", {"message": f"[INFO]: thread info: {thread}\n"})
|
|
|
280 |
thread.start()
|
281 |
return "OK", 200
|
282 |
except Exception as e:
|
|
|
277 |
# Run the agent in a separate thread
|
278 |
thread = threading.Thread(target=run_agent, args=(prompt, socketio))
|
279 |
socketio.emit("log", {"message": f"[INFO]: thread info: {thread}\n"})
|
280 |
+
socketio.emit("log", {"message": f"[INFO]: DB PATH: {abs_file_path}\n"})
|
281 |
thread.start()
|
282 |
return "OK", 200
|
283 |
except Exception as e:
|