今日摘要

X Andrej Karpathy:LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of…

OpenAI Blog:OpenAI acquires TBPN to accelerate global conversations around AI and support independent media, expanding dialogue with builders,…

OpenAI Blog:Codex now includes pay-as-you-go pricing for ChatGPT Business and Enterprise, providing teams a more flexible option to start and…

OpenAI Blog:Gradient Labs uses GPT-4.1 and GPT-5.4 mini and nano to power AI agents that automate banking support workflows with low latency a…

X Andrej Karpathy:Farzapedia, personal wikipedia of Farza, good example following my Wiki LLM tweet. I really like this approach to personalization…

总结 + 观点:Something I've been thinking about - I am bullis…|中文观点:Something I've been thinking about - I am bul…

总结 + 观点:Wow, this tweet went very viral! I wanted share…|中文观点:比起表面参数,Wow, this tweet went very viral! I wan…

总结 + 观点:OpenAI raises $122 billion in new funding to exp…|中文观点:围绕 Accelerating the next phase of AI,真正重要的是它会…

总结 + 观点:New supply chain attack this time for npm axios,…|中文观点:从 New supply chain attack this time for npm a…

总结 + 观点:OpenAI engineering 列表显示,Responses API agent comp…|中文观点:From model to agent: Equipping the Responses…

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research...

来源:X Andrej Karpathy

标签:#x_profiles #extended

作者:

原文:LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

链接:https://twitter.com/karpathy/status/2039805659525644595

观点:比起表面参数,LLM Knowledge Bases Something I'm finding very useful recent... 更需要观察它是否在推理质量、检索效果或可用性上带来真实改进。

OpenAI acquires TBPN

来源:OpenAI Blog

标签:#ai_engineering_blogs #core

作者:

原文:OpenAI acquires TBPN to accelerate global conversations around AI and support independent media, expanding dialogue with builders, businesses, and the broader tech community.

链接:https://openai.com/index/openai-acquires-tbpn

观点:OpenAI acquires TBPN 更值得从实际采用价值来判断,而不是只看它有没有制造新的讨论热度。

Codex now offers more flexible pricing for teams

来源:OpenAI Blog

标签:#ai_engineering_blogs #core

作者:

原文:Codex now includes pay-as-you-go pricing for ChatGPT Business and Enterprise, providing teams a more flexible option to start and scale adoption.

链接:https://openai.com/index/codex-flexible-pricing-for-teams

观点:围绕 Codex now offers more flexible pricing for teams,真正重要的是它会不会影响团队的模型选型、性能边界和产品体验。

Gradient Labs gives every bank customer an AI account manager

来源:OpenAI Blog

标签:#ai_engineering_blogs #core

作者:

原文:Gradient Labs uses GPT-4.1 and GPT-5.4 mini and nano to power AI agents that automate banking support workflows with low latency and high reliability.

链接:https://openai.com/index/gradient-labs

观点:对 Gradient Labs gives every bank customer an AI account manage...,更该看它能不能改善多步骤协作、记忆管理和稳定交付,而不是只看 demo 效果。

Farzapedia, personal wikipedia of Farza, good example following my Wiki LLM tweet.

来源:X Andrej Karpathy

标签:#x_profiles #extended

作者:

