class AdAgent: | |
def plan(self, niche: str, business_type: str) -> str: | |
""" | |
Create ad campaign blueprint including budgets, audiences, CTAs. | |
""" | |
return ( | |
f"AdAgent: $10/day ad plan for {business_type} in {niche}, with targeting & creatives." | |
) | |
class AdAgent: | |
def plan(self, niche: str, business_type: str) -> str: | |
""" | |
Create ad campaign blueprint including budgets, audiences, CTAs. | |
""" | |
return ( | |
f"AdAgent: $10/day ad plan for {business_type} in {niche}, with targeting & creatives." | |
) | |