Your curated collection of saved posts and media
Nice to see "churnalism" get automated. An agent cranked this out based on @sayashk's tweet. I hope journalists will leave behind this low-value stuff to AI and focus on the hard parts β digging up non-public info; verification and provenance; supplying unique analysis. https://t.co/KEVYIrLZSX
Financial analysts spend ~70% of their time pulling numbers out of PDFs. We built a demo agent that ingests SEC filings and answers questions with exact citations highlighted on the original PDF page. About 600 lines of Next.js. No vector DB. Just LiteParse. https://t.co/dmV641aZi1
New in LlamaParse: Latency Metrics is now live. For every Parse, Extract, and Classify job, you can now get a full latency breakdown. All broken down by tier. β± Queue time β‘Processing time π Total latency There's also a new Metrics tab with a latency scatter plot and job volume histogram if you want to dig into patterns across your usage over time. Head to your Parse History tab to check it out. π¦ https://t.co/zqUqveJRgD

How do you know your document parser is ready for production? π€Existing benchmarks miss what AI agents actually need. That's the gap ParseBench, the first doc OCR benchmark for AI agents, fills. We'll unveil all the magic behind it in a live webinar π https://t.co/odSaGMAlkz https://t.co/hjZGEol4df
LlamaParse now parses HEIC files natively π . HEIC is Apple's default image format, so it shows up all over enterprise file systems. Photos of whiteboards, scanned docs, receipts snapped on an iPhone. You no longer need to convert to JPEG first. Point LlamaParse at the .heic file and it parses. Go ahead, parse that messy whiteboard.
Automate a loan underwriting pipeline in just a few lines of codeβ¨οΈ A typical loan file is a stack of pay stubs and brokerage statements, every one formatted differently, every number re-typed by hand. Here's a pipeline that does it automatically with LlamaParse: PDFs to clean markdown, fields into Pydantic models, then cross-document analysis that produces an underwriting summary with discrepancy flags. Full post and repo: https://t.co/QnuLitgmEn
LiteParse v2.0 is out now, and it is blazing fast + runs everywhere! We rewrote everything from scratch in Rust, and now: - up to 100x faster parsing - install natively in Rust, JS/TS, and Python - a custom WASM package enables browser and edge runtime usage pip install liteparse npm i οΌ llamaindex/liteparse npm i οΌ llamaindex/liteparse-wasm cargo install liteparse Blog: https://t.co/zWnhGNrgeb Repo: https://t.co/UJy6KQ1Dyi

Is grep π³π¦π’πππΊ all your AI agent needs for search? For a small codebase or a docs folder, the answer might be yes, but in most enterprise environments, agents face millions of PDFs, spreadsheets, and scanned documents. Lexical search alone can't read those formats, doesn't scale, and misses synonyms entirely. In our latest post, we break down: β Where grep shines (and why it's not going away) β Why RAG and semantic search are necessary at enterprise scale β How to layer lexical + semantic search for the best of both worlds The answer isn't grep vs. RAG, it is knowing when to reach for each and how to combine them. ποΈ Read the full breakdown: https://t.co/S758X1l3E5
Opus 4.8 dropped today. ParseBench results are out. β Slight gains: tables, semantic formatting, layout β οΈ Slight regressions: charts, content faithfulness π° Slight price/page increase Lots of alpha left in teaching LLMs to read docs like humans do. LlamaParse remains the best doc-ingestion API for AI agents.
When we say βLiteParse runs everywhere,β we mean it. Our WASM package is lightweight, minimal, and built for browser and edge runtimes, which makes it a perfect fit for @cloudflare Workers. Using WebAssembly, you can spin up a parser that runs directly on the Worker, takes PDF bytes as input, and returns extracted text plus page count (all in under 25 lines of code!)π π©βπ» Try it out now: https://t.co/zDYL0TCYQS ποΈ Get started with LiteParse: https://t.co/9zv8WOkbpS
Last week we revamped Liteparse to be the fastest PDF parser out there β‘οΈ An underrated part of liteparse is it doesn't just give you text. It gives you bounding boxes that a coding agent can use to paint exact audit trails back to the source document. For instance, check out the deep research skill we compiled in liteparse_samples: https://t.co/eoICBmvEnq Come check out liteparse: https://t.co/JNER0mVcB8 We are hard at work making liteparse even better (e.g. Markdown support). Please feel free to open up issues, PRs, and let us know your feature requests π
We've created the world's fastest PDF parser β‘οΈ And it's more accurate than any other open-source, model-free PDF parser out there (pymupdf, pypdf, markitdown, pdftotext, opendataloader, pymupdf4llm) Introducing LiteParse v2 - we rewrote the entire library into Rust and adapte
We're presenting ParseBench at CVPR 2026 today. π¦ Come learn why document understanding is an AGI-complete problem (an agent can't act on a doc it can't correctly read, and reading a real enterprise table is harder than it looks). The first doc-parsing benchmark built for AI agents: 2,000+ human-verified pages 167K+ test rules 5 dimensions: tables, charts, faithfulness, formatting, grounding Fully open source. π Talk TODAY, June 4, 9β10 AM at CVPR. Come say hi π π€ https://t.co/skla84GVTc π» https://t.co/h7SpuTWYVn π https://t.co/VnKcb48oJl
We're presenting ParseBench at CVPR 2026! ParseBench is the most comprehensive document understanding benchmark for VLMs. β It contains 2k pages of real-world enterprise documents β It has comprehensive evaluation metrics around tables, charts, visual grounding, semantic formatting, and content faithfulness The core goal is measuring whether models can semantically interpret a document in the right way, without having models overfit to our precise benchmark. Parsing 100% of PDFs to 100% accuracy is the final boss for document OCR. In general, the latest frontier models have been tuned for coding, math, and scientific reasoning as opposed to precise visual understanding; hope more benchmarks that these will encourage overall progress towards solving this problem! Poster is below. If you want to learn more come check out our site or 30-page ArXiv paper: ParseBench: https://t.co/PWczfhp0OX ArXiv: https://t.co/2dEJIaBBkr
We're presenting ParseBench at CVPR 2026 today. π¦ Come learn why document understanding is an AGI-complete problem (an agent can't act on a doc it can't correctly read, and reading a real enterprise table is harder than it looks). The first doc-parsing benchmark built for AI ag
Most AI pipelines are only as good as the data we provide them with, and that usually means PDFs or other unstructured documents. Contracts, invoices, reports... All have special layout, language, and context mixed together, and getting reliable structured data out of them is still one of the hardest unsolved problems in enterprise AI. Parse-Flow is an open-source project we built to tackle this head-on. It puts four document processing primitives at the center of a visual workflow designer: π Parse β clean markdown and text from raw documents ποΈ Classify β assign documents to user-defined categories βοΈ Split β segment documents into typed chunks πͺ Extract β pull structured JSON against a schema You drag steps onto a canvas, drop in a document, and watch events stream back as the pipeline runs. Under the hood it's powered by a LlamaAgents workflow that walks your flow one step at a time, making every transition observable and every failure a first-class value. ποΈ Full write-up on the architecture here: https://t.co/my2ZT6wGnX π©βπ» Source code: https://t.co/vtuo7vXt9i
The Agent Open: AI's Pickleball Tournament π Come put your code and backhand to the test and embrace the full Open experience. Custom built out courts. Stadium seating. Exhibition matches by AI leaders. Fresh agent merch. Every infra startup you love, all in one place. Brought to you by in collaboration with: @braintrust , @browserbase , @cursor_ai , @modal , @p0 , @turbopuffer Where were you during the first Agent Open? Come make history. SF Edition. π https://t.co/B2rkZC9gMJ
Parsing a document accurately is one thing. Proving where every value came from is another. When a compliance team reviews an AI extraction, or an auditor needs to sign off on a figure pulled from a financial filing, "it came from this document" isn't enough. They need to see exactly where. The specific cell in the table, the exact line on the page, the precise word the agent used. Most parsers can get you to a paragraph or a table block. That's where the trail ends. Today we're shipping Granular Bounding Boxes in LlamaParse β word, line, and cell level coordinates for every value in your document. The result is a complete, verifiable trail from every extracted value back to its exact source in the document. Built for audit workflows, compliance review, and any pipeline where verification isn't optional. Read the full announcement β https://t.co/Me1QFEka8n
Day 0 Anthropic Fable 5 in ParseBench: We tested the model's advancements when it comes to document understanding. The model clearly peaks when it comes to adherence to the original text: π Content faithfulness: 90.02% vs 86.19% (Gemini 3 Flash) and 86.81% (GPT-5.5) π’ Semantic formatting: 72.62% vs 58.35% and 60.12%, a 12+ point lead These are two of the most important metrics for SOTA document understanding: does the output preserve what the document actually says, and does it preserve formatting that carries meaning? But ... it's not a sweep there continues to be a lot of alpha in unlocking document understanding for frontier models. Full results below π
Claude Fable 5 thinks document parsing is beneath it It is absolutely crushing on all reasoning-intensive/long horizon benchmarks: SWE-Bench Pro, FrontierCode, GDPval, Runescape, etc. But for document understanding tasks, it is roughly equivalent with Gemini 3 Flash in performance, at roughly 10-15x the token cost. We benchmarked the model on ParseBench and compared it against all other frontier models. It is definitely up there compared to other frontier models, but falls far short of specialized OCR providers. What we found interesting is that Fable 5 is self-aware about this. When we ask the model what tasks it enjoys the last, it actively said that it dislikes tasks "where the request is fully specified and the answer is fully known" - implying part of it being bad is due to laziness and lack of willingness to actually solve the task at hand. For a full list of results across different frontier models, check out ParseBench! https://t.co/PWczfhp0OX
Day 0 Anthropic Fable 5 in ParseBench: We tested the model's advancements when it comes to document understanding. The model clearly peaks when it comes to adherence to the original text: π Content faithfulness: 90.02% vs 86.19% (Gemini 3 Flash) and 86.81% (GPT-5.5) π’ Semantic f
LiteParse, our open-source/Rust-based doc parser, runs so quickly that Claude Fable 5 doesn't think it's real π₯ It is the fastest document parsing solution on the planet and a great choice for your AI document workloads. Check it out: https://t.co/VfA6yJwzcZ https://t.co/DUjhiF2CTq
LiteParse runs so fast that Claude Fable 5 doesn't think its real https://t.co/6CExW6owiw

As frontier models (e.g. Fable 5) continue to push the task horizon of knowledge work automation, it becomes ever more important for humans to be able to audit decisions back to the source context. It is extremely easy for agents to cite an entire document or document page, but much harder for them to trace back to the exact numbers/words/figures within a page. Today we've launched granular bounding boxes within LlamaParse, which allows you to obtain visual citations of every single word in the document. This allows human users to audit exact words and figures - not just general document regions or entire pages! Come check it out: https://t.co/TqP6OT5U5O
Parsing a document accurately is one thing. Proving where every value came from is another. When a compliance team reviews an AI extraction, or an auditor needs to sign off on a figure pulled from a financial filing, "it came from this document" isn't enough. They need to see
Congrats to the Microsoft AI team on MAI-Thinking-1! There's an art and science to post-training - navigating tradeoffs, grounding the model in what's meaningful to users, crafting a set of tastes and views. It shows in the model. Proud of the work we did together and to see them pushing the frontier. https://t.co/K9NxLO4jsP
Introducing ComplexConstraints β a new IF benchmark designed to test whether models can handle the kinds of constraints that show up in real work: 1. Conditional constraints (fire only when specific conditions are met) 2. Planning constraints (many requirements satisfied simultaneously) 3. Multistep constraints (each step feeds the next) 4. Implicit constraints (a competent colleague would just know). Models currently score between 0% and 40%. Here's an example: imagine you're a film producer drafting next week's shooting schedule. Two actresses are only available Tuesday and Thursday. The exterior scenes need daylight, but the forecast calls for rain on Wednesday. Tom's stunt double doesn't arrive until Friday, and Chris and Sydney don't get along. There are twenty-six interdependent constraints, and missing any one is a failure. What's interesting is also what the data teaches. We trained a Qwen-4B model on 1K ComplexConstraints companion examples. It reached parity with a model 60x its size, and the gains transferred to other IF benchmarks like MultiChallenge and AdvancedIF. Single-turn data even generalized to multi-turn behaviors, because tracking simultaneous requirements without dropping the lower-priority ones is the same skill multi-turn IF tests. Read more! Blog post: https://t.co/Su8UQH5EZd Leaderboard: https://t.co/WdMCiKov7Z
Scott Aaronson on the new AI math breakthroughs: "It seems to me that weβre now over the top of this particular rollercoaster, and it will keep accelerating until we reach the bottom, wherever that might be. I donβt know whether to hope or dread that solutions to P versus NP and all our other great problems will be included in the rideβthat our role, as human mathematicians, will be reduced to (at most) deciding which questions we find interesting and then understanding AI modelsβ answers to those questions. But maybe that wonβt happen. Maybe the new AI mathematicians will soon hit a wall, because they lack the uncomputable quantum gravity microtubules of Penrose and Hameroff, or some other magic human ingredient. The fantastical thing is that, one way or the other, weβre going to find out empirically before very long." I don't think we will "reach the bottom". AI will keep getting better in math, and fast. And unlike Go, where the limit is that the AI already plays an almost perfect game (meaning that there is probably no way mathematically to beat the AI with handicap), there is no upper limit in math ability. So we are heading to interesting times for math, and fast. https://t.co/nlVFm3uCv4
Claude Fable 5 is unusable at this time. How the hell is this prompt a cybersecurity or biology risk?! Almost every prompt I've tried gives me the same error! Whatβs going on Anthropic? https://t.co/osdvLFrMON
@unixpickle confirmed on math and physics. making progress on 50 yo open math problem shows a lot of struggle, but making progress on bleeding edge theoretical physics has been so much easier. https://t.co/fMLvTDPOzL
i was playing with Codex /goal on some lesser-known open conjectures, mostly 20β50y old. after letting it run autonomously for 8h+, i was already seeing what looked like publishable progress, even if not full resolutions. weakly held take: people overrate βopen for decadesβ as a
My second time as a speaker at gstar summit in Vietnam. This time I am honoured to be chilling (I mean sitting) on a panel with colleagues @lmthang and @edchi π. I really enjoyed the vibes and company and meeting new people. π«‘ Events by @lmthang and @newturing have always not only been super impressive in terms of speaker calibre density but also sota in organization and hospitality. π These two days have been a much needed retreat for me and it's been really timely! π Also enjoyed hanging out with @edchi, I wanted to try to get a photo with @lmthang but it was impossible to catch this Vietnamese national hero for a selfie. π

Hanging out with @lmthang and @YiTayML for multiple days in Vietnam and Google Singapore. And great event with @newturing on AI and humanity. Thank you for hosting!! https://t.co/lFg7pqB26a
Badminton battle with Zichen @zzlccc this morning. π We have an AGI badminton club in GDM Singapore. π«‘ Night time RL-ing Gemini, morning time training ourselves. π₯ Ngl, finding a sport to enjoy and keep healthy has been one of the best choices of my life. π https://t.co/IZyElRuuIP
AWS does not even try to simplify things these days. These are their Sonnet 4.5 service quotas. Cross-region model inference vs Global cross-region model inference Super obvious https://t.co/2VqsXGkiKp
Claude Code Skills security skillsππΌ π Bookmark this, you never know when you're going to need them https://t.co/DQqhF0BoTY
This Evolution of the Programmer in 2024β2026 by Steve Yegge is spot on. I myself am somewhere between stage 6-7. https://t.co/GEXKKhVUyX
I love the models Anthropic are offering, but I seriously hope it's a mistake that they're blocking alternative harness providers, like @opencode, from working with their subscriptions. Seems very customer hostile. https://t.co/afxEQ0XTFb