mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-24 18:24:20 +00:00
11 lines
253 B
Python
11 lines
253 B
Python
import os, sys, traceback
|
|
|
|
sys.path.insert(
|
|
0, os.path.abspath("../..")
|
|
) # Adds the parent directory to the system path
|
|
import litellm
|
|
from litellm import get_model_list
|
|
|
|
print(get_model_list())
|
|
print(get_model_list())
|
|
# print(litellm.model_list)
|