this post was submitted on 01 Jun 2026
18 points (65.0% liked)

Selfhosted

56958 readers
800 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

  7. No low-effort posts. This is subjective and will largely be determined by the community member reports.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 3 years ago
MODERATORS
 

cross-posted from: https://sh.itjust.works/post/61139432

I seriously can't believe how much progress he's made for the FOSS community. He actually might take a bite out of the big 3's profits with this

top 20 comments
sorted by: hot top controversial new old
[–] somegeek@programming.dev 3 points 31 minutes ago

What the actual fuck is this timeline that we are living in?

[–] wilo108@lemmy.ml 1 points 12 minutes ago (1 children)
[–] frongt@lemmy.zip 1 points 4 minutes ago

And disclosed to the public before the project maintainer, too. This is shit from every angle.

[–] november@piefed.blahaj.zone 37 points 2 hours ago (1 children)

Why is everyone so excited for Yet Another Slop Project?

[–] swab148@lemmy.dbzer0.com 9 points 2 hours ago

Probably because they can call it YASP and give it a cute mascot

[–] onlinepersona@programming.dev 15 points 2 hours ago (5 children)

How many GPUs do you even need to have a usable, self-hosted AI? It looks like he has 6 on his rig. Probably each costs 2k or something. That's not peanuts. I have a 12GB VRAM card. It probably can't generate anything in any meaningful amount of time. Which brings me to the question: who is this for?

Regardless, impressive what he vibe-coded there.

[–] Rhaedas@fedia.io 5 points 1 hour ago

16GB is plenty for even older model setups. Now they've got a few models designed so you load just parts of the model onto the GPU (Mixture of Experts) and use the CPU for less referenced sections, so you get both reasonable speed and a much more complex model.

[–] Korhaka@sopuli.xyz 4 points 1 hour ago

Depends on what you want it to do and how well it should do it. Zero is potentially enough. A second hand card from half a decade ago can also do quite a lot.

[–] cecilkorik@piefed.ca 1 points 56 minutes ago

