Can anyone share their experience on how a local LLM helps them in building software?
Posted by National-Fold-2375@reddit | LocalLLaMA | View on Reddit | 4 comments
* How large is your codebase/repository?
* How much VRAM do you have and what model do you use and how large is your context window?
Western_Courage_6563@reddit
Did quick write up a while ago..
https://www.reddit.com/r/ollama/s/kbqQ0TfQWu
Dontdoitagain69@reddit
Pick the right design pattern up front and begin by creating unit tests that describe the exact behavior of the classes you plan to implement. Do not let AI design your architecture. Work in small, modular components, write the implementation for each part, and run your full test suite continuously. Once all unit tests pass and the structure is stable, AI can assist with integration tests—but never earlier.
Maintain a strict, explicit prompt file that documents every detail of your project’s architecture, rules, naming conventions, boundaries, and design principles. AI should never generate or modify core implementations without your explicit approval.
Also ask your model to give you prompts that makes it more effective, all models think on different levels.
arousedsquirel@reddit
I want to add, instruct your cli/ide to document every step it takes to create, enhance or modify for traceability, instruct a fail-safe procedure (back-up) to revert if things go wrong.
Dontdoitagain69@reddit
You can git push frequently with detailed implementation comments