Private
Public Access
0
0

fix(reset): clear mma_tier_usage and RAG state in _handle_reset_session

This commit is contained in:
2026-06-09 19:44:10 -04:00
parent 9128db5e48
commit fe240db410
3 changed files with 92 additions and 2 deletions
+3 -2
View File
@@ -663,8 +663,9 @@ def _reset_clean_baseline(request, live_gui) -> Generator[None, None, None]:
if client.wait_for_server(timeout=5):
client.reset_session()
time.sleep(0.2)
except Exception:
pass
except Exception as e:
import sys
print(f"[CLEAN_BASELINE] reset failed: {type(e).__name__}: {e}", file=sys.stderr)
yield