|
|
|
|
|
by theshrike79
263 days ago
|
|
I've had every single LLM I tried (Opus, Sonnet, GPT-5-(codex) and Grok light) all tell me that Go embeds[0] support relative paths UPWARDS in the tree. They all have a very specific misunderstanding. Go embeds _do_ support relative paths like: //go:embed files/hello.txt But they DO NOT support any paths with ".." in it //go:embed ../files/hello.txt is not correct. All confidently claimed that .. is correct and will work and tried to make it work multipled different ways until I pointed each to the documentation. [0] https://pkg.go.dev/embed |
|
I can’t remember the example but there was another frequent hallucination that people were submitting bug reports that it wasn’t working, so the project looked at it and realized well actually that kinda would make sense and maybe our tool should work like that, and changed the code to work just like the LLM hallucination expected!
Also in general remember human developers hallucinate ALL THE TIME and then realize it or check documentation. So my point is I feel hallucinations are not particularly important or bother me as much as flawed reasoning.