Comment by alluro2

Comment by alluro2 3 days ago

4 replies

Absolutely, very often. It typically happens because it's trying to do more than you asked for.

Example scenario: you have a codebase that you iterated on with LLM, and it contains let's say 15 features with various implementation details. You continue tomorrow and want to make a small change to handle an edge-case. While making changes to one of the 3 required files, suddenly it will decide to also rewrite / "improve" other parts of the code that have nothing to do with your request, where pieces of previous logic will no longer exist - since it made 18 changes to the file, and there are 3 such files, good luck spotting it without thorough and detailed change review.

Also, if you made manual changes to generated code and than you ask it to add something to the code (within the same "conversation" / context, it will often replace your changes with how it originally wanted code to look like.

johnisgood 2 days ago

I experienced this, too. It is quite annoying. You have to explicitly tell the LLM to leave everything else as-is.

shostack 2 days ago

Do things like Cline's memory bank solve this?