Skip to content

Commit 955a7c9

Browse files
committed
feat: Adding support Multimodal embedders.
1 parent 165457c commit 955a7c9

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

meilisearch/client.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,20 +1002,17 @@ def get_experimental_features(self) -> dict:
10021002
Retrieve the current settings for all experimental features.
10031003
Returns:
10041004
dict: A mapping of feature names to their enabled/disabled state.
1005-
Example:
1006-
>>> client.get_experimental_features()
10071005
"""
10081006
return self.http.get(self.config.paths.experimental_features)
10091007

10101008
def update_experimental_features(self, features: dict) -> dict:
10111009
"""
10121010
Update one or more experimental features.
1011+
10131012
Args:
10141013
features (dict): A dictionary mapping feature names to booleans.
10151014
For example, {"multimodal": True} to enable multimodal.
10161015
Returns:
10171016
dict: The updated experimental features settings.
1018-
Example:
1019-
>>> client.update_experimental_features({"multimodal": True})
10201017
"""
10211018
return self.http.patch(self.config.paths.experimental_features, body=features)

0 commit comments

Comments
 (0)