Skip to content

Commit 50a5689

Browse files
committed
feat: Adding support Multimodal embedders.
1 parent 97fb11e commit 50a5689

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

meilisearch/index.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2354,19 +2354,3 @@ def compact(self) -> TaskInfo:
23542354
path = f"{self.config.paths.index}/{self.uid}/compact"
23552355
task = self.http.post(path)
23562356
return TaskInfo(**task)
2357-
2358-
def rename_index(self, new_name: str) -> TaskInfo:
2359-
"""
2360-
Rename the current Meilisearch index.
2361-
2362-
:param new_name: The new UID for the index.
2363-
:return: TaskInfo with information about the rename operation.
2364-
"""
2365-
payload = {"uid": new_name}
2366-
2367-
task = self.http.patch(
2368-
f"{self.config.paths.index}/{self.uid}",
2369-
payload,
2370-
)
2371-
2372-
return TaskInfo(**task)

0 commit comments

Comments
 (0)