Skip to content

참고 자료 (References)

핵심 논문

#저자/출처제목핵심 내용
1Edge et al., 2024From Local to Global: A Graph RAG Approach to Query-Focused SummarizationGraphRAG 핵심 논문 — 커뮤니티 탐지 + 맵-리듀스 검색
2Vaswani et al., 2017Attention Is All You NeedTransformer 아키텍처 원논문
3Pang et al., 2019Zanzibar: Google's Consistent, Global Authorization SystemGoogle 전역 인가 시스템 — ReBAC의 기반
4Gruber, 1993A Translation Approach to Portable Ontology Specifications온톨로지의 정의 원논문
5DRIFT, 2024.10Dynamic Reasoning and Inference with Flexible TraversalGraphRAG 동적 탐색 확장
6Nature Physics, 2025Topological Dirac Operator위상 디랙 연산자 — AI 위상학적 분석 핵심 도구

공식 문서

#출처문서내용
1PalantirFoundry Documentation온톨로지 레이어, Pipeline Builder
2PalantirAIP DocumentationAIP Logic, Agent Studio, LLM 통합
3AnthropicModel Context Protocol (MCP) SpecificationAI 에이전트 표준 통신 프로토콜
4LangChainLangChain DocumentationLLM 체인, 에이전트, RAG 파이프라인
5OpenAIAPI DocumentationGPT 모델, Embeddings API
6W3COWL 2 Web Ontology Language온톨로지 표준 명세 (2012)
7Neo4jGraph Database DocumentationCypher 쿼리, 그래프 알고리즘

도서

#저자제목관련 내용
1Russell & NorvigArtificial Intelligence: A Modern Approach지식 표현, 온톨로지, 추론
2Allemang & HendlerSemantic Web for the Working OntologistRDF, OWL, SPARQL, 온톨로지 설계
3Needham & HodlerGraph Algorithms (O'Reilly)커뮤니티 탐지, 중심성, 그래프 분석
4KleppmannDesigning Data-Intensive Applications분산 시스템, 데이터 파이프라인
5Baader et al.The Description Logic Handbook기술 논리, 온톨로지 추론, OWL 형식적 기반

온라인 자료

#저자/출처제목내용
1MicrosoftGraphRAG GitHub RepositoryGraphRAG 공식 구현체
2PalantirOntology Layer 설계 철학 블로그Foundry 통합 전략
3AnthropicMCP 설계 배경 블로그MCP 표준 프로토콜 발표
4Chip Huyen, 2023Building LLM Applications for ProductionLLM 시스템 설계, 평가, 배포
5Eugene Yan, 2023Patterns for Building LLM-based Systems & ProductsRAG, 에이전트, HitL 패턴
6Lilian Weng, 2023LLM Powered Autonomous Agents에이전트 설계, 메모리, 오케스트레이션
7Weights & BiasesRAG in Production청킹, 임베딩, 검색 실무

실습 도구 체인

필수 설치

bash
# 그래프 DB
# Neo4j Desktop: https://neo4j.com/download/

# Python 패키지
pip install langchain chromadb neo4j sentence-transformers openai
pip install graphrag  # Microsoft GraphRAG

# MCP
npm install @anthropic-ai/sdk  # Anthropic SDK

추천 학습 순서 (도구 기준)

  1. Neo4j Desktop → Cypher 기초 → 지식 그래프 체험
  2. ChromaDB → 벡터 저장/검색 → RAG 기초 체험
  3. LangChain → RAG 파이프라인 구축
  4. Microsoft GraphRAG → 지식 그래프 기반 RAG 전환
  5. OpenFGA → ReBAC 접근제어 구현
  6. MCP SDK → 에이전트-도구 통합