原文:Farzapedia, personal wikipedia of Farza, good example following my Wiki LLM tweet. I really like this approach to personalization in a number of ways, compared to "status quo" of an AI that allegedly gets better the more you use it or something: 1. Explicit. The memory artifact is explicit and navigable (the wiki), you can see exactly what the AI does and does not know and you can inspect and manage this artifact, even if you don't do the direct text writing (the LLM does). The knowledge of you is not implicit and unknown, it's explicit and viewable. 2. Yours. Your data is yours, on your local computer, it's not in some particular AI provider's system without the ability to extract it. You're in control of your information. 3. File over app. The memory here is a simple collection of files in universal formats (images, markdown). This means the data is interoperable: you can use a very large collection of tools/CLIs or whatever you want over this information because it's just files. The agents can apply the entire Unix toolkit over them. They can natively read and understand them. Any kind of data can be imported into files as input, and any kind of interface can be used to view them as the output. E.g. you can use Obsidian to view them or vibe code something of your own. Search "File over app" for an article on this philosophy. 4. BYOAI. You can use whatever AI you want to "plug into" this information - Claude, Codex, OpenCode, whatever. You can even think about taking an open source AI and finetuning it on your wiki - in principle, this AI could "know" you in its weights, not just attend over your data. So this approach to personalization puts *you* in full control. The data is yours. In Universal formats. Explicit and inspectable. Use whatever AI you want over it, keep the AI companies on their toes! Certainly this is not the simplest way to get an AI to know you - it does require you to manage file directories and so on, but agents also make it quite simple and they can help you a lot. I imagine a number of products might come out to make this all easier, but imo "agent proficiency" is a CORE SKILL of the 21st century. These are extremely powerful tools - they speak English and they do all the computer stuff for you. Try this opportunity to play with one. Farza (@FarzaTV) This is Farzapedia. I had an LLM take 2,500 entries from my diary, Apple Notes, and some iMessage convos to create a personal Wikipedia for me. It made 400 detailed articles for my friends, my startups, research areas, and even my favorite animes and their impact on me complete with backlinks. But, this Wiki was not built for me! I built it for my agent! The structure of the wiki files and how it's all backlinked is very easily crawlable by any agent makes it a truly useful knowledge base. I can spin up Claude Code on the wiki and starting at index.md (a catalog of all my articles) the agent does a really good job at drilling into the specific pages on my wiki it needs context on when I have a query. For example, when trying to cook up a new landing page I may ask: "I'm trying to design this landing page for a new idea I have. Please look into the images and films that inspired me recently and give me ideas for new copy and aesthetics". In my diary I kept track of everything from: learnings, people, inspo, interesting links, images. So the agent reads my wiki and pulls up my "Philosophy" articles from notes on a Studio Ghibli documentary, "Competitor" articles with YC companies whose landing pages I screenshotted, and pics of 1970s Beatles merch I saved years ago. And it delivers a great answer. I built a similar system to this a year ago with RAG but it was ass. A knowledge base that lets an agent find what it needs via a file system it actually understands just works better. The most magical thing now is as I add new things to my wiki (articles, images of inspo, meeting notes) the system will likely update 2-3 different articles where it feels that context belongs, or, just creates a new article. It's like this super genius librarian for your brain that's always filing stuff for your perfectly and also let's you easily query the knowledge for tasks useful to you (ex. design, product, writing, etc) and it never gets tired. I might spend next week productizing this, if that's of interest to you DM me tell me your usecase! Video https://nitter.net/FarzaTV/status/2040563939797504467#m

链接:https://twitter.com/karpathy/status/2040572272944324650

观点:比起表面参数,Farzapedia, personal wikipedia of Farza, good example follow... 更需要观察它是否在推理质量、检索效果或可用性上带来真实改进。

Something I've been thinking about - I am bullish on people (empowered by AI) increasing the visibility, legibility and accountability of th...

来源:X Andrej Karpathy

标签:#x_profiles #extended

作者:

原文:Something I've been thinking about - I am bullish on people (empowered by AI) increasing the visibility, legibility and accountability of their governments. Historically, it is the governments that act to make society legible (e.g. "Seeing like a state" is the common reference), but with AI, society can dramatically improve its ability to do this in reverse. Government accountability has not been constrained by access (the various branches of government publish an enormous amount of data), it has been constrained by intelligence - the ability to process a lot of raw data, combine it with domain expertise and derive insights. As an example, the 4000-page omnibus bill is "transparent" in principle and in a legal sense, but certainly not in a practical sense for most people. There's a lot more like it: laws, spending bills, federal budgets, freedom of information act responses, lobbying disclosures... Only a few highly trained professionals (investigative journalists) could historically process this information. This bottleneck might dissolve - not only are the professionals further empowered, but a lot more people can participate. Some examples to be precise: Detailed accounting of spending and budgets, diff tracking of legislation, individual voting trends w.r.t. stated positions or speeches, lobbying and influence (e.g. graph of lobbyist - firm - client - legislator - committee - vote - regulation), procurement and contracting, regulatory capture warning lights, judicial and legal patterns, campaign finance... Local governments might be even more interesting because the governed population is smaller so there is less national coverage: city council meetings, decisions around zoning, policing, schools, utilities... Certainly, the same tools can easily cut the other way and it's worth being very mindful of that, but I lean optimistic overall that added participation, transparency and accountability will improve democratic, free societies. (the quoted tweet is half-ish related, but inspired me to post some recent thoughts) Harry Rushworth (@Hrushworth) The British Government is a complicated beast. Dozens of departments, hundreds of public bodies, more corporations than one can count... Such is its complexity that there isn't an org chart for it. Well, there wasn't... Introducing ⚙️Machinery of Government⚙️ https://nitter.net/Hrushworth/status/2040406616806179001#m

