mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 02:34:29 +00:00
38 lines
No EOL
1,013 B
Python
38 lines
No EOL
1,013 B
Python
#### What this tests ####
|
|
# This tests chaos monkeys - if random parts of the system are broken / things aren't sent correctly - what happens.
|
|
# Expect to add more edge cases to this over time.
|
|
|
|
import sys, os
|
|
import traceback
|
|
|
|
# Get the current directory of the script
|
|
current_dir = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
# Get the parent directory by joining the current directory with '..'
|
|
parent_dir = os.path.join(current_dir, '../..')
|
|
|
|
# Add the parent directory to the system path
|
|
sys.path.append(parent_dir)
|
|
|
|
|
|
import litellm
|
|
from litellm import embedding, completion
|
|
|
|
|
|
|
|
litellm.success_callback = ["posthog"]
|
|
litellm.failure_callback = ["slack", "sentry", "posthog"]
|
|
|
|
|
|
user_message = "Hello, how are you?"
|
|
messages = [{ "content": user_message,"role": "user"}]
|
|
model_val = None
|
|
|
|
|
|
def test_completion_with_empty_model():
|
|
# test on empty
|
|
try:
|
|
response = completion(model=model_val, messages=messages)
|
|
except Exception as e:
|
|
print(f"error occurred: {e}")
|
|
pass |