bstraehle commited on
Commit
5dbb1f9
·
verified ·
1 Parent(s): cc89e50

Update agents.py

Browse files
Files changed (1) hide show
  1. agents.py +2 -2
agents.py CHANGED
@@ -14,9 +14,9 @@ def get_researcher_agent(model, verbose):
14
  verbose=verbose
15
  )
16
 
17
- def get_writer_agent(model, verbose):
18
  return Agent(
19
- role="Writer",
20
  goal="Write an article on topic: {topic}.",
21
  backstory="You're working on writing an article on topic: {topic}. "
22
  "You base your writing on the work of the Researcher, who provides context on this topic.",
 
14
  verbose=verbose
15
  )
16
 
17
+ def get_author_agent(model, verbose):
18
  return Agent(
19
+ role="Author",
20
  goal="Write an article on topic: {topic}.",
21
  backstory="You're working on writing an article on topic: {topic}. "
22
  "You base your writing on the work of the Researcher, who provides context on this topic.",