2023-09-26 11:30:12 +08:00
|
|
|
#### What this tests ####
|
|
|
|
|
# This tests context fallback dict
|
|
|
|
|
|
|
|
|
|
import sys, os
|
|
|
|
|
import traceback
|
|
|
|
|
import pytest
|
2023-12-25 16:40:38 +08:00
|
|
|
|
2023-09-26 11:30:12 +08:00
|
|
|
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
|
|
|
|
|
|
2023-12-25 16:40:38 +08:00
|
|
|
print(longer_context_model_fallback_dict)
|