From 6e5cb5d4855fa83281855e9f06c6cc6aaae1ed33 Mon Sep 17 00:00:00 2001 From: co tran Date: Tue, 1 Apr 2025 01:18:15 +0000 Subject: [PATCH] fix test --- model_server/tests/core/test_function_calling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model_server/tests/core/test_function_calling.py b/model_server/tests/core/test_function_calling.py index 473eb373..e0cfbd82 100644 --- a/model_server/tests/core/test_function_calling.py +++ b/model_server/tests/core/test_function_calling.py @@ -39,7 +39,7 @@ get_weather_api = { def get_hallucination_data(): # Create instances of the Message class - message1 = Message(role="user", content="How is the weather in days?") + message1 = Message(role="user", content="How is the weather in Seattle in days?") # Create a list of tools tools = [get_weather_api]