Riy777 commited on
Commit
ebb3822
·
verified ·
1 Parent(s): d554b0d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -298,11 +298,11 @@ async def run_unified_cycle():
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
 
307
  # LAYER 2: Deep Analysis
308
  log_and_print(f" [2/5] 🧠 L2 Deep Analysis ({len(candidates)} items)...")
 
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
 
307
  # LAYER 2: Deep Analysis
308
  log_and_print(f" [2/5] 🧠 L2 Deep Analysis ({len(candidates)} items)...")