For chat usage (which is strictly a more efficient way to generate code on the LLM's part, although you have to keep carefully guided and compartmentalized otherwise it typically requires a lot more testing and sometimes back-and-forth iteration on your part) 12GB is plenty to run many decent LLMs, you'll typically want to use a Q4 quantization to make models with larger parameter fit into smaller memory, sometimes an IQ2 or IQ3 if you really want a particular model.

For agentic usage (where the LLM is trained and optimized to use a harness like this to start requesting tool calls and getting their results and using the results of the tool calls to inform what it's trying to do) it's quite a bit more challenging to do on consumer hardware at a tolerable speed. The tools often generate large amounts of output which then take a long time to process, and the models and harnesses are both typically quite a bit stupider about using your limited resources efficiently. If you're using to commercial "frontier" agentic models like Claude Code you're going to have a bad time.

That said, it is absolutely possible to do agentic AI on consumer hardware (just the GPU you have, not 6 of them), as long as you're reasonably patient, using a harness properly tuned for efficiency. Out-of-the-box, many if not most are designed for remote API usage, even the "open source, local" ones realistically rely on free tier APIs and are inherently wasteful in terms of them not really caring how many tokens you burn in these remote datacenters and they're expecting to just be able to iterate over and over again until they get it right. You don't have that luxury when you're getting slow tokens.

Is PewDiePie's any better or more efficient? I don't know, I haven't tried it yet. I prefer more minimal harnesses personally, OpenCode is about the most usable I've found personally, although I'm starting to experiment with Pi-mono (called Pi, but that's unsearchable) which seems very promising, and I know quite a few people who have had good successful agent usage with Hermes Agent.

I'm not going to pretend it's going to be easy or that you'll necessarily have very good results. I am pretty lukewarm on AI as a whole, but I am personally deeply invested in making sure I have fully local access to it in as much capacity as is currently technologically possible, as a personal digital sovereignty issue.

As for hardware, I have a 12GB card myself and you don't really need to fit everything into VRAM these days. I have an AMD X3D CPU which allows me to offload some of the model to system RAM with pretty decent performance, maybe it's prohibitive on different architectures or configurations I don't know but it's worth a try. glm-4.7-flash:Q4_K_M from ollama is the model I've had the most consistent success with and with ollama running it with the context window set to 50,000 (context should also be set to be quantized to Q4_K_M), I end up with almost half of it offloaded to system RAM and it still runs quite fast thanks to the flash attention feature. I've worked with gemma4 quite a lot too and it's definitely really fast but it's also a bit unstable/weird at times, at least the heretic version hf.co/Stabhappy/gemma-4-26B-A4B-it-heretic-GGUF:Q4_K_M I'm running is. Still, if you really do need to fit everything into a smaller set of RAM you might try the gemma4 E4B models which clock in around 9GB when quantized. Qwen3.6 is I guess supposed to be really good too and should fit nicely on your 12GB card, but I haven't had much opportunity to play with it yet. Qwen3 and 3.5 felt rather disappointing to me for agentic use but YMMV.

You're not completely going to outsource all software and all code you write to AI using a local model, the way companies are doing with those commercial models. But I consider that an advantage, not a flaw. I find it's much more useful to have it help, suggest and advise, not to completely replace everything I'm doing. Yes, sometimes it's slow and sometimes it's wrong, but so are other people when I ask them sometimes. I'm prepared for it, and you should be too. Don't get complacent.

[–] new_world_odor@lemmy.world 2 points 1 hour ago

I have a rx5600xt (6gb), 32gb ram, ryzen 3600. System hasn't been updated since i built it during covid. QwenV3-vl35B is the heftiest thing I can run, it gets around 2 tokens/sec, in LM studio. It's easier than most people seem to think.

[–] artyom@piefed.social 4 points 1 hour ago

My buddy has an older 16GB card and I installed LM studio for fun. Its not quite as fast as some of the web-based ones, but perfectly usable.

[–] LostWanderer@fedia.io 14 points 2 hours ago (1 children)

I was finally becoming interested in Felix when he started dabbling in Linux and made some serious cool shit...Now that he's made his own slop tool, I am losing interest in him again. It's so fucking cursed, this slop nonsense needs to stop. I wish he would've stuck with ricing, making fun projects instead of open source washing corporate garbage.

[–] timestatic@feddit.org 13 points 1 hour ago (1 children)

Those are his fun projects. He's not doing them for you. I honestly think its a cool project even if its not something crazy or anything. And honestly self-hosted AI projects are imo a lot better than just using claude tokens or whatever

[–] LostWanderer@fedia.io 1 points 20 minutes ago

It's clear that this is his own project, that he is doing this for himself...It's just sad this is what Felix is choosing to share with the community of people that follow him on YouTube. It's bad enough that corporate idiots are peddling slop tools, but having a content creator with history and sway in the YouTube scene do it. Also, it's an LLM not an "AI", as AI is actually out of human reach unless humans actually do some real multidisciplinary work to make it happen. Techbros being able to conflate LLMs with AI was the worst thing to happen to the world. If only they were forced to advertise their slop tools correctly, we'd be in a different situation. 😮‍💨

[–] newthrowaway20@lemmy.world 13 points 2 hours ago

One more harness, bro.

[–] Decronym@lemmy.decronym.xyz 7 points 2 hours ago* (last edited 7 minutes ago)

Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I've seen in this thread:

Fewer Letters More Letters
CF CloudFlare
DNS Domain Name Service/System
HA Home Assistant automation software
~ High Availability
HTTP Hypertext Transfer Protocol, the Web
HTTPS HTTP over SSL
IP Internet Protocol
SSL Secure Sockets Layer, for transparent encryption
VPN Virtual Private Network
VPS Virtual Private Server (opposed to shared hosting)

8 acronyms in this thread; the most compressed thread commented on today has 7 acronyms.

[Thread #324 for this comm, first seen 1st Jun 2026, 16:50] [FAQ] [Full list] [Contact] [Source code]

[–] Bullerfar@lemmy.world 8 points 2 hours ago (1 children)

I love that guy. Remember hating him back in the days when he got popular by sitting and yelling while playing games. But damn the guy matured and put out epic content the past 10 years or so.

[–] timestatic@feddit.org 4 points 1 hour ago

Honestly now that hes mostly retired his content is so chill now

[–] MissesAutumnRains@lemmy.blahaj.zone 5 points 2 hours ago* (last edited 2 hours ago) (1 children)

~~I'm a tiny bit confused as to what this actually is~~. I don't use the Codex/ClaudeCode/Cursor stuff, but it seems like this is just an interface for connecting those services, isn't it? It doesn't seem like that actually protects your data at all.

Can anyone help explain it a bit?

Edit: I realized I kinda glossed over all the stuff that seemed to be included in this, I more meant the start where he talked about this being privacy centric. Is he just trying to make self-hosting less painful?

[–] artyom@piefed.social 1 points 1 hour ago

This can do either.