You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the `/settings` route to customize search settings for a given index. You can either modify all index settings at once using the [update settings endpoint](#update-settings), or use a child route to configure a single setting.
74
77
@@ -3053,7 +3056,6 @@ curl \
3053
3056
"chatCompletions": true
3054
3057
}'
3055
3058
```
3056
-
3057
3059
</Note>
3058
3060
3059
3061
The chat settings allow you to configure how your index integrates with Meilisearch's conversational search feature.
@@ -3185,3 +3187,115 @@ curl \
3185
3187
```
3186
3188
3187
3189
You can use the returned `taskUid` to get more details on [the status of the task](/reference/api/tasks#get-one-task).
3190
+
3191
+
## Vector store <NoticeTagtype="experimental"label="experimental" />
3192
+
3193
+
<Note>
3194
+
This is an experimental feature. Use the Meilisearch Cloud UI or the experimental features endpoint to activate it:
When switching between vector stores, Meilisearch must convert all vector data for use with the new backend. This operation may take a significant amount of time in existing indexes. If a conversion is taking too long, create a new empty index, set its store to `experimental`, and add your documents.
Reset an index's vector store to its default settings.
3276
+
3277
+
If you had set `vectorStore` to anything other than the default value, resetting triggers a convertion operation. This operation may take a significant amount of time depending on the size of the index.
0 commit comments