Files
nexus/wiki/concepts/LLM-Wiki.md

30 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "LLM Wiki"
type: concept
tags: [AI知识管理, RAG, 知识积累]
sources: ["养虾日记3-Obsidian-Gitea持久化笔记系统.md", "Personal-Knowledge-Base-RAG.md"]
last_updated: 2026-04-15
---
## Definition
LLM Wiki 是一种 AI 知识管理范式AI 在执行任务过程中**增量构建和维护一个持久化的 Wiki**,页面之间互相链接,知识越积越厚,而非每次从零检索。
## Core Distinction: LLM Wiki vs RAG
| | RAG | LLM Wiki |
|--|-----|---------|
| 知识积累 | 不积累,每次从零检索 | 增量构建,页面间互相链接 |
| 检索方式 | 向量相似度检索 | 双向链接 + Graph View 发现 |
| 知识边界 | 受知识库文档限制 | 知识随任务执行不断扩展 |
| 适用场景 | 静态文档问答 | 持续执行任务的 Agent |
## Key Claims
- RAG 的局限:每次对话从零开始,知识不积累,无法形成知识网络
- LLM Wiki 的优势AI 在执行任务过程中顺手维护链接、更新摘要、添加 Tag、标记新旧矛盾
- Graph View 是知识健康检查工具:孤岛页面(无页面链接指向它)需要补上交叉引用
## Related Concepts
- [[RAG]]:对比范式
- [[个人知识库]]LLM Wiki 的具体实现之一
- [[知识可发现性]]:双向链接 + Graph View 让知识形成网络而非孤岛