mgbam commited on
Commit
ed7e4dc
·
verified ·
1 Parent(s): fc57229

Update agents/ad_agent.py

Browse files
Files changed (1) hide show
  1. agents/ad_agent.py +8 -0
agents/ad_agent.py CHANGED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ class AdAgent:
2
+ def plan(self, niche: str, business_type: str) -> str:
3
+ """
4
+ Create ad campaign blueprint including budgets, audiences, CTAs.
5
+ """
6
+ return (
7
+ f"AdAgent: $10/day ad plan for {business_type} in {niche}, with targeting & creatives."
8
+ )