@@ -965,7 +965,6 @@ class AISearchIndexResource(_Model):
965965 :vartype index_name: str
966966 :ivar query_type: Type of query in an AIIndexResource attached to this agent. Known values are:
967967 "simple", "semantic", "vector", "vector_simple_hybrid", and "vector_semantic_hybrid".
968- For vector query types, ensure the target Azure AI Search index is configured with a vectorizer.
969968 :vartype query_type: str or ~azure.ai.projects.models.AzureAISearchQueryType
970969 :ivar top_k: Number of documents to retrieve from search and present to the model.
971970 :vartype top_k: int
@@ -984,8 +983,7 @@ class AISearchIndexResource(_Model):
984983 visibility = ["read" , "create" , "update" , "delete" , "query" ]
985984 )
986985 """Type of query in an AIIndexResource attached to this agent. Known values are: \" simple\" ,
987- \" semantic\" , \" vector\" , \" vector_simple_hybrid\" , and \" vector_semantic_hybrid\" .
988- For vector query types, ensure the target Azure AI Search index is configured with a vectorizer."""
986+ \" semantic\" , \" vector\" , \" vector_simple_hybrid\" , and \" vector_semantic_hybrid\" ."""
989987 top_k : Optional [int ] = rest_field (visibility = ["read" , "create" , "update" , "delete" , "query" ])
990988 """Number of documents to retrieve from search and present to the model."""
991989 filter : Optional [str ] = rest_field (visibility = ["read" , "create" , "update" , "delete" , "query" ])
0 commit comments