mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
8 lines
No EOL
185 B
Python
8 lines
No EOL
185 B
Python
import os, sys, traceback
|
|
|
|
sys.path.insert(
|
|
0, os.path.abspath("../..")
|
|
) # Adds the parent directory to the system path
|
|
from litellm import get_model_list
|
|
|
|
print(get_model_list()) |