mgbam commited on
Commit
d16d5a2
·
verified ·
1 Parent(s): f515c4e

Update agents/copy_agent.py

Browse files
Files changed (1) hide show
  1. agents/copy_agent.py +4 -4
agents/copy_agent.py CHANGED
@@ -1,8 +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
  )
 
1
+ # agents/copy_agent.py
2
+
3
  class CopyAgent:
4
  def create(self, niche: str, business_type: str) -> str:
5
+ # TODO: Integrate GPT-4 to write copy
 
 
6
  return (
7
+ f"CopyAgent: Compelling landing page copy for {business_type} in {niche}."
8
  )