Am I the only one that doesn’t see the hype with Claude? I recently tried it, hit the usage limit, read around found tons of blogs and posts from devs saying Claude is the best code assistant LLM… so I purchased Claude pro… and I hate it. I have been asking it surface level questions about Apache spark (configuring the number of tasks retries, errors, error handling, etc.) and it hallucinated so much, so frequently.…
My LLM codegen workflow
101–110 of 168 posts
Re: My LLM codegen workflow
#102Re: My LLM codegen workflow
#103Absolutely LLMs are great for greenfield projects. They can get you to a prototype for a new idea faster than any tool yet invented. Where they start to break down, I find, is when you ask it to make changes/refactors to existing code and mature projects. They usually lack context, so they doesn't hesitate to introduce lots of extra complexity, add frameworks you don't need, and in general just make the situation wor…
Re: My LLM codegen workflow
#104Re: My LLM codegen workflow
#105Something I quickly learned while retooling this past week is that it’s preferable not to add opinionated frameworks to the project as they increase the size of the context the model should be aware of. This context will also not likely be available in the training data. For example, rather than using Plasmo for its browser extension boilerplate and packaging utilities, I’ve chosen to ask the LLM to setup all of that…
Re: My LLM codegen workflow
#106Absolutely LLMs are great for greenfield projects. They can get you to a prototype for a new idea faster than any tool yet invented. Where they start to break down, I find, is when you ask it to make changes/refactors to existing code and mature projects. They usually lack context, so they doesn't hesitate to introduce lots of extra complexity, add frameworks you don't need, and in general just make the situation wor…
You can use LLMs and actually understand your code.
These are big legacy projects where I didn’t write the code to begin with, so having an AI partner would have been really nice.
Re: My LLM codegen workflow
#107Re: My LLM codegen workflow
#108This is all fine for a solo dev, but how does this work with a team / squad, working on the same code base? Having 7 different instances of an LLM analyzing the same code base and making suggestions would not just be economically wasteful, it would also be unpractical or even dangerous? Outside of RAG, which is a different thing, are there products that somehow "centralize" the context for a team, where all questions…
I've started substituting "human" for "LLM" when I read posts like these. Is having 7 different humans analyzing the same code base any less wasteful?
Re: My LLM codegen workflow
#109One more tool he could make is one to wrap that entire process so there is less copy/pasting needed.
Re: My LLM codegen workflow
#110This is a great article -- I really appreciate the author giving specific examples. I have never heard of mise ( https://mise.jdx.dev/ ) before either, and the integration with the saved prompts is a nifty idea -- excited to try it out!