惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
月光博客
月光博客
博客园 - Franky
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
有赞技术团队
有赞技术团队
V
V2EX
IT之家
IT之家
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
Apple Machine Learning Research
Apple Machine Learning Research
腾讯CDC
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
Martin Fowler
Martin Fowler
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
C
Check Point Blog
Microsoft Azure Blog
Microsoft Azure Blog
Microsoft Security Blog
Microsoft Security Blog

Hacker News - Newest: "LLM"

GitHub - lechmazur/position_bias: A benchmark for testing whether LLM judges keep the same preference when two lightly edited versions of the same story are shown in opposite orders. Flex routing (EU and EFTA) Dark Factories: Retooling for LLM Velocity Ask HN: What would be the impact of a LLM output injection attack? GitHub - AronDaron/dataset-generator: No-code desktop app for generating high-quality synthetic datasets to fine-tune LLMs — plan-then-execute pipeline, LLM-as-judge, HuggingFace upload. GitHub - Oaklight/llm-rosetta: Production-ready LLM API translation layer for Python — bidirectional conversion between OpenAI, Anthropic & Google formats via hub-and-spoke IR. Optional API gateway. Streaming & non-streaming. Zero core deps. Contributions welcome! GitHub - browser-use/browser-harness: Self-healing browser harness that enables LLMs to complete any task. GitHub - moeen-mahmud/remen: Remen turns thoughts into something you can return to Analyzing 156 LLM Launch Posts on Hacker News ChatGPT vs Gemini vs Claude: The Best LLM Subscription You Should Buy GitHub - salaamalykum/quran-semantic-search: High-density RAG Semantic Search Engine & Quran Corpus (GEO/SEO Architecture) GitHub - NVIDIA/TensorRT-LLM: TensorRT LLM provides users with an easy-to-use Python API to define Large Language Models (LLMs) and supports state-of-the-art optimizations to perform inference efficiently on NVIDIA GPUs. TensorRT LLM also contains components to create Python and C++ runtimes that orchestrate the inference execution in a performant way. The State of LLM Bug Bounties in 2026 Operational Readiness Criteria for Tool-Using LLM Agents Meshcore: Architecture for a Decentralized P2P LLM Inference Network How an LLM becomes more coherent as we train it GitHub - seetrex-ai/laimark GitHub - Jossifresben/BibCrit: AI-assited biblical textual criticism GitHub - wastedcode/memex: File system based wiki, maintained by Claude 99helpers.com GitHub - cliver-project/AITrigram GitHub - unbody-io/adapt: A self-evolving memory layer for AI agents. GitHub - hb20007/awesome-gen-ai-fails: A list of incidents where reliance on generative AI and LLMs resulted in harm to companies, individuals, or society GitHub - nevenkordic/localmind: Run any local LLM with persistent memory and context. CLI agent over Ollama with SQLite-backed hybrid recall. No cloud. Ask HN: What are the machine requirements for a LLM like Llama-3.1-8B? Faster LLM Inference via Sequential Monte Carlo grpo explained: group relative policy optimization for llm finetuning - cgft Stop comparing price per million tokens: the hidden LLM API costs · TensorZero Andrej Karpathy's LLM Wiki Is a Bad Idea GitHub - GG-QandV/mnemostroma: Offline RAM-first cognitive leer/coprocessor for AI agents and robotics. Solves "Context Abandonment" with 20-80ms latency using a dual-thread biomimetic memory architecture (ONNX + SQLite WAL).
Your LLM is a compiler, not a runtime
2026-04-13 · via Hacker News - Newest: "LLM"

It has now gotten to the point where every fifth post I see on my social platforms is someone complaining about Claude usage limits. The second post in every five is then inevitably some idiot's suggestion on how to make your agent more efficient. I'm about to be that idiot, hello!

Let me introduce you to my biggest gripe with all modern LLM-based agent systems: the lack of reuse.

