bstraehle commited on
Commit
7e3ef74
·
verified ·
1 Parent(s): adc1afd

Update multi_agent.py

Browse files
Files changed (1) hide show
  1. multi_agent.py +2 -2
multi_agent.py CHANGED
@@ -89,11 +89,11 @@ def run_multi_agent(llm, message):
89
  print(file_name_sh)
90
 
91
  file_path_py = "coding/" + file_name_py
92
- code = read_python_file(file_path)
93
  markdown_code = format_as_markdown(code)
94
 
95
  file_path_sh = "coding/" + file_name_sh
96
- code = read_python_file(file_path)
97
  markdown_code += "<br />" + format_as_markdown(code)
98
 
99
  print("### markdown_code = " + markdown_code)
 
89
  print(file_name_sh)
90
 
91
  file_path_py = "coding/" + file_name_py
92
+ code = read_python_file(file_path_py)
93
  markdown_code = format_as_markdown(code)
94
 
95
  file_path_sh = "coding/" + file_name_sh
96
+ code = read_python_file(file_path_sh)
97
  markdown_code += "<br />" + format_as_markdown(code)
98
 
99
  print("### markdown_code = " + markdown_code)