@@ -167,13 +167,6 @@ The code in the `vector-search-quickstart.ipynb` uses several methods from the `
167
167
fields = [
168
168
SimpleField(name = " HotelId" , type = SearchFieldDataType.String, key = True , filterable = True ),
169
169
SearchableField(name = " HotelName" , type = SearchFieldDataType.String, sortable = True ),
170
- SearchField(
171
- name = " HotelNameVector" ,
172
- type = SearchFieldDataType.Collection(SearchFieldDataType.Single),
173
- searchable = True ,
174
- vector_search_dimensions = 1536 ,
175
- vector_search_profile_name = " my-vector-profile"
176
- ),
177
170
SearchableField(name = " Description" , type = SearchFieldDataType.String),
178
171
SearchField(
179
172
name = " DescriptionVector" ,
@@ -182,18 +175,6 @@ The code in the `vector-search-quickstart.ipynb` uses several methods from the `
182
175
vector_search_dimensions = 1536 ,
183
176
vector_search_profile_name = " my-vector-profile"
184
177
),
185
- SearchableField(
186
- name = " Description_fr" ,
187
- type = SearchFieldDataType.String,
188
- analyzer_name = " en.microsoft"
189
- ),
190
- SearchField(
191
- name = " Description_frvector" ,
192
- type = SearchFieldDataType.Collection(SearchFieldDataType.Single),
193
- searchable = True ,
194
- vector_search_dimensions = 1536 ,
195
- vector_search_profile_name = " my-vector-profile"
196
- ),
197
178
SearchableField(name = " Category" , type = SearchFieldDataType.String, sortable = True , filterable = True , facetable = True ),
198
179
SearchField(name = " Tags" , type = SearchFieldDataType.Collection(SearchFieldDataType.String), searchable = True , filterable = True , facetable = True ),
199
180
SimpleField(name = " ParkingIncluded" , type = SearchFieldDataType.Boolean, filterable = True , sortable = True , facetable = True ),
@@ -212,7 +193,6 @@ The code in the `vector-search-quickstart.ipynb` uses several methods from the `
212
193
vector_search = VectorSearch(
213
194
algorithms = [
214
195
HnswAlgorithmConfiguration(name = " my-hnsw-vector-config-1" , kind = " hnsw" ),
215
- HnswAlgorithmConfiguration(name = " my-hnsw-vector-config-2" , kind = " hnsw" ),
216
196
ExhaustiveKnnAlgorithmConfiguration(name = " my-eknn-vector-config" , kind = " exhaustiveKnn" )
217
197
],
218
198
profiles = [
0 commit comments