Spaces:
Running
Running
Komalpreet Kaur commited on
fix: restore missing retrieve function header in orchestrator
Browse files
app/services/orchestrator.py
CHANGED
|
@@ -35,8 +35,9 @@ INTERNAL REFLECTION:"""
|
|
| 35 |
reflection = "Processing intent through neural pathways..."
|
| 36 |
|
| 37 |
return {"reflection": reflection}
|
| 38 |
-
|
| 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 |
|