nananie143 commited on
Commit
3bbd2b9
·
verified ·
1 Parent(s): defdab6

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. 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
- model_manager=None, # Will be injected
429
- max_depth=5,
430
- beam_width=3
 
 
 
 
 
 
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