mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-24 18:24:20 +00:00
13 lines
No EOL
322 B
Python
13 lines
No EOL
322 B
Python
#### What this tests ####
|
|
# This tests context fallback dict
|
|
|
|
import sys, os
|
|
import traceback
|
|
import pytest
|
|
sys.path.insert(
|
|
0, os.path.abspath("../..")
|
|
) # Adds the parent directory to the system path
|
|
import litellm
|
|
from litellm import longer_context_model_fallback_dict
|
|
|
|
print(longer_context_model_fallback_dict) |