Are we using LLMs for Personal Knowledge Management all wrong? 🤔
The article discusses a new approach to using large language models (LLMs) for personal knowledge management, termed the 'LLM Wiki.' This method allows for the compounding of knowledge by having the LLM maintain a structured and interlinked markdown wiki instead of merely retrieving information. The author emphasizes the benefits of this approach, including improved organization and reduced manual bookkeeping.
- ▪Andrej Karpathy introduced the concept of the 'LLM Wiki' as a shift in document interaction.
- ▪The LLM Wiki approach allows for compounding knowledge by updating existing information rather than rediscovering it.
- ▪Users curate sources and ask questions while the LLM handles summarization and organization.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3759520) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } G Gokulnath Posted on May 20 Are we using LLMs for Personal Knowledge Management all wrong? 🤔 Andrej Karpathy recently shared a fascinating concept called the "LLM Wiki"—a brilliant shift from how most of us currently interact with our documents. Right now, the standard approach is RAG (Retrieval-Augmented Generation). You upload files, ask a question, and the LLM retrieves chunks to generate an answer.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).