We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a365b7d commit 85694feCopy full SHA for 85694fe
tests/test_hf_api.py
@@ -1917,10 +1917,12 @@ def test_list_models_non_gated_only(self):
1917
for model in self._api.list_models(expand=["gated"], gated=False, limit=5):
1918
assert model.gated is False
1919
1920
+ @pytest.mark.skip("Inference parameter is being revamped")
1921
def test_list_models_inference_warm(self):
1922
for model in self._api.list_models(inference=["warm"], expand="inference", limit=5):
1923
assert model.inference == "warm"
1924
1925
1926
def test_list_models_inference_cold(self):
1927
for model in self._api.list_models(inference=["cold"], expand="inference", limit=5):
1928
assert model.inference == "cold"
0 commit comments