Skip to content

Commit 4e15544

Browse files
committed
feat: Adding support Multimodal embedders.
1 parent aac34cf commit 4e15544

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/client/test_experimental_features.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ def test_update_experimental_features(client):
2424

2525
def test_update_multiple_experimental_features(client):
2626
"""Test updating multiple experimental features at once."""
27-
response = client.update_experimental_features(
28-
{"multimodal": True, "vectorStoreSetting": True}
29-
)
27+
response = client.update_experimental_features({"multimodal": True, "vectorStoreSetting": True})
3028
assert isinstance(response, dict)
3129
# At least one should be accepted (depending on Meilisearch version)
3230
assert "multimodal" in response or "vectorStoreSetting" in response

0 commit comments

Comments
 (0)