Which TWO Azure AI services can be used to build a multilingual question-answering bot that retrieves answers from a knowledge base of documents?
Azure OpenAI with RAG can retrieve answers from documents using embeddings.
Why this answer
Options A and D are correct. Custom question answering (A) is designed for FAQ/knowledge bases. Azure OpenAI (D) can be used with a retrieval augmented generation (RAG) pattern.
Option B is wrong because LUIS is for intent/entity recognition, not answer retrieval. Option C is wrong because Translator is for translation, not answering. Option E is wrong because Form Recognizer is for form extraction.