Spaces:
Configuration error
Configuration error
import json | |
import os | |
import sys | |
import pytest | |
from fastapi.testclient import TestClient | |
sys.path.insert( | |
0, os.path.abspath("../../../..") | |
) # Adds the parent directory to the system path | |
from litellm.llms.bedrock.common_utils import BedrockModelInfo | |
def test_deepseek_cris(): | |
bedrock_model_info = BedrockModelInfo | |
bedrock_route = bedrock_model_info.get_bedrock_route( | |
model="bedrock/us.deepseek.r1-v1:0" | |
) | |
assert bedrock_route == "converse" | |