fix(proxy_server.py): don't pass in user param if not sent

This commit is contained in:
Krrish Dholakia 2023-12-14 14:17:33 -08:00
parent 1506fb5747
commit c2b92fe8b8
5 changed files with 48 additions and 9 deletions

View file

@ -164,7 +164,7 @@ def test_bedrock_embedding_titan():
assert all(isinstance(x, float) for x in response['data'][0]['embedding']), "Expected response to be a list of floats"
except Exception as e:
pytest.fail(f"Error occurred: {e}")
# test_bedrock_embedding_titan()
test_bedrock_embedding_titan()
def test_bedrock_embedding_cohere():
try: