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
* add prefix to vector store configuration and removal of container name
* docs updated
* change prefix property name
* change prefix property name
* feedback implemented
---------
Co-authored-by: Gaudy Blanco <[email protected]>
Copy file name to clipboardExpand all lines: docs/config/yaml.md
+38-2Lines changed: 38 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,9 +171,45 @@ Where to put all vectors for the system. Configured for lancedb by default. This
171
171
- `url`**str** (only for AI Search) - AI Search endpoint
172
172
- `api_key`**str** (optional - only for AI Search) - The AI Search api key to use.
173
173
- `audience`**str** (only for AI Search) - Audience for managed identity token if managed identity authentication is used.
174
-
- `container_name`**str** - The name of a vector container. This stores all indexes (tables) for a given dataset ingest. Default=`default`
174
+
- `index_prefix`**str** - (optional) A prefix for the indexes you will create for embeddings. This stores all indexes (tables) for a given dataset ingest.
175
175
- `database_name`**str** - (cosmosdb only) Name of the database.
176
-
- `overwrite`**bool** (only used at index creation time) - Overwrite collection if it exist. Default=`True`
176
+
- `embeddings_schema`**list[dict[str, str]]** (optional) - Enables customization for each of your embeddings.
177
+
- `<supported_embedding>`:
178
+
- `index_name` **str**: (optional) - Name for the specific embedding index table.
179
+
- `id_field` **str**: (optional) - Field name to be used as id. Default=`id`
180
+
- `vector_field` **str**: (optional) - Field name to be used as vector. Default=`vector`
181
+
- `vector_size` **int**: (optional) - Vector size for the embeddings. Default=`3072`
0 commit comments