adding support for aleph alpha

This commit is contained in:
Krrish Dholakia 2023-09-02 13:15:41 -07:00
parent adcf3dfe74
commit 83b8af8567
9 changed files with 351 additions and 91 deletions

View file

@ -54,6 +54,27 @@ def test_completion_claude():
except Exception as e:
pytest.fail(f"Error occurred: {e}")
# def test_completion_aleph_alpha():
# try:
# response = completion(
# model="luminous-base", messages=messages, logger_fn=logger_fn
# )
# # Add any assertions here to check the response
# print(response)
# except Exception as e:
# pytest.fail(f"Error occurred: {e}")
# def test_completion_aleph_alpha_control_models():
# try:
# response = completion(
# model="luminous-base-control", messages=messages, logger_fn=logger_fn
# )
# # Add any assertions here to check the response
# print(response)
# except Exception as e:
# pytest.fail(f"Error occurred: {e}")
def test_completion_with_litellm_call_id():
try:
litellm.use_client = False