链接:https://twitter.com/karpathy/status/2040549459193704852

观点:Something I've been thinking about - I am bullish on people... 的核心不在新鲜感,而在它是否能提升工程效率、部署稳定性或开发者工作流。

Wow, this tweet went very viral! I wanted share a possibly slightly improved version of the tweet in an "idea file".

来源:X Andrej Karpathy

标签:#x_profiles #extended

作者:

原文:Wow, this tweet went very viral! I wanted share a possibly slightly improved version of the tweet in an "idea file". The idea of the idea file is that in this era of LLM agents, there is less of a point/need of sharing the specific code/app, you just share the idea, then the other person's agent customizes builds it for your specific needs. So here's the idea in a gist format: gist.github.com/karpathy/442… You can give this to your agent and it can build you your own LLM wiki and guide you on how to use it etc. It's intentionally kept a little bit abstract/vague because there are so many directions to take this in. And ofc, people can adjust the idea or contribute their own in the Discussion which is cool. Andrej Karpathy (@karpathy) LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts. https://nitter.net/karpathy/status/2039805659525644595#m

链接:https://twitter.com/karpathy/status/2040470801506541998

观点:比起表面参数,Wow, this tweet went very viral! I wanted share a possibly s... 更需要观察它是否在推理质量、检索效果或可用性上带来真实改进。

Accelerating the next phase of AI

来源:OpenAI Blog

标签:#ai_engineering_blogs #core

作者:

原文:OpenAI raises $122 billion in new funding to expand frontier AI globally, invest in next-generation compute, and meet growing demand for ChatGPT, Codex, and enterprise AI.

链接:https://openai.com/index/accelerating-the-next-phase-ai

观点:围绕 Accelerating the next phase of AI,真正重要的是它会不会影响团队的模型选型、性能边界和产品体验。

New supply chain attack this time for npm axios, the most popular HTTP client library with 300M weekly downloads.

来源:X Andrej Karpathy

标签:#x_profiles #extended

作者:

原文:New supply chain attack this time for npm axios, the most popular HTTP client library with 300M weekly downloads. Scanning my system I found a use imported from googleworkspace/cli from a few days ago when I was experimenting with gmail/gcal cli. The installed version (luckily) resolved to an unaffected 1.13.5, but the project dependency is not pinned, meaning that if I did this earlier today the code would have resolved to latest and I'd be pwned. It's possible to personally defend against these to some extent with local settings e.g. release-age constraints, or containers or etc, but I think ultimately the defaults of package management projects (pip, npm etc) have to change so that a single infection (usually luckily fairly temporary in nature due to security scanning) does not spread through users at random and at scale via unpinned dependencies. More comprehensive article: stepsecurity.io/blog/axios-c… Feross (@feross) CRITICAL: Active supply chain attack on axios -- one of npm's most depended-on packages. The latest axios@1.14.1 now pulls in plain-crypto-js@4.2.1, a package that did not exist before today. This is a live compromise. This is textbook supply chain installer malware. axios has 100M+ weekly downloads. Every npm install pulling the latest version is potentially compromised right now. Socket AI analysis confirms this is malware. plain-crypto-js is an obfuscated dropper/loader that: Deobfuscates embedded payloads and operational strings at runtime Dynamically loads fs, os, and execSync to evade static analysis Executes decoded shell commands Stages and copies payload files into OS temp and Windows ProgramData directories Deletes and renames artifacts post-execution to destroy forensic evidence If you use axios, pin your version immediately and audit your lockfiles. Do not upgrade. https://nitter.net/feross/status/2038807290422370479#m

链接:https://twitter.com/karpathy/status/2038849654423798197

观点:从 New supply chain attack this time for npm axios, the most po... 看,后续更应关注安全事故是否改变企业采购、接入和上线前的合规门槛。

From model to agent: Equipping the Responses API with a computer environment

来源:OpenAI Engineering

标签:#uncategorized #core

作者:

原文:OpenAI engineering 列表显示,Responses API agent computer environment,这意味着模型调用正在往更完整的 agent runtime

链接:https://openai.com/index/equip-responses-api-computer-environment/

观点:From model to agent: Equipping the Responses API with a comp... 的核心不在新鲜感,而在它是否能提升工程效率、部署稳定性或开发者工作流。

Inside our approach to the Model Spec

