▲ | simonw 6 days ago | ||||||||||||||||||||||||||||||||||
Because LLMs aren't human beings. I wrote a note about that here: https://simonwillison.net/2025/Mar/11/using-llms-for-code/#s... > Don’t fall into the trap of anthropomorphizing LLMs and assuming that failures which would discredit a human should discredit the machine in the same way. | |||||||||||||||||||||||||||||||||||
▲ | jpc0 6 days ago | parent | next [-] | ||||||||||||||||||||||||||||||||||
> And yeah, their confidence is frustrating. Treat them like an over-confident twenty-something intern who doesn't like to admit when they get stuff wrong. I was explicitly calling out this comment, that intern would get fired if when explicitly called out they not only don’t want to admit they are wrong but vehemently disagree. The interaction was “Implement X”, it gave an implementation, I responded “function y does not exist use a different method”, it instead of following that instruction gave me a link to the documentation for the library that it claim’s contains that function and told me I am wrong. I said the documentation it linked does not contain that function and to do something different and yet it still refused to follow instructions and pushed back. At that point I “fired” it and wrote the code myself. | |||||||||||||||||||||||||||||||||||
▲ | jpc0 6 days ago | parent | prev [-] | ||||||||||||||||||||||||||||||||||
> Or the simpler version of the above: LLM writes code. You try and compile it. You get an error message and you paste that back into the LLM and let it have another go. That's been the main way I've worked with LLMs for almost three years now. I’m going to comment here about this but it’s a follow on to the other comment, this is exactly the workflow I was following. I had given it the compiler error and it blamed an environment issue, I confirmed the environment is as it claims it should be, it linked to documentation that doesn’t state what it claims is stated. In a coding agent this would have been an endless feedback loop that eats millions of tokens. This is the reason why I do not use coding agents, I can catch hallucinations and stop the feedback loop from ever happening in the first place without needing to watch an AI agent try to convince itself that it is correct and the compiler must be wrong. | |||||||||||||||||||||||||||||||||||
|