where is the data stored in assistant's file search feature

Marj De 0 Reputation points
2025-02-26T16:33:14.3566667+00:00

In the context of Azure's vector store for the file search tool in assistants, could you clarify where the data is stored during indexing and query processing?

Azure OpenAI Service
Azure OpenAI Service
An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
3,732 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Azar 26,195 Reputation points MVP
    2025-02-26T16:57:32.9033333+00:00

    Hi there Marj De

    Thanks for using QandA platform

    The uploaded files are stored in Azure Blob Storage. Their content is embedded into vectors and indexed in Azure AI Search. During queries, embeddings are matched against the vector index to fetch relevant documents for response generation. Metadata and configurations are managed within Azure OpenAI. hope this helps

    If this helps kindly accept the answer thanks much.


  2. Manas Mohanty 945 Reputation points Microsoft Vendor
    2025-02-27T13:56:20.2066667+00:00

    Hi Marj De

    All this data from assistants stored in a secure, Microsoft-managed storage account, isolated for your Azure OpenAI resource​. In other words, Azure manages the storage for conversation history and uploaded content, and keeps it logically separated per customer/resource.

    So, it won't be accessible to you, but you can delete those data using Rest Api or SDK by deleting assistant's threads.

    DELETE https://<your-resource-name>.openai.azure.com/openai/threads/{thread_id}?api-version=2024-08-01-preview . 
    

    Reference on Data storage in OpenAI

    Reference on Deletion of data from assistants

    If this helps kindly accept the answer.

    Thank you.

    0 comments No comments

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.