bstraehle commited on
Commit
d4ebe88
·
verified ·
1 Parent(s): b624794

Update agents.py

Browse files
Files changed (1) hide show
  1. agents.py +2 -2
agents.py CHANGED
@@ -22,7 +22,7 @@ def get_author_agent(model, verbose):
22
  "You base your writing on the work of the Researcher, who provides content on this topic. "
23
  "Your work is the basis for the Editor to edit the article on this topic.",
24
  llm=ChatOpenAI(model=model, max_tokens=32768),
25
- tools = [today_tool()],
26
  allow_delegation=False,
27
  verbose=verbose
28
  )
@@ -34,7 +34,7 @@ def get_editor_agent(model, verbose):
34
  backstory="You're working on editing an article on topic: {topic}. "
35
  "You base your editing on the work of the Author, who provides an article on this topic.",
36
  llm=ChatOpenAI(model=model, max_tokens=32768),
37
- tools = [today_tool()],
38
  allow_delegation=False,
39
  verbose=verbose
40
  )
 
22
  "You base your writing on the work of the Researcher, who provides content on this topic. "
23
  "Your work is the basis for the Editor to edit the article on this topic.",
24
  llm=ChatOpenAI(model=model, max_tokens=32768),
25
+ tools = [],
26
  allow_delegation=False,
27
  verbose=verbose
28
  )
 
34
  backstory="You're working on editing an article on topic: {topic}. "
35
  "You base your editing on the work of the Author, who provides an article on this topic.",
36
  llm=ChatOpenAI(model=model, max_tokens=32768),
37
+ tools = [],
38
  allow_delegation=False,
39
  verbose=verbose
40
  )