mgbam commited on
Commit
fc57229
·
verified ·
1 Parent(s): 9146d13

Update agents/copy_agent.py

Browse files
Files changed (1) hide show
  1. agents/copy_agent.py +8 -0
agents/copy_agent.py CHANGED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ class CopyAgent:
2
+ def create(self, niche: str, business_type: str) -> str:
3
+ """
4
+ Write product descriptions, landing page headlines, and taglines.
5
+ """
6
+ return (
7
+ f"CopyAgent: Compelling landing page copy for a {business_type} in {niche}."
8
+ )