Earlier quoted context omitted.
What is the catch?
> Beta technology disclaimer > Rovo Dev in the CLI is a beta product under active development. We can only support a certain number of users without affecting the top-notch quality and user experience we are known for providing. Once we reach this limit, we will create a waiting list and continue to onboard users as we increase capacity. This product is available for free while in beta. From https://community.atlassi…
How I code with AI on a budget/free
181–190 of 251 posts
Re: How I code with AI on a budget/free
#182As of today, what is the best local model that can be run on a system with 32gb of ram and 24gb of vram?
Re: How I code with AI on a budget/free
#183Re: How I code with AI on a budget/free
#184Re: How I code with AI on a budget/free
#185Just use Amazon Q Dev for free which will cover every single area that you need in every context that you need (IDE, CLI, etc.).
Re: How I code with AI on a budget/free
#186Maybe optimistic, but reading posts like this makes me hopeful that AI-assisted coding will drive people to design more modular and sanely organized code, to reduce the amount of context required for each task. Sadly pretty much all code I have worked with have been giant messes of everything being connected to everything else, causing the entire project to be potential context for anything.
Re: How I code with AI on a budget/free
#187If you're looking for free API access, Google offers access to Gemini for free, including for gemini-2.5-pro with thinking turned on. The limit is... quite high, as I'm running some benchmarking and haven't hit the limit yet. Open weight models like DeepSeek R1 and GPT-OSS are also made available with free API access from various inference providers and hardware manufacturers.
I'm assuming it isn't sensitive for your purposes, but note that Google will train on these interactions, but not if you pay.
Re: How I code with AI on a budget/free
#188Glad to see I'm not the only one who prefers to work like that. I don't need many different models though, the free version of Gemini 2.5 Pro is usually enough for me. Especially the 1.000.000 token context length is really useful. I can just keep dumping full code merges in.
I'll have a look at the alternatives mentioned though. Some questions just seem to throw certain models into logic loops.
Re: How I code with AI on a budget/free
#189Re: How I code with AI on a budget/free
#190Maybe optimistic, but reading posts like this makes me hopeful that AI-assisted coding will drive people to design more modular and sanely organized code, to reduce the amount of context required for each task. Sadly pretty much all code I have worked with have been giant messes of everything being connected to everything else, causing the entire project to be potential context for anything.
It's really very good at that. Frequently, I'll have something I've been working on over the years that has turned into an interconnected mess. "Split this code into modules of separated concerns". Bam, done. I used Claude for the first time last week and gave it a 2k line PowerShell script and it neatly pulled it apart into 5 working modules on the first try. Worked exactly the same, and ended up with better comment…
I always end up with a vastly smaller code base. Like 2000 lines turns into 800 lines or something like that.
Did that happen too or did the AI just do a glorified 'extract method', that any decent IDE can already do without AI?
I use AI, I'm not anti it, but on the other hand I keep seeing these gushing posts where I'm like 'but your ide could already do that, just click the quick refactoring button'.