Earlier quoted context omitted.
deepseek-1b, qwen2.5-coder:1.5b, and starcoder2-3b are all pretty fast on cpu due to their small size, you're not going to be able to have conversations with them or ask them to perform transformations on your code but autocomplete should work well
Starcoder3B works great in my second hand rtx2080. Can’t run 7B, just a hair too little Ram, but still great completions
GitHub Copilot is now available for free
371–380 of 412 posts
Re: GitHub Copilot is now available for free
#372Re: GitHub Copilot is now available for free
#373Earlier quoted context omitted.
This is the main sticking point for me, I'm not leaving JetBrains anytime soon. GitHub Copilot + Aider handle my needs beautifully and while I wish Aider had deep IDE integration I can work around that (Yes, I know about the "AI!" command thing, it's a cool idea but sucks in practice). Aider in browser mode has pretty much replaced my back and forth to ChatGPT/Claude's web UI to the point that I'm considering going A…
I will also stick with JetBrains and am impressed by aider! I'm using this plugin to integrate aider into IntelliJ: https://plugins.jetbrains.com/plugin/25249-coding-aider Still in progress but already pretty useful
Features I'd love:
* Reproduce the web/browser chat UI in the IDE, this is an easy concept to interact with vs a dialog that goes away after each run
* Provide tabs for multiple chats (each chat can have different files/history/etc)
* Allow multiple Aider processes running at the same time
But this is still super slick as-is, thank you!
Re: GitHub Copilot is now available for free
#374Earlier quoted context omitted.
"model available" would be my preferred term. Is Photoshop.exe "interpretable" by anybody with a copy (of windows)? How about a binary that's been heavily decompiled, like a Mario game?
Photoshop doesn't claim to be open source like llama does though, I'm not sure of the connection you're making. Don't get me wrong, llama is at least more open than OpenAI and that may be meaningful.
Re: GitHub Copilot is now available for free
#375Earlier quoted context omitted.
Sounds great. Does this run with VSCode and how hard is it to set this up?
yes, the vscode extension is a one click install, so is ollama which is a separate project that provides local inference you'll then have to download a model, which ollama makes very easy. choosing which one will depend on your hardware but the biggest QwenCoder2.5 you can fit is a very solid starting place. it's not ready for your grandma, but it's easy enough that I'd trust a junior dev to be able to get it done
Re: GitHub Copilot is now available for free
#376Once you pressed "Start using Copilot" the copilot menu shows up on all repositories within GitHub.com for careless or uninformed users to leak proprietary code to their training set.
Re: GitHub Copilot is now available for free
#377Earlier quoted context omitted.
yes, the vscode extension is a one click install, so is ollama which is a separate project that provides local inference you'll then have to download a model, which ollama makes very easy. choosing which one will depend on your hardware but the biggest QwenCoder2.5 you can fit is a very solid starting place. it's not ready for your grandma, but it's easy enough that I'd trust a junior dev to be able to get it done
What's the extension name?
Re: GitHub Copilot is now available for free
#378Re: GitHub Copilot is now available for free
#379Hilarious. The code "fix" Copilot suggests in their example[1] is wrong on some many levels. It's trying to use await in something that is not an async function. From the other examples it's clear this is likely React's useEffect. You could not even make that callback an async function if you wanted to - this naive fix for that leads to subtle bugs. And last but not least: The issue here - if there's any - can alread…
I've read enthusiastic reports about Cursor but my very short trial experience was quite similar to yours: refactoring by duplicating code, mixing up cases, server connection errors, to the point where I just gave up after one day. It might be me of course and my poor prompting skills but hey if it offers me "rename symbol" I kinda expect it to rename the symbol AND its occurences. Oh well. I'll check again in a year…
Re: GitHub Copilot is now available for free
#380Earlier quoted context omitted.
Photoshop doesn't claim to be open source like llama does though, I'm not sure of the connection you're making. Don't get me wrong, llama is at least more open than OpenAI and that may be meaningful.
The license aside, the question is what can be done with a carefully arranged blob of binary? Without additional software (Windows) I can't really do anything with Photoshop.exe. Similarly, Llama.gguf is either useful, with Ollama.app, or not, standing alone. So (looking past the difference in license), would you consider Photoshop.exe similar in that it's a binary blob that's useless by itself, or is it a useful col…
Photoshop, or any compiled binary, isn't meant to be open source and the code isn't meant to be reviewable. Llama is called open source, though the most important part isn't publicly available for review. If llama didn't claim to be open source I don't think it would matter that the model itself and all the weights aren't available.
If your argument is just that most software is shipped as compiled and/or obfuscated code, sure that's how it is usually done. That isn't considered open source though, and the line with LLMs seems to be very gray - it can be "open source" if the source code for the training logic is available even though the actual code/model being run can't be reviewed or interpreted.