mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 02:34:29 +00:00
9 lines
No EOL
263 B
Python
9 lines
No EOL
263 B
Python
import sys, os
|
|
import traceback
|
|
sys.path.insert(0, os.path.abspath('../..')) # Adds the parent directory to the system path
|
|
import litellm
|
|
from litellm import load_test_model
|
|
|
|
model="gpt-3.5-turbo"
|
|
result = load_test_model(model=model, num_calls=5)
|
|
print(result) |