AI-102 Question 290
Select 3You have been tasked with creating a custom question answering solution using Azure AI Language for your company's internal knowledge base. The knowledge base is a collection of FAQs and documents stored in multiple formats, including PDFs and Word documents. After creating the knowledge base, you need to enable your solution to answer user queries with the most relevant responses. Which steps should you take to implement this solution?
- A
Use Azure AI Language Studio to create a new project and upload your knowledge base documents.
- B
Train the model in Azure AI Language Studio after uploading the knowledge base to improve accuracy.
- C
Deploy the knowledge base to a custom endpoint for user interaction.
- D
Enable Continuous Learning in Azure AI Language Studio to automatically improve the model without retraining.
- E
Integrate the deployed endpoint with a bot framework for user interaction.
Show answer and explanation
Correct answers: A, C, E
Explanation
To create a custom question answering solution using Azure AI Language, you begin by uploading your knowledge base documents in Azure AI Language Studio. After that, you deploy the knowledge base to a custom endpoint, which serves as the querying interface. Optionally, you can integrate the endpoint with other tools like the Bot Framework for enhanced user interaction. Training and continuous learning are not required for this solution.
- A. Correct.
Correct: Azure AI Language Studio allows you to create a project and upload your knowledge base documents for building the custom question answering solution.
- B. Incorrect.
Incorrect: Training is not required for the custom question answering solution, as Azure AI Language automatically processes and structures the knowledge base.
- C. Correct.
Correct: Deploying the knowledge base to a custom endpoint enables user interaction, as this endpoint serves as the interface for querying the solution.
- D. Incorrect.
Incorrect: Continuous Learning is not directly available for custom question answering solutions in Azure AI Language. You need to manually update the knowledge base and redeploy as required.
- E. Correct.
Correct: Integrating the deployed endpoint with a bot framework provides a user-friendly interface for interacting with the question answering solution.