chore(entropy): Phase 5 start - fix duplicate line bug and document findings

- Fix duplicate line bug in rag_emb_provider.setter (app_controller.py)
- Add entropy_findings.md documenting audit results
- Update plan.md with Phase 5 tasks and findings
- Note: Property getter/setter 'duplicates' are false positives - proper Python patterns
This commit is contained in:
2026-05-06 19:59:06 -04:00
parent f6feab9243
commit 54afbb9365
4 changed files with 88 additions and 2 deletions
-1
View File
@@ -540,7 +540,6 @@ class AppController:
if self.rag_config:
self.rag_config.embedding_provider = value
if self.rag_engine: self.rag_engine = rag_engine.RAGEngine(self.rag_config, self.active_project_root)
if self.rag_engine: self.rag_engine = rag_engine.RAGEngine(self.rag_config, self.active_project_root)
@property
def rag_chunk_size(self) -> int: