HN user

gronky_

1,011 karma
Posts43
Comments34
View on HN
nanoclaw.dev 4mo ago

Don't trust AI agents

gronky_
344pts196
cdn.openai.com 8mo ago

Early science acceleration experiments with GPT-5 [pdf]

gronky_
5pts1
simonwillison.net 11mo ago

GPT-5 has a hidden system prompt

gronky_
9pts2
github.com 1y ago

OpenAI Testing Agent Demo

gronky_
5pts0
thundergolfer.com 1y ago

The First LLM

gronky_
16pts1
openai.github.io 1y ago

OpenAI adds MCP support to Agents SDK

gronky_
807pts267
openai.com 1y ago

Security on the Path to AGI

gronky_
1pts0
twitter.com 1y ago

OpenAI Is Adopting MCP

gronky_
7pts2
www.technologyreview.com 1y ago

A new quest to save the "doomsday glacier"

gronky_
2pts0
simonwillison.net 1y ago

Calling a Wrap on My Weeknotes

gronky_
2pts0
www.qodo.ai 1y ago

Building Agentic Flows with LangGraph and Model Context Protocol

gronky_
18pts1
platform.openai.com 1y ago

Reasoning Best Practices

gronky_
2pts0
joshuagans.substack.com 1y ago

What will AI do to (p)research?

gronky_
2pts0
www.nature.com 1y ago

Mitochondrial swap from cancer to immune cells thwarts anti-tumour defences

gronky_
5pts0
www.technologyreview.com 1y ago

The biggest AI flops of 2024

gronky_
15pts6
old.reddit.com 1y ago

Claude 3.5 helped me fight off a $10k rental car damage claim – and won

gronky_
6pts0
arxiv.org 1y ago

LLMs as Method Actors: A Model for Prompt Engineering and Architecture

gronky_
2pts1
thenewstack.io 1y ago

Rediscover the Joy of Early Web Development with XSLT

gronky_
2pts1
www.ft.com 1y ago

The mind-bending new science of measuring time

gronky_
14pts3
github.com 1y ago

This Pull Request was generated automatically using cover-agent

gronky_
32pts21
techcrunch.com 1y ago

Anysphere acquires Supermaven to beef up Cursor

gronky_
3pts0
techcrunch.com 1y ago

Standing desks don't do squat, per new study

gronky_
7pts0
www.infoq.com 1y ago

Securing Cell-Based Architecture in Modern Applications

gronky_
1pts0
medium.com 1y ago

Riverbed Data Hydration

gronky_
1pts0
engineering.fb.com 1y ago

Simulator-based reinforcement learning for data center cooling optimization

gronky_
1pts0
netflixtechblog.com 1y ago

Evolving Netflix's WebSocket Proxy

gronky_
2pts0
www.canva.dev 1y ago

Adding Responsiveness to Canva's Design System

gronky_
2pts0
newsletter.pragmaticengineer.com 1y ago

How Anthropic Built Artifacts

gronky_
1pts0
www.infoq.com 1y ago

Meta engineer on shipping Threads in 5 months

gronky_
3pts0
www.codium.ai 2y ago

We created the first open source implementation of Meta's TestGen–LLM

gronky_
142pts39

Keep in mind that this isn’t about users - the top agents on the leaderboard aren’t running an actual product on the benchmark.

If they are running their production product as is, then of course whatever is built into the product is fine.

I’ve been running a bunch of coding agents on benchmarks recently as part of consulting, and this is actually much more impressive than it seems at first glance.

71.2% puts it at 5th, which is 4 points below the leader (four points is a lot) and just over 1% lower than Anthropic’s own submission for Claude Sonnet 4 - the same model these guys are running.

But the top rated submissions aren’t running production products. They generally have extensive scaffolding or harnesses that were built *specifically for SWE bench*, which kind of defeats the whole purpose of the benchmark.

