A legal team wants their Foundry-deployed chat model to answer questions using the content of their internal contract repository stored in Azure Blob Storage, without retraining or fine-tuning the underlying model. Which Foundry feature should they configure to link that storage account so retrieved contract text augments the model's responses at query time?
Select an answer to reveal the explanation.
Short Explanation
The legal team wants the chat model to be able to reach into their contract files and pull up the right passage when someone asks a question, but they explicitly do not want to retrain the model itself, that would be slow and would need to happen again every time a contract changes. What actually does this job is linking the storage location as a data source the model can search and pull from at the moment a question comes in, rather than baking that content into the model's memory permanently. Retraining the whole model on the repository is the opposite of what was asked for, and it is a bad fit anyway since contracts get added and updated constantly. Letting responses run longer has nothing to do with whether the model can see the contracts at all. And putting the storage account in the same region as the deployment might make things a bit faster, but proximity alone does not tell the model those files exist or how to search them. Linking the data source directly is what actually connects the dots.
Full Explanation
The correct answer is A. Configuring a data connection lets Foundry index and retrieve relevant contract text from the linked storage account at query time, grounding the model's responses in that content through retrieval-augmented generation, all without altering the model's underlying weights. Option B is incorrect because fine-tuning retrains the model on the repository's content, which directly contradicts the stated requirement to avoid retraining, and it is also poorly suited to a contract repository that changes over time since the model would need retraining after every update. Option C is incorrect because the maximum output token limit only controls how long a generated response can be; it has no effect on whether the model can access or retrieve external contract documents. Option D is incorrect because matching the deployment region to the storage account's region may reduce network latency, but proximity alone does not connect the storage account as a retrievable data source; the model still needs an explicit data connection to know the content exists and pull from it. A data connection is the mechanism that ties external content to the model's responses at query time.