‼️ 개인 학습 내용으로, 오류가 있을 수 있습니다.
논문 URL - https://arxiv.org/abs/2501.09136
Agentic Retrieval-Augmented Generation: A Survey on Agentic RAG
-> 에이전틱* RAG 연구 동향 분석
*정교한 추론과 반복적인 계획을 사용해 복잡한 다단계 문제를 자율적으로 해결하는 것(출처 : NVIDIA)
Large Language Models (LLMs) have revolutionized artificial intelligence (AI) by enabling humanlike text generation and natural language understanding.
-> LLM은 인간처럼 텍스트를 생성하고 자연어를 이해함으로써 AI 분야에 혁신을 가져왔다.
However, their reliance on static training data limits their ability to respond to dynamic, real-time queries, resulting in outdated or inaccurate outputs.
-> 그러나 LLM은 정적인 학습 데이터에 의존하기 때문에, 변화하는 실시간 질의에 대응하는 능력이 제한되어 있어 결과적으로 오래되었거나 부정확한 출력이 발생할 수 있다.
Retrieval-Augmented Generation (RAG) has emerged as a solution, enhancing LLMs by integrating real-time data retrieval to provide contextually relevant and up-to-date responses.
-> RAG(검색 증강 생성)은 실시간 데이터 검색 기능을 통합하여 LLM의 성능을 향상시키고, 맥락에 맞는 최신 정보를 기반으로 한 응답을 제공하는 솔루션으로 부상했다.
Despite its promise, traditional RAG systems are constrained by static workflows and lack the adaptability required for multi-step reasoning and complex task management.
-> 그러나 전통 RAG 시스템은 정적인 워크플로우에 제한되어 있어 다단계 추론과 복잡한 작업 관리에 필요한 적응성이 부족한 한계를 지닌다.
Agentic Retrieval-Augmented Generation (Agentic RAG) transcends these limitations by embedding autonomous AI agents into the RAG pipeline.
-> 에이전틱 RAG는 RAG 파이프라인에 자율적 AI 에이전트를 내장함으로써 이러한 한계를 극복한다.
These agents leverage agentic design patterns reflection, planning, tool use, and multi-agent collaboration to dynamically manage retrieval strategies, iteratively refine contextual understanding, and adapt workflows through clearly defined operational structures ranging from sequential steps to adaptive collaboration.
-> 이러한 에이전트는 반성(reflection), 계획(planning), 도구 활용(tool use), 다중 에이전트 협업(multi-agent collaboration)과 같은 에이전트 설계 패턴을 활용하여, 동적으로 검색 전략을 관리하고, 맥락적 이해를 반복적으로 개선하며, 순차적 단계부터 적응적 협업까지 명확한 운영 구조를 통해 워크플로우를 조정한다.
This integration enables Agentic RAG systems to deliver unparalleled flexibility, scalability, and context-awareness across diverse
applications.
-> 이러한 통합을 통해 에이전트 기반 RAG 시스템은 다양한 애플리케이션에서 비교할 수 없는 유연성, 확장성, 맥락 인식 능력을 제공할 수 있다.
This survey provides a comprehensive exploration of Agentic RAG, beginning with its foundational principles and the evolution of RAG paradigms.
-> 본 연구는 에이전트 기반 RAG의 기본 원리와 RAG 패러다임의 진화 과정을 시작으로, 이를 종합적으로 탐구한다.
It presents a detailed taxonomy of Agentic RAG architectures, highlights key applications in industries such as healthcare, finance, and education, and examines practical implementation strategies.
-> 에이전트 RAG 구조의 세부 분류 체계를 제시하고, 의료·금융·교육 등의 산업 분야에서의 주요 응용 사례를 강조하며, 실용적인 구현 전략을 분석한다.






에이전트 기반 지능(Agentic Intelligence)
AI 에이전트 구성 요소
| 구성 요소 | 기능 |
|---|---|
| LLM | - 역할 및 작업 정의된 추론 엔진 - 사용자 쿼리 해석 및 응답 생성 |
| 메모리 | - 단기: 대화 상태 추적 - 장기: 축적된 지식 저장 |
| 계획 | - 반성(Self-Critique) 및 쿼리 라우팅 - 복잡 작업 분해 |
| 도구 | - 벡터 검색/웹 검색/API 연동 - 실시간 데이터 접근 |















Figure 원본 출처 : https://arxiv.org/pdf/2412.18431
전체 구조
GeAR 구성
검색(Retrieval w/ SyncGE):
다단계 확장(Multi-step Extension):
핵심 요소
데이터 흐름

