(fix) remove print from supabaseClient

This commit is contained in:
ishaan-jaff 2023-10-10 09:59:38 -07:00
parent 228d77d345
commit f97811fb1c
2 changed files with 4 additions and 4 deletions

View file

@ -45,7 +45,7 @@ class Supabase:
.insert(supabase_data_obj)
.execute()
)
print(f"data: {data}")
print_verbose(f"data: {data}")
except:
print_verbose(f"Supabase Logging Error - {traceback.format_exc()}")
pass
@ -67,7 +67,7 @@ class Supabase:
)
total_cost = litellm.completion_cost(completion_response=response_obj)
response_time = (end_time - start_time).total_seconds()
if "choices" in response_obj:
supabase_data_obj = {