From 570644d9396a1f5c6dc14f34e3d19cb2556caf20 Mon Sep 17 00:00:00 2001 From: saksham0161 Date: Thu, 12 Jun 2025 08:13:39 +0530 Subject: [PATCH] Fix ticker hardcoding in prompt (#28) --- tradingagents/dataflows/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tradingagents/dataflows/interface.py b/tradingagents/dataflows/interface.py index d31d84e..e0c0b70 100644 --- a/tradingagents/dataflows/interface.py +++ b/tradingagents/dataflows/interface.py @@ -713,7 +713,7 @@ def get_stock_news_openai(ticker, curr_date): "content": [ { "type": "input_text", - "text": f"Can you search Social Media for {ticker} on TSLA from 7 days before {curr_date} to {curr_date}? Make sure you only get the data posted during that period.", + "text": f"Can you search Social Media for {ticker} from 7 days before {curr_date} to {curr_date}? Make sure you only get the data posted during that period.", } ], }