Skip to content

Commit 88aa952

Browse files
committed
Fix parameters error
1 parent 36f673a commit 88aa952

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def main(
136136
code_generator: GenericAgent = CodeGenAgent(sandbox, llama3)
137137
test_interpreter: GenericAgent = TestInterpreterAgent(sandbox, llama3)
138138
test_runner: GenericTestRunner = SubProcessTestRunner(sandbox)
139-
chat(sandbox, code_generator, test_interpreter, test_runner, max_epochs=max_epochs)
139+
chat(code_generator, test_interpreter, test_runner, max_epochs)
140140

141141

142142
if __name__ == "__main__":

0 commit comments

Comments
 (0)