AICEO / agents /copy_agent.py
mgbam's picture
Update agents/copy_agent.py
fc57229 verified
raw
history blame
292 Bytes
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}."
)