Skip to content

Commit 887a7e3

Browse files
committed
feat: Adding support Multimodal embedders.
1 parent e2cfbc4 commit 887a7e3

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

tests/client/test_experimental_features.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,3 @@ def test_update_experimental_features(client):
2020
response = client.update_experimental_features({"multimodal": False})
2121
assert isinstance(response, dict)
2222
assert response.get("multimodal") is False
23-
24-
25-
def test_update_multiple_experimental_features(client):
26-
"""Test updating multiple experimental features at once."""
27-
response = client.update_experimental_features({"multimodal": True, "vectorStoreSetting": True})
28-
assert isinstance(response, dict)
29-
# At least one should be accepted (depending on Meilisearch version)
30-
assert "multimodal" in response or "vectorStoreSetting" in response

0 commit comments

Comments
 (0)