feat(rag): Implement auto-indexing and status indicators

This commit is contained in:
2026-05-04 11:34:01 -04:00
parent 58194c8c4d
commit 8b487536c5
3 changed files with 28 additions and 1 deletions
+2
View File
@@ -986,6 +986,8 @@ class AppController:
self.rag_config = models.RAGConfig()
self.rag_engine = rag_engine.RAGEngine(self.rag_config, self.active_project_root)
if self.rag_config.enabled and self.rag_engine.is_empty():
self._rebuild_rag_index()
from src.personas import PersonaManager
self.persona_manager = PersonaManager(Path(self.active_project_path).parent if self.active_project_path else None)