Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files- orchestrator.py +9 -4
orchestrator.py
CHANGED
|
@@ -120,10 +120,15 @@ class AgentOrchestrator:
|
|
| 120 |
"""Initialize orchestrator components."""
|
| 121 |
# Initialize reasoning engine
|
| 122 |
self.reasoning_engine = ReasoningEngine(
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 127 |
)
|
| 128 |
|
| 129 |
# Initialize meta-learning
|
|
|
|
| 120 |
"""Initialize orchestrator components."""
|
| 121 |
# Initialize reasoning engine
|
| 122 |
self.reasoning_engine = ReasoningEngine(
|
| 123 |
+
min_confidence=0.7,
|
| 124 |
+
parallel_threshold=5,
|
| 125 |
+
learning_rate=0.1,
|
| 126 |
+
strategy_weights={
|
| 127 |
+
ReasoningMode.CHAIN_OF_THOUGHT: 1.0,
|
| 128 |
+
ReasoningMode.TREE_OF_THOUGHTS: 1.0,
|
| 129 |
+
ReasoningMode.META_LEARNING: 1.5,
|
| 130 |
+
ReasoningMode.LOCAL_LLM: 2.0
|
| 131 |
+
}
|
| 132 |
)
|
| 133 |
|
| 134 |
# Initialize meta-learning
|