NotFoundError: Error code: 404 - {'error': {'code': '404', 'message': 'Resource not found'}}
Trying to run the following code in my notebook to connect to azure ai search, which is resulting in 404 error any help would be great. The service is active.
vector_store_address: str = "https://test.search.windows.net" vector_store_password: str = "****" index_name: str = "test"
vector_store: AzureSearch = AzureSearch( azure_search_endpoint=vector_store_address, azure_search_key=vector_store_password, index_name=index_name, embedding_function=embeddings.embed_query, )