Update multi_agent.py
Browse files- multi_agent.py +10 -3
multi_agent.py
CHANGED
|
@@ -39,15 +39,22 @@ def run_multi_agent(llm, message):
|
|
| 39 |
)
|
| 40 |
|
| 41 |
###
|
| 42 |
-
for root, dirs, files in os.walk("
|
| 43 |
-
|
| 44 |
-
|
| 45 |
###
|
| 46 |
|
| 47 |
#png_file = os.path.join("coding", "ytd_stock_gains.png")
|
| 48 |
|
| 49 |
#print("### "+png_file)
|
| 50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
image_path = "/home/user/app/coding/ytd_stock_gains.png"
|
| 52 |
image_path_2 = "/coding/ytd_stock_gains.png"
|
| 53 |
image_path_5 = "coding/ytd_stock_gains.png"
|
|
|
|
| 39 |
)
|
| 40 |
|
| 41 |
###
|
| 42 |
+
#for root, dirs, files in os.walk("."):
|
| 43 |
+
# for file in files:
|
| 44 |
+
# print(os.path.join(root, file))
|
| 45 |
###
|
| 46 |
|
| 47 |
#png_file = os.path.join("coding", "ytd_stock_gains.png")
|
| 48 |
|
| 49 |
#print("### "+png_file)
|
| 50 |
|
| 51 |
+
current_folder = os.getcwd()
|
| 52 |
+
files_in_folder = os.listdir(current_folder)
|
| 53 |
+
|
| 54 |
+
print(f"Files in {current_folder}:")
|
| 55 |
+
for file in files_in_folder:
|
| 56 |
+
print(file)
|
| 57 |
+
|
| 58 |
image_path = "/home/user/app/coding/ytd_stock_gains.png"
|
| 59 |
image_path_2 = "/coding/ytd_stock_gains.png"
|
| 60 |
image_path_5 = "coding/ytd_stock_gains.png"
|