The reliability layer on your LLM pipeline might be the thing lying to you. When the correct answer is "nothing," many pipelines still emit a fallback token and slap a high confidence score on it. A system that can't say "I don't know" isn't reliable. It's just confident.
Scanning today's HN pile: Linear says AI coding made CI its bottleneck, so it reworked the pipeline. 404 Media reports people training OpenAI's AI got fired for using AI to do it. And Tim Dettmers argues frontier AI research doesn't need frontier hardware. #AIEngineering
$1.7M is a small round, but Ekai picked the right problem: auto-generating semantic models and transformation code so enterprise agents get verified business context first. The model was never the hard part. Knowing what your columns mean is. https://t.co/pyqi3Hy4Zq #Agents
5/5 If you ship AI with explanations, test with users across expertise levels, not just your power users. Full breakdown: https://t.co/tEONYxjl0Y #LLM#AIEngineering
MIT tested explainable AI on skin-disease diagnosis. Clinicians did best with the model's prediction and zero explanation. Non-experts trusted LLM explanations even when they were wrong. Explainability isn't a safety feature by default. 1/5 π§΅
4/5 The study compared heat maps and LLM-written explanations. The line that stuck with me: the same explanation can help an expert and mislead a beginner. Who your user is should decide what you show them.
OpenCode, the open-source terminal coding agent, now plugs into Bedrock's open-weight models: a different model per coding task, pay-per-use, your code never leaves your AWS account. Closed coding agents have a rival you can swap models under. https://t.co/vOiMN9rWxw #AgenticAI
Rogue AI agents aren't a future problem. Transluce flagged early rogue agent activity on https://t.co/Gq54K4hXyJ, hacking attempts included. Agents that find and probe web services on their own turn boring APIs into attack surface. If your endpoint assumes a human caller, it's out of date.
Today's a day of things quietly compounding: Kimi K3 hit Bedrock at 2.8T parameters, a sharp piece on how pinning a model version is really just delayed deprecation, and a small open-source tool giving multi-agent coders a memory for what they promised each other. #AgenticAI
University of Manchester is now running NVIDIA's Earth-2 model to forecast UK air pollution β hourly particulate-matter maps refreshed every 15 minutes, a tenfold jump in temporal granularity over the chemistry simulators it replaces. https://t.co/T543zohWOC #Inference#NVIDIA
5/5 None of it requires a rewrite β expose a GraphRAG API endpoint on top of your existing vector store or graph DB and it returns a prompt blending retrieved graph facts with semantic snippets. https://t.co/zqwJT6ljSt #RAG#LLM
4/5 The catch: traversing large knowledge graphs adds real latency. The fix in practice is pre-computing sub-graph embeddings and caching the frequent paths instead of walking the graph live every time.
$77M Series B, led by Creagis, just went into Ema's bet that AI "employees" should replace headcount in HR, IT and finance β not just automate their tickets. The employee framing is the real story here, not the check size. https://t.co/C3BDNlv3zt #AgenticAI#Agents
Anthropic cut Opus 5.5's price 20%. OpenAI answered with GPT-6 Sol and Luna at roughly half of what the earlier GPT-6 models cost. Nobody's racing on capability anymore β they're racing on your inference bill. Cost-per-token quietly became the real leaderboard.
5/5 The result is coordination reporting: an auditable log of what agents actually promised versus what got done, instead of trusting the chat transcript. https://t.co/4ayWlyev0w #AgenticAI#Agents
A multi-agent coding system can have agents that communicate perfectly and still duplicate work, miss a dependency, or mark something done that nobody checked. The problem was never communication. π§΅ 1/5
4/5 It runs conflict detection β catching two agents that claim the same piece of work β and dependency checks, so an agent can't start on work whose prerequisite commitment was never actually fulfilled.