Spaces:
Running
Running
Pulastya B commited on
Commit ·
d36c362
1
Parent(s): 863399c
Fixed Agent Reasoning
Browse files- src/orchestrator.py +3 -0
src/orchestrator.py
CHANGED
|
@@ -307,6 +307,9 @@ class DataScienceCopilot:
|
|
| 307 |
self.session = None
|
| 308 |
print("⚠️ Session memory disabled")
|
| 309 |
|
|
|
|
|
|
|
|
|
|
| 310 |
# Tools registry
|
| 311 |
self.tools_registry = TOOLS
|
| 312 |
self.tool_functions = self._build_tool_functions_map()
|
|
|
|
| 307 |
self.session = None
|
| 308 |
print("⚠️ Session memory disabled")
|
| 309 |
|
| 310 |
+
# 🔍 Initialize reasoning trace for decision tracking
|
| 311 |
+
self.reasoning_trace = get_reasoning_trace()
|
| 312 |
+
|
| 313 |
# Tools registry
|
| 314 |
self.tools_registry = TOOLS
|
| 315 |
self.tool_functions = self._build_tool_functions_map()
|