diff --git a/model_server/tests/core/test_function_calling.py b/model_server/tests/core/test_function_calling.py index 3f7971d8..b871bea8 100644 --- a/model_server/tests/core/test_function_calling.py +++ b/model_server/tests/core/test_function_calling.py @@ -54,20 +54,6 @@ def get_hallucination_data_complex(): return req, True, True, True -def get_hallucination_data_easy(): - # Create instances of the Message class - message1 = Message(role="user", content="How is the weather in Seattle?") - - # Create a list of tools - tools = [get_weather_api] - - # Create an instance of the ChatMessage class - req = ChatMessage(messages=[message1], tools=tools) - - # model will hallucinate - return req, True, True, True - - def get_hallucination_data_medium(): # Create instances of the Message class message1 = Message(role="user", content="How is the weather in?")