Update multi_agent.py
Browse files- multi_agent.py +4 -1
multi_agent.py
CHANGED
@@ -60,5 +60,8 @@ def run_multi_agent(llm, message):
|
|
60 |
image_path_5 = "coding/ytd_stock_gains.png"
|
61 |
image_path_3 = "/app/coding/ytd_stock_gains.png"
|
62 |
image_path_4 = "/user/app/coding/ytd_stock_gains.png"
|
|
|
|
|
|
|
63 |
|
64 |
-
return f"![YTD Stock Gains]({image_path})<br />![YTD Stock Gains]({image_path_2})<br />![YTD Stock Gains]({image_path_3})<br />![YTD Stock Gains]({image_path_4})<br />![YTD Stock Gains]({image_path_5})<br />"
|
|
|
60 |
image_path_5 = "coding/ytd_stock_gains.png"
|
61 |
image_path_3 = "/app/coding/ytd_stock_gains.png"
|
62 |
image_path_4 = "/user/app/coding/ytd_stock_gains.png"
|
63 |
+
|
64 |
+
image_path = os.path.join('coding', 'ytd_stock_gains.png')
|
65 |
+
image_markdown = f"![YTD Stock Gains]({image_path})"
|
66 |
|
67 |
+
return image_markdown #f"![YTD Stock Gains]({image_path})<br />![YTD Stock Gains]({image_path_2})<br />![YTD Stock Gains]({image_path_3})<br />![YTD Stock Gains]({image_path_4})<br />![YTD Stock Gains]({image_path_5})<br />"
|