Auto-sync: wiki-ingest 3 sources (2026-04-16)

This commit is contained in:
2026-04-16 00:08:35 +08:00
parent 9688f3f54b
commit 5ae9550d8c
267 changed files with 9537 additions and 1163 deletions

29
wiki/concepts/LLM-Wiki.md Normal file
View File

@@ -0,0 +1,29 @@
---
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 让知识形成网络而非孤岛