Update multi_agent.py
Browse files- multi_agent.py +4 -4
multi_agent.py
CHANGED
|
@@ -69,13 +69,13 @@ def run_multi_agent(llm, message):
|
|
| 69 |
print(file)
|
| 70 |
if file :
|
| 71 |
_, file_extension = os.path.splitext(file)
|
| 72 |
-
if file_extension == "py":
|
| 73 |
file_name_py = file
|
| 74 |
-
if file_extension == "sh":
|
| 75 |
file_name_sh = file
|
| 76 |
|
| 77 |
-
print(file_name_py)
|
| 78 |
-
print(file_name_sh)
|
| 79 |
|
| 80 |
file_path_py = "coding/" + file_name_py
|
| 81 |
print("##" + file_path_py)
|
|
|
|
| 69 |
print(file)
|
| 70 |
if file :
|
| 71 |
_, file_extension = os.path.splitext(file)
|
| 72 |
+
if file_extension == ".py":
|
| 73 |
file_name_py = file
|
| 74 |
+
if file_extension == ".sh":
|
| 75 |
file_name_sh = file
|
| 76 |
|
| 77 |
+
print("#" + file_name_py)
|
| 78 |
+
print("#" + file_name_sh)
|
| 79 |
|
| 80 |
file_path_py = "coding/" + file_name_py
|
| 81 |
print("##" + file_path_py)
|