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
There seems to be an issue creating a field of type Collection(EdmSingle) in azure-search-documents==1.15.1 This could be a bug in azure-sdk-for-python
There seems to be an issue creating a field of type Collection(EdmSingle) in azure-search-documents==1.15.1 This could be a bug in azure-sdk-for-python
SearchFieldDataType.Collection(SearchFieldDataType.Single) -> Edm.String
(python program)
fields = [
SearchableField(name="titleVector", type=SearchFieldDataType.Collection(SearchFieldDataType.Single), searchable=True, vector_search_dimensions=3072, vector_search_profile_name="myHnswProfile"),
]
↓
(JSON)
{
"name": "titleVector",
"type": "Edm.String",
:
}
The text was updated successfully, but these errors were encountered: