class CopyAgent: | |
def create(self, niche: str, business_type: str) -> str: | |
""" | |
Write product descriptions, landing page headlines, and taglines. | |
""" | |
return ( | |
f"CopyAgent: Compelling landing page copy for a {business_type} in {niche}." | |
) | |
class CopyAgent: | |
def create(self, niche: str, business_type: str) -> str: | |
""" | |
Write product descriptions, landing page headlines, and taglines. | |
""" | |
return ( | |
f"CopyAgent: Compelling landing page copy for a {business_type} in {niche}." | |
) | |