Spaces:
Paused
Paused
Update app.py
Browse files
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 (
|
| 300 |
-
|
| 301 |
-
|
| 302 |
if not candidates:
|
| 303 |
-
|
| 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 |
|