Update agents/copy_agent.py
Browse files- 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 |
+
)
|