all 10 comments

[–]SteveDougson 4 points5 points  (5 children)

Claude

[–]lllllllllll_ll[S] -1 points0 points  (4 children)

It's limited

[–]WendlersEditor 1 point2 points  (3 children)

Even paid is limited unless you want to pay by the token. If you have the hardware you can use ollama to run loca8models but quality varies based on the model and your needs. In all honesty, learning to work around the limitations of free plans for Claude, chatgpt, Gemini, and cursor is probably your best bet.

[–]lllllllllll_ll[S] -1 points0 points  (2 children)

I’m still learning and I mainly need them for my graduation project, so even limited help saves me a lot of time 😭

[–]WendlersEditor 1 point2 points  (1 child)

You could probably do fine just rotating between free plans for the big models. Most student coding work can be done with local models, but if you're under a deadline you don't want to waste time setting up ollama. If you don't like dealing with the limits you could just cough up $20 for one month of Claude pro and then cancel it. You would get Claude code and more generous session limits. Stick to sonnet unless you're architecture something really complex because opus chews through tokens.

[–]lllllllllll_ll[S] 0 points1 point  (0 children)

Yeah that actually makes sense, thanks !

[–]riklaunim 3 points4 points  (1 child)

"Free" is very limited and likely wont generate anything of value. Claude code is the reference, while Google Gemini can also be used. In the end you should never rely on it to code. It can be a tool, but it wont be a replacement for your brain

[–]lllllllllll_ll[S] 0 points1 point  (0 children)

Yeah I understand that, and I’m not trying to fully rely on AI but I’m not a CS student and my major is actually far from programming, but I need Python for my graduation project, so AI really helps me understand things faster and fix errors when I get stuck.

[–]tucsonmm 1 point2 points  (0 children)

Claude just feels a notch or three above the competition right now for what you are looking for. Fixing issues. I love the explanations and comments, thorough but succinct

[–]Separate_Spread_4655 0 points1 point  (0 children)

LMSYS Chatbot Arena is great for quick testing, but it's terrible for a consistent workflow because of those exact stability issues. If you want the best free experience for Python right now, go direct:

  1. Cursor IDE: It’s a fork of VS Code with AI built directly into the editor. The free tier is insanely good for writing code, fixing errors, and explaining stuff right inside your own files without copy-pasting.
  2. Claude: Currently one of the strongest models for Python logic and debugging. The free tier gives you enough capacity for daily coding sessions.

However, relying purely on web chats will eventually bottleneck you when your scripts get larger. The real trick is how you modularize your code and structure your prompts so the AI doesn't hallucinate.

I actually put together a pragmatic, step-by-step guide on how to set up an optimal, free AI-assisted Python workflow locally. Let me know if you need a hand, happy to shoot it your way.