()
| 24 | |
| 25 | |
| 26 | def test_load_model_litellm_model(): |
| 27 | model = load_model("LiteLLMModel", "test_model_id", api_key="test_api_key", api_base="https://api.test.com") |
| 28 | assert isinstance(model, LiteLLMModel) |
| 29 | assert model.api_key == "test_api_key" |
| 30 | assert model.api_base == "https://api.test.com" |
| 31 | assert model.model_id == "test_model_id" |
| 32 | |
| 33 | |
| 34 | def test_load_model_transformers_model(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…