From 6a782750de48916b1393cf653b9ce75dc89cc10f Mon Sep 17 00:00:00 2001 From: Bruno Charest Date: Sun, 22 Mar 2026 22:08:42 -0400 Subject: [PATCH] Add reload endpoint response model for per-vault indexing statistics --- backend/main.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend/main.py b/backend/main.py index d5526f3..ea36011 100644 --- a/backend/main.py +++ b/backend/main.py @@ -137,6 +137,12 @@ class TreeSearchResponse(BaseModel): results: List[TreeSearchResult] +class ReloadResponse(BaseModel): + """Index reload confirmation with per-vault stats.""" + status: str + vaults: Dict[str, Any] + + class HealthResponse(BaseModel): """Application health status.""" status: str