Advanced Topics
Retrieval-Augmented Generation (RAG)
検索拡張生成
Retrieval-augmented generation combines information retrieval with generation. It often searches a vector database and supplies evidence to a large language model, improving grounding without retraining the model for every knowledge change.
Japanese terms
- Retrieval-augmented generation — 検索拡張生成: A generation method that retrieves external information and supplies it to a generative model as context.
- Information retrieval — 情報検索: Finding relevant documents or records in response to an information need.
- Vector database — ベクトルデータベース: A database designed to store embeddings and retrieve nearby vectors efficiently.
- Grounding — グラウンディング: Connecting a model’s output to supplied evidence, data, or observable context.
Related topics
Embeddings commonly power semantic retrieval for RAG systems.