Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -115,7 +115,7 @@ with gr.Blocks() as demo:
|
|
115 |
def initialize_agents(config_list):
|
116 |
assistant = AssistantAgent(
|
117 |
name="assistant",
|
118 |
-
max_consecutive_auto_reply=
|
119 |
llm_config={
|
120 |
# "seed": 42,
|
121 |
"timeout": TIMEOUT,
|
@@ -127,7 +127,7 @@ with gr.Blocks() as demo:
|
|
127 |
name="userproxy",
|
128 |
human_input_mode="NEVER",
|
129 |
is_termination_msg=_is_termination_msg,
|
130 |
-
max_consecutive_auto_reply=
|
131 |
# code_execution_config=False,
|
132 |
code_execution_config={
|
133 |
"work_dir": "coding",
|
|
|
115 |
def initialize_agents(config_list):
|
116 |
assistant = AssistantAgent(
|
117 |
name="assistant",
|
118 |
+
max_consecutive_auto_reply=10,
|
119 |
llm_config={
|
120 |
# "seed": 42,
|
121 |
"timeout": TIMEOUT,
|
|
|
127 |
name="userproxy",
|
128 |
human_input_mode="NEVER",
|
129 |
is_termination_msg=_is_termination_msg,
|
130 |
+
max_consecutive_auto_reply=10,
|
131 |
# code_execution_config=False,
|
132 |
code_execution_config={
|
133 |
"work_dir": "coding",
|