diff --git a/agent-py-bot/agent.py b/agent-py-bot/agent.py index a5ba7f2..746912f 100644 --- a/agent-py-bot/agent.py +++ b/agent-py-bot/agent.py @@ -209,7 +209,7 @@ async def run_web_agent_and_process_result(topic, folder): print(f"[{datetime.now()}] AI call returned in {time.time() - start} seconds.") news_data["summary"] = query_result - user_message = "do sentiment analysis on theese news and report overall sentiment for the day from 1 to 100. Here's the current news articles: {news_data}" + user_message = f"do sentiment analysis on theese news and report overall sentiment for the day from 1 to 100. Here's the current news articles: {news_data}" start = time.time() query_result = await query_llm(user_message, "openhermes") print(f"[{datetime.now()}] AI call returned in {time.time() - start} seconds.")