Please don't use this tool. - it is a massive intellectual property risk

  • 🔧 Site instability resolved. You can report double-posts and broken attachments. For bigger issues, use the Technical Grievances thread.
    🇵🇦 Nuestro primer dominio localizado está en español en kiwifarms.pa. Our first localized domain is on Spanish on kiwifarms.pa.
  • Want to keep track of this thread?
    Accounts can bookmark posts, watch threads for updates, and jump back to where you stopped reading.
    Create account

ArgonianVoter

kiwifarms.net
Registrado
24 de Feb, 2025
1770071123853.png

the second you connect this to github you have just given openAi the right/permission to scrape all of your repos (probably private as well as public) for training data. don't do this, you will get in trouble for it.
 
the second you connect this to github you have just given openAi the right/permission to scrape all of your repos (probably private as well as public) for training data
It's nuts to me that this isn't more self-evident to people on the face of it
People still passively think corporations won't fuck you sideways I guess
 
It's nuts to me that this isn't more self-evident to people on the face of it
People still passively think corporations won't fuck you sideways I guess
this one is especially bad, like you can actually get into legal trouble over this; just think about proprietary employer code, credentials and api keys could be leaked, maybe customer data (god knows what it's grabbing), uploads without checking the licensing and worst of all violations of employment agreements like NDAs which can get you fired, even if it's your own repo that you own you're still risking losing your own property. definitely don't use this.
 
What's a good offline AI cooder thing, and what kind of resources does it need to run?
I've used void editor, and I've heard openclaw is good. Edit: Giving down syndrome agentic LLMs a false consciousness on your machine is retarded.

You need a decent GPU if you want mid-sized models to run ok.
 
Última edición:
this one is especially bad, like you can actually get into legal trouble over this; just think about proprietary employer code, credentials and api keys could be leaked, maybe customer data (god knows what it's grabbing), uploads without checking the licensing and worst of all violations of employment agreements like NDAs which can get you fired, even if it's your own repo that you own you're still risking losing your own property. definitely don't use this.
Why does everything you say come across like a fifteen year old wrote it?

You have zero ability to explain any background information or any ability to go into depth to articulate why X is bad. It's simply just "X is bad cos X is bad". Learn to write better posts instead of spewing out crap like a fifteen year old with zero attention span. It's not me being nasty, not me being mean for the sake of it but valid criticism. It's very hard to take an individuals posts seriously when you come across like that 99% of the time. It's just incredibly shallow dribble upon dribble to put it simply.

You need to begin to learn to develop more comprehensive explanation skills as a whole before you post. Stop acting so vague. You say so much without clearly having any actual understanding given your inability to properly articulate the why's, the how's, the what's, and the entire overall background of a subject.
 
What's a good offline AI cooder thing, and what kind of resources does it need to run?
There are various LLMs trained for coding but for the sake of an example, Claude Sonnet. You would run this locally and then you can query the model in various ways such as direct from the terminal, in the browser, via a plug-in to your editor (you might use the Continue extension in VS Code for example, or if using Claude specificially, their own VS Code extension). The simplest way to get and down models as a start would be LM Studio which gives you a self-contained interface for downloading models from public repositories, running them and querying them with your own prompts. You might attach a program file to a query. Or you can set up local file access to chosen directories and make it aware of them so it can go looking, cross-reference files, etc. For serious local coding you would probably want a plug-in to your editor, like the VS Code extensions mentioned. LM Studio can run the model as a local service that other tools can connect to.

In terms of hardware, you need both system RAM and VRAM with the latter usually being the constraint. 8GB VRAM would be your lowest viable minimum though that's low for this. In addition to loading the model, you want space for the Model Context. Kind of how many tokens it can handle. More tokens = More Lines of Code (both in and out).

Most models are available in different sizes, formally classed by the number of parameters. So you might get an 7 billion parameter model (7B), a 13 billion parameter model (13B) or some wopping 70B model (about as high as you can feasibly run on consumer hardware, and that is pushing it). The higher the number the more the model "knows". And the correspondingly more about of VRAM required to load it. (You can technically off-load models to system ram, splitting them up. Really not ideal). The same model is often available in different versions.

There is another axis which is quantisation. That's a way of reducing the size of a model but at the cost of making it more... fuzzy. So its accuracy gets a little less. A small amount of quantisation is supposed to be fine. More extreme quantisation, gets worse and worse. If the parameters is the knowledge of the model, the quantization is the degree of Alzheimers it has.

For running a coding model effectively locally I'd say 16GB VRAM is your minimum. 20GB VRAM and above is better. You can do this on AMD hardware (I wouldn't try lower than RDNA3 and RDNA4 is significantly better for LLMs) but it's indisputable that NVIDIA hardware is currently better.

You can also do semi-private coding assistance by running the model in the cloud somewhere (Azure, AWS and Google all have out of the box ways to configure and run this) or you could rent some compute on something like Runpod and roll your own. So long as your local tools (e.g. VS Code) can connect to it and authenticate, you're alright. Maybe some lag but I don't think generally it would be an issue - you're transferring code files not big blobs of binary. This is obviously not "local", but it's also not providing Anthropic or OpenAI all your code for them to parse and use as training data. So it's a cost effective way to dip your toe in the water if you don't have a grand or more of GPU lying around.

I'm currently weighing up the pros and cons of getting a new GPU for this. The top of the line consumer level would be the 5090 which has 32GB VRAM (large enough for a good coding model and the Context it needs to parse and generate code) and the Blackwell architecture which is current leader. Cost is horrifying though and it has a thirst for power that would shame Hilary Clinton. The lower options that have 16GB VRAM probably aren't quite enough for me. So there is the AMD Radeon Pro 9700 which has 32GB VRAM and is less than half the cost of the 5090. But also less than half the speed at these tasks. It's probably enough for my purposes, but I'm trying to find good benchmarks.

I hope all this is helpful. I've seen enough of your posts to know you have a lot of technical knowledge so I tried to just give you the high level context approach you could drill down from.
 
Why does everything you say come across like a fifteen year old wrote it?

You have zero ability to explain any background information or any ability to go into depth to articulate why X is bad. It's simply just "X is bad cos X is bad". Learn to write better posts instead of spewing out crap like a fifteen year old with zero attention span. It's not me being nasty, not me being mean for the sake of it but valid criticism. It's very hard to take an individuals posts seriously when you come across like that 99% of the time. It's just incredibly shallow dribble upon dribble to put it simply.

You need to begin to learn to develop more comprehensive explanation skills as a whole before you post. Stop acting so vague. You say so much without clearly having any actual understanding given your inability to properly articulate the why's, the how's, the what's, and the entire overall background of a subject.
sometimes I don't really need a huge in depth explanation, especially when it's just so fucking obvious, sometimes the most you need to do is point and go "X bad" because you'd have to be really fucking stupid not to understand why "X bad". guess what? drinking rat poison is bad, do I need to go into great details as to why we should not engulf neurotoxins?
 
bro who cares man i just vibed seven apps (no you may not see them) and im making a million rupees a year if you don't get good vibes sama (PBUH) will leave you behind
 
I'm currently weighing up the pros and cons of getting a new GPU for this. The top of the line consumer level would be the 5090 which has 32GB VRAM (large enough for a good coding model and the Context it needs to parse and generate code) and the Blackwell architecture which is current leader. Cost is horrifying though and it has a thirst for power that would shame Hilary Clinton. The lower options that have 16GB VRAM probably aren't quite enough for me. So there is the AMD Radeon Pro 9700 which has 32GB VRAM and is less than half the cost of the 5090. But also less than half the speed at these tasks. It's probably enough for my purposes, but I'm trying to find good benchmarks.
I think a modded 48gb 4090 would be better than a 5090. If you're willing to put up with AMD you can get an MI50 32gb (or even multiple) for relatively cheap (<500$).
 
I think a modded 48gb 4090 would be better than a 5090. If you're willing to put up with AMD you can get an MI50 32gb (or even multiple) for relatively cheap (<500$).
Interesting ideas. They're certainly cheaper. And I read a little bit in response to your post and was surprised how good some of the benchmarks people are getting from the MI50s.

But I think I'm likely to go for the RTX Pro of some variety now. I've been playing around with different models in the cloud to better understand that VRAM requirements I will likely have and I'm starting to think that even 32GB is possibly too low and that 48GB might be my minimum. I've further playing around to do with it but it's looking that way. And whilst the 4090 is a cheaper way to get that, there seem to be some significant jumps between Blackwell and its predecessor architecture.
 
What's a good offline AI cooder thing, and what kind of resources does it need to run?
> AI website as a browser tab
> only feed it specific files for specific tasks


My strategy, forces me to code in blocks/sections and keeping it retard simple (less than 10 files per "algorithm") so I at least know what the structure is for my project. In that way I don't end up with AI code that can't be tweaked later. Yes I know dragging files manually the zoomer way is monkey tier, but at least I know what I feed to the internet. Rather slow and steady than fast an zero control.
 
Última edición:
Interesting ideas. They're certainly cheaper. And I read a little bit in response to your post and was surprised how good some of the benchmarks people are getting from the MI50s.

But I think I'm likely to go for the RTX Pro of some variety now. I've been playing around with different models in the cloud to better understand that VRAM requirements I will likely have and I'm starting to think that even 32GB is possibly too low and that 48GB might be my minimum. I've further playing around to do with it but it's looking that way. And whilst the 4090 is a cheaper way to get that, there seem to be some significant jumps between Blackwell and its predecessor architecture.
I'm not sure exactly what model you've got in mind but if it's an MOE model I've seen people posting some pretty crazy benchmarks by offloading the experts to system ram and one big card that handles the prompt processing and the most used tensors. As in Q4 deepseek running at decent speeds locally.
 
I'm still trying out a bunch of different models trying to find what is best for local code generation. Some of them are MoE. Amusingly my attempts to manually tell it where to stick its tensors (figuratively speaking) only actually decreased results! :story: But I'm new at this.

I've got 96GB system RAM. I should hopefully be able to work something out. Still, the need for more VRAM seems limitless for my use cases.
 
Still, the need for more VRAM seems limitless for my use cases.
<always has been meme>

I've got my AI projects on a separate purpose built computer / jank pile of scrap and just access them via api. I got lucky and got 1tb of ddr4 ram for 500$ before the prices went insane and put it in an old server board with 16 slots. Unfortunately I can't really justify a several thousand dollar card to go with it atm.
 
I've heard openclaw is good.
1772040895475.png

Don't have the original tweet to hand or I would archive it, but essentially it ran out of context, compressed the instructions such that the insistence on confirming things and just went full Apocalypse Now on her inbox.

As per the image, this lady is in charge of AI safety at Meta.

OpenClaw - all the better to pinch you with.
 
Ver archivo adjunto 8619052

Don't have the original tweet to hand or I would archive it, but essentially it ran out of context, compressed the instructions such that the insistence on confirming things and just went full Apocalypse Now on her inbox.

As per the image, this lady is in charge of AI safety at Meta.

OpenClaw - all the better to pinch you with.
Yeah I should have updated my opinion, I've heard a few horror stories like that, I forgot how retarded AI hype can be.
 
Ver archivo adjunto 8619052

Don't have the original tweet to hand or I would archive it, but essentially it ran out of context, compressed the instructions such that the insistence on confirming things and just went full Apocalypse Now on her inbox.

As per the image, this lady is in charge of AI safety at Meta.

OpenClaw - all the better to pinch you with.
Tweet archive here.
HBz-x6haYAA26Cc.jpg HBz-x6nbAAAOqt7.jpg HBz-x6iakAAegxq.jpg
 
Ver archivo adjunto 8619052

Don't have the original tweet to hand or I would archive it, but essentially it ran out of context, compressed the instructions such that the insistence on confirming things and just went full Apocalypse Now on her inbox.

As per the image, this lady is in charge of AI safety at Meta.

OpenClaw - all the better to pinch you with.
i swear to god, ai assistants are just like that one colleague that has been alive to long, coasted his whole life, and now wants to make everyone else miserable and burn it all down.
 
Atrás
Top Abajo