File size: 292 Bytes
fc57229
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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}."
        )