Hello, I was able to create / upload files, create a vector store, etc. "inside" the Azure OpenAI Resource. However, I cannot make the search work. I'm wondering what I might be doing wrong?
I'm able to GET the vector store resource as shown below, so it exists, therefor the 404 Resource not found on the /search make no sense. The search always returns: 404 Resource Not found.
## Get vector store
GET https://abc123.openai.azure.com/openai/vector_stores/vs_abc123?api-version=2025-03-01-preview
Authorization: Bearer {{$OPENAI_API_KEY}}
## Search vector store returns 404 Resource Not Found
POST https://abc123.openai.azure.com/openai/vector_stores/vs_abc123/search?api-version=2025-03-01-preview
Authorization: Bearer {{$OPENAI_API_KEY}}
Content-Type: application/json
OpenAI-Beta: assistants=v2
{
"query": "do something"
}
Here is the documentation:
https://learn.microsoft.com/en-us/azure/ai-services/openai/reference-preview#search-vector-store
Can someone confirms if that works?
FYI: it works just fine in api.openai.com