Fix: Add missing settings import in agent.py to resolve NameError
Browse files- app/core/agent.py +1 -0
app/core/agent.py
CHANGED
|
@@ -3,6 +3,7 @@ import logging
|
|
| 3 |
import random
|
| 4 |
from datetime import datetime
|
| 5 |
from typing import Dict, List
|
|
|
|
| 6 |
from app.core.scrapers import scraper
|
| 7 |
from app.core.filters import sieve
|
| 8 |
from app.core.brain import brain
|
|
|
|
| 3 |
import random
|
| 4 |
from datetime import datetime
|
| 5 |
from typing import Dict, List
|
| 6 |
+
from app.core.config import settings
|
| 7 |
from app.core.scrapers import scraper
|
| 8 |
from app.core.filters import sieve
|
| 9 |
from app.core.brain import brain
|