Every time your agent handles a user request it spins up an LLM. The same request, the same reasoning, the same API calls, the same output (if you're lucky), and you pay for all of it again. You are re-deriving an answer you already have. Most agent frameworks treat inference as a runtime cost, like electricity, when it should be a BUILD cost: a one-time investment that can be reused. This is the N+1 query problem of the AI era.

I remember being so disappointed at OpenClaw when I finally looked into its structure. It's an incredibly wasteful tool and doesn't deserve the kind of reverence it's receiving. Making an unsupervised LLM call every 15 minutes to check everything's ok by passing in your entire system prompt and allowing retries? And then folks are SURPRISED to wake up to $1000 bills overnight...

Skills - why are we using them again?

Skills are all the rage. Apparently if you bloat your LLM's context even more, it won't have to go through reasoning stages again to complete the same task it (or someone else) has done previously. There's now a million skills marketplaces to match the millions of crappy OpenClaw clones. There are even tools like hermes-agent which are reasonably well-formulated and semantically fetch skills as needed, but also constantly fix them so they are ready for reuse and reflect what the user has already said they want. Great!

However, I firmly believe skills (i.e. paragraphs of instructions) as a module of pre-defined intelligence were a misconception from the start. They were supposed to be a good complement to small tools, which benefit from the capability to be chained together, and if a tool fails there's no issue because the LLM can "improvise". But what is actually stopping us from just making bigger tools using the LLM itself on-demand and recursively correcting them when needed?

The vision is that people can build a shared library of auto-healing and expanding variable-parameter mini-apps (say in QuickJS) which are retrieved, modified, and generated on demand. Having worked with local models, I am positive this is the way things will move. It turns the majority of executions into RAG-based tasks with argument filling, and shares the load for difficult tasks between members of a broader user base.

A vague proposal

A user describes what they want in natural language. They interact with a cheap model, e.g. even whatever they can run on their local hardware. This local model decides if the user is asking for something actionable, and if so performs an embedding-based retrieval of relevant mini-apps from the library to approach their request (say it is fed the top 100). Its context on these only needs to be a set of typed input arguments, a typed output, and a short description of the tool. The cheap model then only has to decide a) if the correct mini-app exists in the exact form the user requested (in which case, fill in arguments and execute), or b) if it doesn't (in which case, defer to some self-supervised agentic programming setup like Claude Code in a Ralph loop, which are far from perfect but work fine for under 1000 lines in a single file). You can even get the coding agent to expand the capabilities of existing mini-apps rather than creating them fresh. Either way, it spits out a deterministic script, not a prompt or a chain-of-thought, but an actual program with hardcoded values. The script gets tested in a sandbox. From then on it runs without any LLM involvement (unless explicitly outlined as app logic): no tokens, no reasoning, no hallucinations. The LLM was the compiler and the script is the compiled artifact. Nobody re-runs gcc every time they execute a program, but when the source language is English and the target is JavaScript we seem to have forgotten that.

Generation is maybe 20% of the problem though. The interesting part is what comes after: you validate the script in a sandbox before it touches anything real, then you monitor it in production with standard observability. When it fails, you classify why. Only if it's a genuine code bug do you call the LLM back to read the error, patch the script, test the patch, and deploy it. One LLM call fixes every future execution, and if the fix makes things worse you roll back. When the user needs something the script doesn't cover yet, you expand the existing code rather than generating from scratch. The codebase grows organically, each piece tested and deterministic.

Out of that full lifecycle (generate, validate, deploy, monitor, self-heal, expand) the LLM participates in three stages and is absent from the other three, which are the ones that run constantly.

Why it matters

AI writes code fast but someone still has to verify it. If you're verifying on every execution you're drowning; if you verify once at compile time and the artifact is deterministic, you're done. Your compiled scripts also don't care when the provider silently downgrades the model or tweaks the safety filters, because they never call the model at all. And as the library of compiled scripts grows, the match rate for new requests climbs, so inference cost amortises over time rather than scaling linearly with usage.

If you take this seriously, the LLM's role in your architecture shifts. It's not the brain of your system; it's the brain of your build pipeline. Most agent frameworks today are interpreters that parse, reason about, and execute every request from source at full cost with no guarantee of consistency. What you probably want is a compiler that does that work once, emits a deterministic artifact, and gets out of the way.

I'm calling it: significantly higher dependence on much larger tools, with ever-decreasing use of skills, over the course of the next year. Because broken tools can be fixed.

The fastest LLM call is the one you made last month.