From 8af96235c9557c9ba1d6f2f233f9282ff82e9d43 Mon Sep 17 00:00:00 2001 From: Siraj R Aizlewood <siraj@aurelio.ai> Date: Mon, 6 May 2024 17:31:29 +0400 Subject: [PATCH] Removed debugging statements. --- semantic_router/llms/base.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/semantic_router/llms/base.py b/semantic_router/llms/base.py index 6d8e95b0..4ea44c67 100644 --- a/semantic_router/llms/base.py +++ b/semantic_router/llms/base.py @@ -24,18 +24,6 @@ class BaseLLM(BaseModel): ) -> bool: """Determine if the functions chosen by the LLM exist within the function_schemas, and if the input arguments are valid for those functions.""" - # DEBUGGING: Start. - print('#'*50) - print('inputs') - print(inputs) - print('#'*50) - # DEBUGGING: End. - # DEBUGGING: Start. - print('#'*50) - print('function_schemas') - print(function_schemas) - print('#'*50) - # DEBUGGING: End. try: for input_dict in inputs: # Check if 'function_name' and 'arguments' keys exist in each input dictionary -- GitLab