Skip to content

Commit

Permalink
debugger should not be json mode
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Sep 9, 2024
1 parent 326c1a3 commit 8f6d8a5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions vision_agent/agent/vision_agent_coder.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,9 +658,7 @@ def __init__(
)
self.coder = OpenAILMM(temperature=0.0) if coder is None else coder
self.tester = OpenAILMM(temperature=0.0) if tester is None else tester
self.debugger = (
OpenAILMM(temperature=0.0, json_mode=True) if debugger is None else debugger
)
self.debugger = OpenAILMM(temperature=0.0) if debugger is None else debugger
self.verbosity = verbosity
if self.verbosity > 0:
_LOGGER.setLevel(logging.INFO)
Expand Down

0 comments on commit 8f6d8a5

Please sign in to comment.