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
Error in Azure Portel Index: This index contains a vectorizer created by previous API versions that doesn't include the 'modelName' field. We recommend you to migrate by adding 'experimental' value automatically to the field to restore full portal functionality.
#241
Open
sunnysharma03 opened this issue
Jun 5, 2024
· 4 comments
I tried to add it in my script but I got below error: model_name is not a known attribute of class <class 'azure.search.documents.indexes._generated.models._models_py3.AzureOpenAIParameters'> and will be ignored
So I tried to upgrade the Azure Search Document sdk to 11.6.0.4b but still the issue is coming up.
Do we need to use some other whl file like we did earlier with 11.4.0b12 ?
I am on Azure search 11.6.03b and removed the model name.. But I agree. they should fix this and documentation properly vectorizers=[ AzureOpenAIVectorizer( name="myOpenAI", kind="azureOpenAI", azure_open_ai_parameters=AzureOpenAIParameters( resource_uri=azure_openai_endpoint, deployment_id=azure_openai_embedding_deployment, api_key=azure_openai_key, model_name = az_openai_embedding_model, ),
If the model_name parameter is not available in AzureOpenAIVectorizer class then agreed it should not be used. It would only be available on the latest version of the package.
We'll eventually update our notebooks with examples of this usage. Sorry for the inconvenience
I'm currently encountering an issue with the Azure Search Documents SDK version 11.6.0b4. When using the AzureOpenAIParameters class, the attribute model_name is flagged as not known, even though it's documented as a valid parameter. This seems to be inconsistent with the official documentation found here: Azure OpenAIParameters Documentation.
Is this a known issue or possibly a bug in the SDK?
I have created index using the below sample.ipynb file:
https://github.com/Azure/azure-search-vector-samples/blob/main/demo-python/code/integrated-vectorization/azure-search-integrated-vectorization-sample.ipynb
And used the private preview azure search whl file: azure_search_documents-11.4.0b12 which was available on github, and recently removed from it.
So as per the below doc, we have a parameter model_name to add in azure_open_ai_parameters constructor:
https://learn.microsoft.com/en-us/python/api/azure-search-documents/azure.search.documents.indexes.models.azureopenaiparameters?view=azure-python-preview
I tried to add it in my script but I got below error:
model_name is not a known attribute of class <class 'azure.search.documents.indexes._generated.models._models_py3.AzureOpenAIParameters'> and will be ignored
So I tried to upgrade the Azure Search Document sdk to 11.6.0.4b but still the issue is coming up.
Do we need to use some other whl file like we did earlier with 11.4.0b12 ?
Code snippet of my vectorizer:
I am using 2024-05-01-preview for openai version and text-embedding-3-large model.
Python version 3.8
The text was updated successfully, but these errors were encountered: