Spaces:
Runtime error
Runtime error
nananie143
commited on
Upload folder using huggingface_hub
Browse files- agentic_system.py +9 -3
agentic_system.py
CHANGED
@@ -425,9 +425,15 @@ class AgenticSystem:
|
|
425 |
# Initialize components
|
426 |
self.agents: Dict[str, Agent] = {}
|
427 |
self.reasoning_engine = ReasoningEngine(
|
428 |
-
|
429 |
-
|
430 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
)
|
432 |
self.meta_learning = MetaLearningStrategy()
|
433 |
|
|
|
425 |
# Initialize components
|
426 |
self.agents: Dict[str, Agent] = {}
|
427 |
self.reasoning_engine = ReasoningEngine(
|
428 |
+
min_confidence=0.7,
|
429 |
+
parallel_threshold=3,
|
430 |
+
learning_rate=0.1,
|
431 |
+
strategy_weights={
|
432 |
+
"LOCAL_LLM": 0.8,
|
433 |
+
"CHAIN_OF_THOUGHT": 0.6,
|
434 |
+
"TREE_OF_THOUGHTS": 0.5,
|
435 |
+
"META_LEARNING": 0.4
|
436 |
+
}
|
437 |
)
|
438 |
self.meta_learning = MetaLearningStrategy()
|
439 |
|