Earlier quoted context omitted.
I'd like to build myself a headless server to run models, that could be queried from various clients locally on my LAN, but am usure where to start and what the hardware requirements would be. Software can always be changed later but I'd rather buy the hardware parts only once. Do you have recommendations about this? or blog posts to get started? What would be a decent hardware configuration?
Ollama does this. I run it in a container on my homelab (Proxmox on a HP EliteDesk SFF G2 800) and 7B models run decently fast on CPU-only. Ollama has a nice API and makes it easy to manage models. Together with ollama-webui, it can replace ChatGPT 3.5 for most tasks. I also use it in VSCode and nvim with plugins, works great! I have been meaning to write a short blog post about my setup...
LM Studio – Discover, download, and run local LLMs
51–60 of 157 posts
Re: LM Studio – Discover, download, and run local LLMs
#52LMStudio is great to run local LLMs, also support OpenAI-compatible API. In the case you need more advance UI/UX, you can use LMStudio with MindMac( https://mindmac.app ), just check this video for details https://www.youtube.com/watch?v=3KcVp5QQ1Ak .
Thanks for sharing MindMac - just tried it out and it's exactly what I was looking for, great to see Ollama integration is coming soon!
Re: LM Studio – Discover, download, and run local LLMs
#53I really like LM Studio and had it open when I came across this post. LM Studio is an interesting mixture of: - A local model runtime - A model catalog - A UI to chat with the models easily - An openAI compatible API And it has several plugins such as for RAG (using ChromaDB) and others. Personally I think the positioning is very interesting. They're well positioned to take advantage of new capabilities in the OS eco…
Re: LM Studio – Discover, download, and run local LLMs
#54I really like LM Studio and had it open when I came across this post. LM Studio is an interesting mixture of: - A local model runtime - A model catalog - A UI to chat with the models easily - An openAI compatible API And it has several plugins such as for RAG (using ChromaDB) and others. Personally I think the positioning is very interesting. They're well positioned to take advantage of new capabilities in the OS eco…
Does it also let you connect to the ChatGPT API and use it?
Personally I use a locally served frontend to use ChatGPT via API.
Re: LM Studio – Discover, download, and run local LLMs
#55Why purple or some shade of purple is the color of all AI products? For some reason, the landing pages of AI products immediately remind of Crypto products. This one does not have Crypto vibes but the colour is purple. I don't get why.
Re: LM Studio – Discover, download, and run local LLMs
#56EDIT: The problem is I'm on macOS 13.2 (Ventura). According to a message in Discord, the minimum version for some (most?) models is 13.6.
Re: LM Studio – Discover, download, and run local LLMs
#57For those looking for an open source alternative with Mac, Windows, Linux support check out GPT4All.io
Re: LM Studio – Discover, download, and run local LLMs
#58For my experiments with new self-hostable models on Linux, I've been using a script to download GGUF-models from TheBloke on HuggingFace (currently, TheBloke's repository has 657 models in the GGUF format) which I feed to a simple program I wrote which invokes llama.cpp compiled with GPU support. The GGUF format and TheBloke are a blessing, because I'm able to check out new models basically on the day of their releas…