Komalpreet Kaur commited on
Commit
7d0dac0
·
unverified ·
1 Parent(s): 8d7cabf

fix: restore missing retrieve function header in orchestrator

Browse files
Files changed (1) hide show
  1. app/services/orchestrator.py +3 -2
app/services/orchestrator.py CHANGED
@@ -35,8 +35,9 @@ INTERNAL REFLECTION:"""
35
  reflection = "Processing intent through neural pathways..."
36
 
37
  return {"reflection": reflection}
38
- # Phase 1: Perception (Implicit in state["input"])
39
-
 
40
  # Phase 2: Recall (Sensory Memory)
41
  context = retrieve_context(state["input"])
42
 
 
35
  reflection = "Processing intent through neural pathways..."
36
 
37
  return {"reflection": reflection}
38
+
39
+ def retrieve(state: AgentState):
40
+ """Memory retrieval phase: Sensory and Semantic recall."""
41
  # Phase 2: Recall (Sensory Memory)
42
  context = retrieve_context(state["input"])
43