Take for example Refact which is at #2 with 74.4%, they built a 2k lines of code framework around their agent specifically for SWE bench (https://github.com/smallcloudai/refact-bench/). It’s pretty elaborate, orchestrating multiple agents, with a debug agent that kicks in if the main agent fails. The debug agent analyzes the failure and gives insights to the main agent which tries again, so it’s effectively multiple attempts per problem.

If the results can be reproduced “out-of-the-box” with their coding agent like they claim, it puts it up there as one of the top 2-3 CLI agents available right now.

I see it a bit differently - LLMs are an incredible innovation but it’s hard to do anything useful with them without the right wrapper.

A good wrapper has deep domain knowledge baked into it, combined with automation and expert use of the LLM.

It maybe isn’t super innovative but it’s a bit of an art form and unlocks the utility of the underlying LLM

Stating that Israel doesn’t have a right to exist has been recognized to be an antisemitic statement by many prominent institutions.

It’s a radical statement that effectively denies the rights of millions of people to exist and is especially problematic given the historical context of the establishment of Israel.

The statement gets thrown around so much in certain circles that it’s gotten normalized. You’ve apparently lost sight of or never stopped to think what actually means, to the point where you’re providing it as an example of an innocent statement that got you banned for no reason. Taking this statement out of radical activist circles and into the real world won’t go well.

Take some time to educate yourself and reflect on what it actually means.

I just tried the demo on the homepage and I don’t know what kind of sorcery this is but it’s blowing my mind.

I input a bunch of completely made up words (Quastral Syncing, Zarnix Meshing, HIBAX, Bilxer) and used them in a sentence and the model zero-shotted perfect speech recognition!

It’s so counterintuitive for me that this would work. I would have bet that you have to provide at least one audio sample in order for the model to recognize a word it was never trained on.

Providing it to the model in text modality and it being able to recognize it in the audio modality must be an emergent property.

I think the same can be said about AI-assisted writing…

I like the ideas presented in the post but it’s too long and highly repetitive.

AI will happily expand a few information dense bullet points into a lengthy essay. But the real work of a strong writer is distilling complex ideas into few words.

I think these tests are useful as regression tests - unit tests can be really helpful when making changes down the line, tipping you off that you missed something. Also much easier to refactor when there’s good test coverage.

From the PR: unit tests: what are they good for?

Answer: Personal opinion - writing unit testing is not fun. It becomes even less appealing as your codebase grows and maintaining tests becomes a time-consuming chore.

However, the benefits of comprehensive unit tests are real:

Reliability: They create a more reliable codebase where developers can make changes confidently

Speed: Teams can move quickly without fear of breaking existing functionality

Safe Refactoring: Code improvements and restructuring become significantly safer when backed by thorough tests

Living Documentation: Tests serve as clear documentation of your code's behavior:

They show exactly what happens for each input They present changes in a human-readable format: "for this input → expect this output" They run quickly and are easy to execute This immediate feedback loop is beneficial during development

I tried generating the same test with all 5 models in Qodo Gen.

o1 is very slow - like, you can go get a coffee while it generates a single test (if it doesn’t time out in middle).

o1-mini thought worked really well. It generated a good test and wasn’t noticeably slower than the other models.

My feeling is that o1-mini will end up being more useful for coding than o1, except for maybe some specific instances where you need very deep analysis

From my understanding faster-whisper optimizes the inference without changing the model itself. Here they seem to be changing the model architecture but not applying other optimizations.

50% on its own doesn’t make this the current best choice for production. But I imagine this could become the new base model that all of the inference optimizations are applied to.

Wonder if it’s plug and play or if faster-whisper and others would need to reimplement from scratch?

I think you may have misunderstood the figures.

Based on my understanding, only 1:20 passed the automated acceptance criteria (build, run, pass, increase coverage). Of those that made it through to the human review, “over 50% of the diffs submitted were accepted by developers” according to the paper

Yes, that’s definitely the main reason. It’s called “burying the lede”.

Saving $6M is key information that makes this story interesting. It’s buried all the way at the bottom of the first blog and is completely missing from the second blog which focuses specifically on the migration