Karpathy gave us the foundation. Rohitg00 warned us what breaks. V3 is how you structure it to scale.
This is a concept document in the same spirit as V1 and V2.
V1 was intentionally vague. Build on it. V2 was intentionally open. Solve it.
Here’s a list with the model/project name, a DOI (or stable arXiv identifier), and the GitHub repository where available.
10.1038/s41586-022-05172-4 - https://github.com/deepmind/alphatensor10.1038/s41586-023-06004-9 - https://github.com/google-deepmind/alphadev10.48550/arXiv.2409.09756 - N/A10.48550/arXiv.2410.18944 - N/A10.1038/s41586-023-06924-6 - https://github.com/google-deepmind/funsearch10.48550/arXiv.2306.05278 - https://github.com/ziyu-chen/lpn10.48550/arXiv.2109.04870 - https://github.com/nju-websoft/NLI10.1126/sciadv.aay2631 - https://github.com/SJ001/AI-FeynmanA pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
These rules define how an AI coding agent should plan, execute, verify, communicate, and recover when working in a real codebase. Optimize for correctness, minimalism, and developer experience.
Quick AI analysis of this funny history:
Original Post by James Iry on Thursday, May 7, 2009
https://james-iry.blogspot.com/2009/05/brief-incomplete-and-mostly-wrong.html
There are multiple options how to install MS Office on Linux.
VM-based - Integrate Windows apps running in a Windows virtual machine as native-looking in Linux
We have made an expandable animated card slider, it will expand and collapse based on card click. We used owl carousel and jQuery for variable width and responsive slider.
A Pen by Yudiz Solutions Limited on CodePen.
Yoav Goldberg, April 2023.
With the release of the ChatGPT model and followup large language models (LLMs), there was a lot of discussion of the importance of "RLHF training", that is, "reinforcement learning from human feedback". I was puzzled for a while as to why RL (Reinforcement Learning) is better than learning from demonstrations (a.k.a supervised learning) for training language models. Shouldn't learning from demonstrations (or, in language model terminology "instruction fine tuning", learning to immitate human written answers) be sufficient? I came up with a theoretical argument that was somewhat convincing. But I came to realize there is an additional argumment which not only supports the case of RL training, but also requires it, in particular for models like ChatGPT. This additional argument is spelled out in (the first half of) a talk by John Schulman from OpenAI. This post pretty much