mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 11:14:04 +00:00
adding support for aleph alpha
This commit is contained in:
parent
adcf3dfe74
commit
83b8af8567
9 changed files with 351 additions and 91 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue