正解:B
In Azure OpenAI, grounding refers to the process of connecting the model to external data sources (for example, a database, search index, or API) so that it can retrieve accurate and up-to-date information before generating a response. This is particularly important for scenarios requiring current facts or events, since OpenAI models like GPT-3.5 and GPT-4 are trained on data available only up to a certain cutoff date.
By adding grounding data, the model's responses are "anchored" to factual sources retrieved at runtime, improving reliability and factual accuracy. Grounding is commonly implemented in Azure OpenAI + Azure Cognitive Search solutions (Retrieval-Augmented Generation or RAG).
Option review:
* A. Modify the system message: Changes model tone or behavior but doesn't supply real-time data.
* B. Add grounding data: # Correct - allows access to recent and domain-specific information.
* C. Add few-shot learning: Provides examples in the prompt to improve context understanding but not factual accuracy.
* D. Add training data: Refers to fine-tuning; this requires retraining and doesn't update the model's awareness of current events.
Hence, the best method to ensure accurate and current responses from an Azure OpenAI model is to add grounding data, enabling the model to reference real, updated sources dynamically.