conductor(checkpoint): Final checkpoint for RAG Support track - Phase 4 complete

This commit is contained in:
2026-05-04 22:36:31 -04:00
parent 964f665082
commit 7bed4a8f97
5 changed files with 105 additions and 3 deletions
+1 -1
View File
@@ -2250,7 +2250,7 @@ def send(
monitor = performance_monitor.get_monitor()
if monitor.enabled: monitor.start_component("ai_client.send")
if rag_engine and getattr(rag_engine.config, "enabled", False):
if rag_engine and getattr(rag_engine.config, "enabled", False) and "## Retrieved Context" not in user_message:
chunks = rag_engine.search(user_message)
if chunks:
context_block = "## Retrieved Context\n\n"