bstraehle commited on
Commit
204cee0
1 Parent(s): f36b4df

Update agents.py

Browse files
Files changed (1) hide show
  1. agents.py +2 -2
agents.py CHANGED
@@ -11,7 +11,7 @@ def get_researcher_agent(model):
11
  llm=ChatOpenAI(model=model, temperature=0.7),
12
  tools = [get_search_tool(), get_scrape_tool()],
13
  allow_delegation=False,
14
- verbose=True
15
  )
16
 
17
  def get_author_agent(model):
@@ -22,5 +22,5 @@ def get_author_agent(model):
22
  "You base your writing on the work of the Researcher, who provides context on this topic.",
23
  llm=ChatOpenAI(model=model, temperature=0.7),
24
  allow_delegation=False,
25
- verbose=True
26
  )
 
11
  llm=ChatOpenAI(model=model, temperature=0.7),
12
  tools = [get_search_tool(), get_scrape_tool()],
13
  allow_delegation=False,
14
+ verbose=False
15
  )
16
 
17
  def get_author_agent(model):
 
22
  "You base your writing on the work of the Researcher, who provides context on this topic.",
23
  llm=ChatOpenAI(model=model, temperature=0.7),
24
  allow_delegation=False,
25
+ verbose=False
26
  )