bstraehle commited on
Commit
a4d9936
·
verified ·
1 Parent(s): 251729e

Update agents.py

Browse files
Files changed (1) hide show
  1. agents.py +1 -1
agents.py CHANGED
@@ -9,7 +9,7 @@ def get_researcher_agent(model):
9
  backstory="You're working on researching content on topic {topic}. "
10
  "Your work is the basis for the Blogger to post on this topic.",
11
  llm=ChatOpenAI(model=model, temperature=0.7),
12
- tools = [get_search_tool(), get_scrape_tool()],
13
  allow_delegation=False,
14
  verbose=False
15
  )
 
9
  backstory="You're working on researching content on topic {topic}. "
10
  "Your work is the basis for the Blogger to post on this topic.",
11
  llm=ChatOpenAI(model=model, temperature=0.7),
12
+ tools = [search_tool(), scrape_tool(), today_tool()],
13
  allow_delegation=False,
14
  verbose=False
15
  )