updates to litedebugger dashboard

This commit is contained in:
Krrish Dholakia 2023-08-23 11:51:14 -07:00
parent 943cd26288
commit e659c66a75
8 changed files with 13 additions and 10 deletions

View file

@ -9,7 +9,7 @@ import litellm
from litellm import embedding, completion
from infisical import InfisicalClient
# # litellm.set_verbose = True
litellm.set_verbose = True
# litellm.secret_manager_client = InfisicalClient(token=os.environ["INFISICAL_TOKEN"])
@ -19,6 +19,7 @@ def test_openai_embedding():
model="text-embedding-ada-002", input=["good morning from litellm"]
)
# Add any assertions here to check the response
print(f"response: {str(response)}")
# print(f"response: {str(response)}")
except Exception as e:
pytest.fail(f"Error occurred: {e}")
test_openai_embedding()