来源:OpenAI Engineering

标签:#uncategorized #core

作者:

原文:OpenAI RSS Model Spec agent

链接:https://openai.com/index/our-approach-to-the-model-spec

观点:从 Inside our approach to the Model Spec 看,后续更应关注安全事故是否改变企业采购、接入和上线前的合规门槛。

Quantifying infrastructure noise in agentic coding evals

来源:Anthropic Engineering

标签:#uncategorized #core

作者:

原文:Anthropic agentic coding benchmark,波动甚至可能超过榜单模型之间的差距。这对 agent eval

链接:https://www.anthropic.com/engineering/infrastructure-noise

观点:比起表面参数,Quantifying infrastructure noise in agentic coding evals 更需要观察它是否在推理质量、检索效果或可用性上带来真实改进。

Harness design for long-running application development

来源:Anthropic Engineering

标签:#uncategorized #core

作者:

原文:Anthropic harness agent runtime、上下文和安全边界设计问题。

链接:https://www.anthropic.com/engineering/harness-design-long-running-apps

观点:从 Harness design for long-running application development 看,后续更应关注安全事故是否改变企业采购、接入和上线前的合规门槛。

2025 LLM Year in Review

来源:Andrej Karpathy

标签:#uncategorized #core

作者:

原文:Karpathy 2025 LLM RLVR reasoning test-time compute

链接:https://karpathy.bearblog.dev/year-in-review-2025/

观点:比起表面参数,2025 LLM Year in Review 更需要观察它是否在推理质量、检索效果或可用性上带来真实改进。

Announcing the OpenAI Safety Fellowship

来源:OpenAI Blog

标签:#ai_engineering_blogs #core

作者:

原文:A pilot program to support independent safety and alignment research and develop the next generation of talent

链接:https://openai.com/index/introducing-openai-safety-fellowship

观点:Announcing the OpenAI Safety Fellowship 更值得从实际采用价值来判断,而不是只看它有没有制造新的讨论热度。

huggingface/candle

来源:GitHub huggingface

标签:#github_orgs #extended

作者:

原文:Hugging Face 的 Rust 推理栈,主打更轻更可控的部署路径,适合需要绕开 Python 依赖、做嵌入式或边缘部署的团队。

链接:https://github.com/huggingface/candle

观点:Candle 不是要取代 PyTorch,而是为“小而快、可独立部署”的推理需求提供另一条路径,先在边缘和嵌入式场景受益。

langchain-ai/langgraph

来源:GitHub langchain-ai

标签:#github_orgs #extended

作者:

原文:LangChain 团队的有状态智能体运行时,强调分支、重试、可观测性,已经成为事实上的生产级 agent 编排层之一。

链接:https://github.com/langchain-ai/langgraph

观点:LangGraph 的地位持续加固,对需要真正跑在生产的多步 agent 来说,它比通用 LLM 框架提供了更明确的运行时抽象。

langchain-ai/langsmith-sdk

来源:GitHub langchain-ai

标签:#github_orgs #extended

作者:

原文:LangChain 的可观测性与评估平台 SDK,重点在 agent 跑起来之后的 trace、evaluation 和回归测试。

链接:https://github.com/langchain-ai/langsmith-sdk

观点:LangSmith 的演进方向是 agent 可观测性栈:真正的下一个难点是“agent 跑起来之后怎么看清楚”,而不是怎么把它跑起来。

Rv: The Missing Piece for Ruby Programmer Happiness

来源:Hacker News Newest

标签:#research_community #extended

作者:

原文:一篇介绍 Rv 这个 Ruby 工具的文章,尝试在 Ruby 生态里填补一个长期缺席的开发体验空缺。

链接:https://a-chacon.com/just%20ruby/2026/04/03/rv-missing-piece-for-ruby-programmer-happiness.html

观点:这类“小语言工具”经常是社区生态健康度的信号:Ruby 还能有人做这种底层幸福感优化,说明它的开发者文化没有衰退。

Old laptops in a colo as low cost servers

来源:Hacker News Newest

标签:#research_community #extended

作者:

原文:讲老笔记本上 colo 机房跑低成本服务器的经验分享,重点在电源、散热、网络这些“企业级忽略,个人运维很真实”的细节。

链接:https://colaptop.pages.dev/

观点:colo 自部署的故事在 AI infra 通货膨胀时代重新有意义:当云成本飞涨,自建 GPU/推理节点的这类实践会重新成为严肃选项。