Skip to content
Snippets Groups Projects
Commit 74ba18c2 authored by Leonard Bärmann's avatar Leonard Bärmann
Browse files

Reduce default verbosity

parent 2d7c2473
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,8 @@ class SimplifiedCodingEMV:
error_handlers: List[ErrorHandler],
max_rounds=10,
exclude_imports=None,
force_initial_command=None
force_initial_command=None,
verbose=False,
):
super().__init__()
self._force_initial_command = force_initial_command
......@@ -46,7 +47,8 @@ class SimplifiedCodingEMV:
# noinspection PyTypeChecker
self._llm_to_python_console_helper = LlmToPythonConsoleHelper(self.llm, self._exec_hist,
self._build_prompt_message,
enforce_python_console_stop_token=False)
enforce_python_console_stop_token=False,
verbose=verbose)
def _set_simplified_repr(node):
node._simplified_repr = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment