Update agent_manager.py
Browse files- agent_manager.py +9 -6
agent_manager.py
CHANGED
|
@@ -1,11 +1,14 @@
|
|
| 1 |
# agent_manager.py
|
| 2 |
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
from
|
| 6 |
-
from
|
| 7 |
-
from
|
| 8 |
-
from
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
class AgentManager:
|
| 11 |
def __init__(self, niche: str, business_type: str):
|
|
|
|
| 1 |
# agent_manager.py
|
| 2 |
|
| 3 |
+
# agent_manager.py
|
| 4 |
+
|
| 5 |
+
from agents.strategy_agent import StrategyAgent
|
| 6 |
+
from agents.copy_agent import CopyAgent
|
| 7 |
+
from agents.ad_agent import AdAgent
|
| 8 |
+
from agents.email_agent import EmailAgent
|
| 9 |
+
from shopify_client import create_shopify_product
|
| 10 |
+
from memory.database import init_db, log_memory
|
| 11 |
+
|
| 12 |
|
| 13 |
class AgentManager:
|
| 14 |
def __init__(self, niche: str, business_type: str):
|