this post was submitted on 14 Jul 2025
84 points (96.7% liked)

Technology

3520 readers
256 users here now

Which posts fit here?

Anything that is at least tangentially connected to the technology, social media platforms, informational technologies and tech policy.


Post guidelines

[Opinion] prefixOpinion (op-ed) articles must use [Opinion] prefix before the title.


Rules

1. English onlyTitle and associated content has to be in English.
2. Use original linkPost URL should be the original link to the article (even if paywalled) and archived copies left in the body. It allows avoiding duplicate posts when cross-posting.
3. Respectful communicationAll communication has to be respectful of differing opinions, viewpoints, and experiences.
4. InclusivityEveryone is welcome here regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation.
5. Ad hominem attacksAny kind of personal attacks are expressly forbidden. If you can't argue your position without attacking a person's character, you already lost the argument.
6. Off-topic tangentsStay on topic. Keep it relevant.
7. Instance rules may applyIf something is not covered by community rules, but are against lemmy.zip instance rules, they will be enforced.


Companion communities

!globalnews@lemmy.zip
!interestingshare@lemmy.zip


Icon attribution | Banner attribution


If someone is interested in moderating this community, message @brikox@lemmy.zip.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] p03locke@lemmy.dbzer0.com 1 points 3 days ago (1 children)

It's a shame, because ComfyUI can be so much more than just image generation. And just because there's a lot of string processing for LLMs doesn't mean that it isn't important to capture in an I/O interface, especially when it comes to preserving chat history. Save data, load data, ask new questions, etc.

ChatGPT is pretty damn powerful, I'll admit. But, all of its components need to be localized, especially since something like a Mixture of Experts model could be split down to base models and loaded/unloaded as necessary.

[โ€“] brucethemoose@lemmy.world 1 points 3 days ago* (last edited 3 days ago)

, especially since something like a Mixture of Experts model could be split down to base models and loaded/unloaded as necessary.

It doesn't work that way. All MoE experts are 'interleaved' and you need all of them loaded at once, for every token. Some API servers can hotswap whole models, but its not fast, and rarely done since LLMs are pretty 'generalized' and tend to serve requests in parallel on API servers.

The closest to what you're thinking of is LoRAX (which basically hot-swaps Loras efficiently). But it needs an extremely specialized runtime derived from its associated paper, hence people tend to not use it since it doesn't support quantization and some other features as well: https://github.com/predibase/lorax

There is a good case for pure data processing, yeah... But it has little integration with LLMs themselves, especially with the API servers generally handling tokenizers/prompt formatting.

But, all of its components need to be localized

They already are! Local LLM tooling and engines are great and super powerful compared to ChatGPT (which offers no caching, no raw completion, primitive sampling, hidden thinking, and so on).