Spaces:
Sleeping
Sleeping
File size: 324 Bytes
7db0ae4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#### 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)
|