Update basics (#13033)

### What problem does this PR solve?

### Type of change

- [x] Documentation Update
This commit is contained in:
Yingfeng
2026-02-06 13:15:33 +08:00
committed by GitHub
parent a68c56def7
commit 6a17e8cc85
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ sidebar_position: 1
slug: /what-is-rag
---
# What is Retreival-Augmented-Generation (RAG)?
# What is Retrieval-Augmented-Generation (RAG)?
Since large language models (LLMs) became the focus of technology, their ability to handle general knowledge has been astonishing. However, when questions shift to internal corporate documents, proprietary knowledge bases, or real-time data, the limitations of LLMs become glaringly apparent: they cannot access private information outside their training data. Retrieval-Augmented Generation (RAG) was born precisely to address this core need. Before an LLM generates an answer, it first retrieves the most relevant context from an external knowledge base and inputs it as "reference material" to the LLM, thereby guiding it to produce accurate answers. In short, RAG elevates LLMs from "relying on memory" to "having evidence to rely on," significantly improving their accuracy and trustworthiness in specialized fields and real-time information queries.