NotFoundError: Error code: 404 - {'error': {'code': '404', 'message': 'Resource not found'}}

Immedisetty, trinadh 0 Reputation points
2024-08-06T17:59:39.5733333+00:00

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, )

Azure AI Search
Azure AI Search
An Azure search service with built-in artificial intelligence capabilities that enrich information to help identify and explore relevant content at scale.
1,015 questions
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.