Skip to content
Snippets Groups Projects
Unverified Commit 8af96235 authored by Siraj R Aizlewood's avatar Siraj R Aizlewood
Browse files

Removed debugging statements.

parent 1e6a45d4
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment