A publishing company built a Retrieval Augmented Generation (RAG) based solution to give its users the ability to interact with published content. New content is published daily. The company wants to provide a near real-time experience to users. Which steps in the RAG pipeline should the company implement by using offline batch processing to meet these requirements? (Choose two.)
Select an option, then click Submit answer.
Reference / correct answer:
Generation of content embeddings
Most accepted answer: A. Generation of content embeddings
Community votes: A=9, C=3
Selected Answer: A Looks like there's an issue with choosing the options here as it doesn't allow to select more than one option here. But based on the requirements of this question, A and C are more relevant. upvoted 1 times
Selected Answer: A - A — Content embeddings can be generated as a batch job whenever new content is published daily. - C — The search index (vector store) is built/updated offline from those embeddings. The remaining steps (B, D, E) must happen at query time (online) since they depend on the user's actual input: - B — User query embedding is generated live per request. - D — Retrieval happens live against the pre-built index. - E — Response generation happens live using the retrieved context. upvoted 2 times
Selected Answer: C A and C upvoted 1 times
Selected Answer: C C is also the answer upvoted 1 times
Selected Answer: A The correct options are A. Generation of content embeddings and C. Creation of the search index. upvoted 1 times