Update agents/ad_agent.py
Browse files- 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 |
+
)
|