firehose> #llmops

Compiled Knowledge Base

The ingestion philosophy underneath the "LLM wiki" pattern (Andrej Karpathy's framing): instead of retrieving from raw documents at query time, an LLM compiles knowledge once into a persistent, interlinked store of markdown files and keeps it current as new sources arrive. The contrast is with ordinary RAG — the gist Karpathy published states that most LLM-plus-documents setups (NotebookLM, ChatGPT file uploads, most RAG systems) rediscover knowledge from scratch on every interaction: ask a question that needs synthesizing five documents and the model has to find and re-piece the fragments every time; nothing is built up. A compiled knowledge base inverts this — on ingest the LLM reads a source, extracts the key information, and integrates it into the existing wiki (updating entity pages, revising topic summaries, noting where new data contradicts old, strengthening or challenging the running synthesis). The knowledge is compiled once and then maintained, not recomputed per query.

The distinguishing payoff is cross-source connection: because sources are integrated rather than summarized in isolation, the store surfaces relationships you would miss reading each source separately — the demoed run ingested two model documents and the value "that made it worth having as a wiki instead of two separate summaries" was the link between them (the two sources referenced each other; one benchmarked against a predecessor, not the sibling model, using a different harness, so the numbers didn't line up — a nuance easy to miss reading them apart). This is why a compiled base is a Retrieval Maturity Levels Level-2 "topic wiki" and not merely a folder of notes: the wiki is the compiled synthesis, the raw/ folder is the untouched source of truth, and a Context Routing file (CLAUDE.md) owns the ingestion/structure/lint rules. It is the eager-synthesis relative of the AI Second Brain ("just files"), and it shares firehose's own spine — markdown is the durable artifact; contradictions are held, not silently overwritten.

Claims


Linked from