Riy777 commited on
Commit
c7a2c30
·
verified ·
1 Parent(s): e82286b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -296,11 +296,11 @@ async def run_unified_cycle():
296
 
297
  # LAYER 1: Adaptive Screening
298
  current_regime = getattr(SystemLimits, 'CURRENT_REGIME', 'UNKNOWN')
299
- log_and_print(f" [1/5] 🔍 L1 Screening (Regime: {current_regime})...")
300
-
301
- candidates = await data_manager.layer1_rapid_screening()
302
  if not candidates:
303
- log_and_print("⚠️ No L1 candidates found for current regime.")
304
  sys_state.set_cycle_end(logs=log_buffer.getvalue())
305
  return
306
 
 
296
 
297
  # LAYER 1: Adaptive Screening
298
  current_regime = getattr(SystemLimits, 'CURRENT_REGIME', 'UNKNOWN')
299
+ log_and_print(f" [1/5] 🔍 L1 Screening (Context Aware)...")
300
+ # Pass adaptive_hub so DataManager can fetch DNA per coin
301
+ candidates = await data_manager.layer1_rapid_screening(adaptive_hub_ref=adaptive_hub)
302
  if not candidates:
303
+ log_and_print("⚠️ No valid candidates found (Quality Filter).")
304
  sys_state.set_cycle_end(logs=log_buffer.getvalue())
305
  return
306