mgbam commited on
Commit
d40a9c0
·
verified ·
1 Parent(s): 309404e

Update agent_manager.py

Browse files
Files changed (1) hide show
  1. agent_manager.py +9 -6
agent_manager.py CHANGED
@@ -1,11 +1,14 @@
1
  # agent_manager.py
2
 
3
- from strategy_agent import StrategyAgent
4
- from copy_agent import CopyAgent
5
- from ad_agent import AdAgent
6
- from email_agent import EmailAgent
7
- from shopify_client import create_shopify_product
8
- from memory.database import init_db, log_memory
 
 
 
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):