1. Oracle Cloud Infrastructure (OCI) Documentation. "Retrieval-Augmented Generation (RAG) in OCI Generative AI". This document states, "RAG enhances the accuracy and relevance of Large Language Model (LLM) generated responses by retrieving information from a specified data source and using it to create a response... RAG is useful for question and answering on your private data." This directly supports using RAG for querying company-specific information.
Source: Oracle Cloud Infrastructure Documentation, Generative AI Service, "Overview of Retrieval-Augmented Generation (RAG)".
2. Oracle Cloud Infrastructure (OCI) Blog. "Build a Q&A solution over your enterprise data using OCI Generative AI". This article details an architecture for a question-answering system using enterprise data. It highlights the problem: "LLMs are trained on public data and don't have access to your private enterprise data." It then presents a RAG-based solution as the way to "ground the LLM with your own data to get more accurate and relevant completions."
Source: Oracle Cloud Infrastructure Blog, AI & Data Science section, "Build a Q&A solution over your enterprise data using OCI Generative AI," published October 24, 2023.
3. Lewis, P., et al. (2020). "Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks." Advances in Neural Information Processing Systems 33. This foundational academic paper introduced the RAG model, demonstrating that it significantly improves performance on knowledge-intensive tasks by combining pre-trained language models with a non-parametric memory (a retriever over a knowledge corpus like Wikipedia). This principle is directly applicable to using a corpus of company policies.
DOI: Available via arXiv:2005.11401. See Section 1 (Introduction) and Section 3 (Methods).