File size: 337 Bytes
c9c8879 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from celery import Celery
from agents.strategy_agent import run_strategy
from memory.database import log_action
app = Celery("autoexec_ai", broker="redis://localhost:6379/0")
@app.task
def scheduled_loop():
result = run_strategy("fitness", "dropshipping")
log_action("StrategyAgent", "scheduled_run", result)
return result
|