From 86afa154adb153985f6194b5ff495dac9914192f Mon Sep 17 00:00:00 2001 From: cotran Date: Thu, 13 Feb 2025 12:40:57 -0800 Subject: [PATCH] remove example --- model_server/tests/core/test_function_calling.py | 14 -------------- 1 file changed, 14 deletions(-) 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?")