Skip to content

Commit

Permalink
Deactivate verbose mode and remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
Maclenn77 committed Dec 11, 2023
1 parent 935bea6 commit f4a581e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gnosis/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(self, llm, chroma_db, extra_tools=False):
self.tools,
llm,
agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION,
verbose=True,
verbose=False,
handle_parsing_errors=True,
)

Expand All @@ -41,6 +41,6 @@ def replace_agent(self, agent: AgentType, llm):
self.tools,
llm,
agent=agent,
verbose=True,
verbose=False,
handle_parsing_errors=True,
)

0 comments on commit f4a581e

Please sign in to comment.