5 easy ways to run an LLM locally (2024)

Deploying a large language model on your own system can be surprisingly simple—if you have the right tools. Here’s how to use LLMs like Meta’s new Llama 3 on your desktop.

By Sharon Machlis

Executive Editor, Data & Analytics, InfoWorld |

5 easy ways to run an LLM locally (2)
Table of Contents
  • Run a local chatbot withGPT4All
  • LLMs on the command line
  • Llama models on your desktop: Ollama
  • Chat with your own documents: h2oGPT
  • Easy but slow chat with your data: PrivateGPT
  • More ways to run a local LLM

Show More

Chatbots like ChatGPT, Claude.ai, and Meta.ai can be quite helpful, but you might not always want your questions or sensitive data handled by an external application. That’s especially true on platforms where your interactions may be reviewed by humans and otherwise used to help train future models.

One solution is to download alarge language model (LLM) and run it on your own machine. That way, an outside company never has access to your data. This is also a quick option to try some new specialty models such as Meta’s new Llama 3, which is tuned for coding, and SeamlessM4T, which is aimed at text-to-speech and language translations.

Running your own LLM might sound complicated, but with the right tools, it’s surprisingly easy. And the hardware requirements for many models aren’t crazy. I’ve tested the options presented in this article on two systems: a Dell PC with an Intel i9 processor, 64GB of RAM, and a Nvidia GeForce 12GB GPU (which likely wasn’t engaged running much of this software), and on a Mac with an M1 chip but just 16GB of RAM.

Be advised that it may take a little research to find a model that performs reasonably well for your task andruns on your desktop hardware. And, few may be as good as what you’re used to with a tool like ChatGPT (especially with GPT-4) or Claude.ai. Simon Willison, creator of the command-line tool LLM, argued in apresentation last summerthatrunning a local model could be worthwhile even if its responses are wrong:

[Some of] the ones that run on your laptop will hallucinate like wild— which I think is actually a great reason to run them, because running the weak models on your laptop is a much faster way of understanding how these things work and what their limitations are.

It’s also worth noting that open source models keep improving, and some industry watchers expect the gap between them and commercial leaders to narrow.

Run a local chatbot withGPT4All

If you want a chatbot that runs locally and won’t send data elsewhere, GPT4All offers a desktop client for download that’s quite easy to set up. It includes options for models that run on your own system, and there are versions for Windows, macOS, and Ubuntu.

When you open the GPT4All desktop application for the first time, you’ll see options to download around 10 (as of this writing) models that can run locally. Among them is Llama-2-7B chat, a model from Meta AI. You can also set up OpenAI’s GPT-3.5 and GPT-4 (if you have access) for non-local use if you have an API key.

The model-download portion of the GPT4All interface was a bit confusing at first. After I downloaded several models, I still saw the option to download them all. That suggested the downloads didn’t work. However, when I checked the download path, the models were there.

5 easy ways to run an LLM locally (3) Screenshot by Sharon Machlis for IDG.

Once the models are set up, the chatbot interface itself is clean and easy to use. Handy options include copying a chat to a clipboard and generating a response.

5 easy ways to run an LLM locally (4) Screenshot by Sharon Machlis for IDG.

There’s also a beta LocalDocs plugin that lets you “chat” with your own documents locally. You can enable it in the Settings > Plugins tab, where you’ll see a “LocalDocs Plugin (BETA) Settings” header and an option to create a collection at a specific folder path.

The plugin is a work in progress, and documentation warns that the LLM may still “hallucinate” (make things up) even when it has access to your added expert information. Nevertheless, it’s an interesting feature that’s likely to improve as open-source models become more capable.

In addition to the chatbot application, GPT4All also has bindings for Python, Node, and a command-line interface (CLI). There’s also a server mode that lets you interact with the local LLM through an HTTP API structured very much like OpenAI’s. The goal is to let you swap in a local LLM for OpenAI’s by changing a couple of lines of code.

LLMs on the command line

LLM by Simon Willison is one of the easier ways I’ve seen to download and use open source LLMs locally on your own machine. While you do need Python installed to run it, you shouldn’t need to touch any Python code. If you’re on a Mac and use Homebrew, just install with

brew install llm

If you’re on a Windows machine, use your favorite way of installing Python libraries, such as

pip install llm

LLM defaults to using OpenAI models, but you can use plugins to run other models locally. For example, if you install the gpt4all plugin, you’ll have access to additional local models from GPT4All. There are also plugins for Llama, the MLC project, and MPT-30B, as well as additional remote models.

Install a plugin on the command line with llm install model-name:

llm install llm-gpt4all

You can see all available models—remote and the ones you’ve installed, including brief info about each one, with the command: llm models list.

5 easy ways to run an LLM locally (5) Screenshot by Sharon Machlis for IDG.

To send a query to a local LLM, use the syntax:

llm -m the-model-name "Your query"

I then asked falcon-q4_0 a ChatGPT-like question without issuing a separate command to download the model:

llm -m ggml-model-gpt4all-falcon-q4_0 "Tell me a joke about computer programming"

This is one thing that makes the LLM user experience so elegant. If the GPT4All model doesn't exist on your local system, the LLM tool automatically downloads it for you before running your query. You’ll see a progress bar in the terminal as the model is downloading.

5 easy ways to run an LLM locally (6) Screenshot by Sharon Machlis for IDG.

The joke itself wasn’t outstanding—"Why did the programmer turn off his computer? Because he wanted to see if it was still working!"—but the query did, in fact, work. And if results are disappointing, that’s because of model performance or inadequate user prompting, not the LLM tool.

You can also set aliases for models within LLM, so that you can refer to them by shorter names:

llm aliases set falcon ggml-model-gpt4all-falcon-q4_0

To see all your available aliases, enter: llm aliases.

The LLM plugin for Meta’s Llama modelsrequires a bit more setup than GPT4All does. Read the details on the LLM plugin’s GitHub repo. Note that the general-purpose llama-2-7b-chat did manage to run on my work Mac with the M1 Pro chip and just 16GB of RAM. It ran rather slowly compared with the GPT4All models optimized for smaller machines without GPUs, and performed better on my more robust home PC.

LLM has other features, such as an argument flag that lets you continue from a prior chat and the ability to use it within a Python script. And in early September, the app gained tools for generating text embeddings, numerical representations of what the text means that can be used to search for related documents. You can see more on the LLM website. Willison, co-creator of the popular Python Django framework, hopes that others in the community will contribute more plugins to the LLM ecosystem.

Llama models on your desktop: Ollama

Ollama is an even easier way to download and run models than LLM. However, the project was limited to macOS and Linux until mid-February, when a preview version for Windows finally became available. I tested the Mac version.

5 easy ways to run an LLM locally (7) Screenshot by Sharon Machlis for IDG.

Installation is an elegant experience via point-and-click. And although Ollama is a command-line tool, there’s just one command with the syntax ollama run model-name. As with LLM, if the model isn’t on your system already, it will automatically download.

You can see the list of available models athttps://ollama.ai/library, which as of this writing included several versions of Llama-based models including Llama 3, Code Llama, CodeUp, and medllama2, which is fine-tuned to answer medical questions.

The Ollama GitHub repo’s README includes a helpful list of some model specs and advice that “You should have at least 8GB of RAM to run the 3B models, 16GB to run the 7B models, and 32GB to run the 13B models.” On my 16GB RAM Mac, the 7B Code Llama performance was surprisingly snappy. It will answer questions about bash/zsh shell commands as well as programming languages like Python and JavaScript.

5 easy ways to run an LLM locally (8) Screenshot by Sharon Machlis for IDG.

Despite being the smallest model in the family, Code Llama was pretty good if imperfect at answering an R coding question that tripped up some larger models: “Write R code for a ggplot2 graph where the bars are steel blue color.” The code was correct except for two extra closing parentheses in two of the lines of code, which were easy enough to spot in my IDE. I suspect the larger Code Llama could have done better.

Ollama has some additional features, such as LangChain integration and the ability to run with PrivateGPT, which may not be obvious unless you check the GitHub repo’s tutorials page.

You could have PrivateGPT running in a terminal window and pull it up every time you have a question. I’m looking forward to an Ollama Windows version to use on my home PC.

Chat with your own documents: h2oGPT

H2O.ai has been working on automated machine learning for some time, so it’s natural that the company has moved into the chat LLM space. Some of its tools are best used by people with knowledge of the field, but instructions to install a test version of its h2oGPT chat desktop application were quick and straightforward, even for machine learning novices.

You can access a demo version on the web (obviously not using an LLM local to your system) atgpt.h2o.ai, which is a useful way to find out if you like the interface before downloading it onto your own system.

You can download a basic version of the app with limited ability to query your own documents by following setup instructions here.

5 easy ways to run an LLM locally (9) Screenshot by Sharon Machlis for IDG.

Without adding your own files, you can use the application as a general chatbot. Or, you can upload some documents and ask questions about those files. Compatible file formats include PDF, Excel, CSV, Word, text, markdown, and more. The test application worked fine on my 16GB Mac, although the smaller model’s results didn’t compare to paid ChatGPT with GPT-4 (as always, that’s a function of the model and not the application). The h2oGPT UI offers an Expert tab with a number of configuration options for users who know what they’re doing. This gives more experienced users the option to try to improve their results.

5 easy ways to run an LLM locally (10) Screenshot by Sharon Machlis for IDG.

If you want more control over the process and options for more models, download the complete application. There are one-click installers for Windows and macOS for systems with a GPU or with CPU-only. Note that my Windows antivirus software was unhappy with the Windows version because it was unsigned. I’m familiar with H2O.ai’s other software and the code is available on GitHub, so I was willing to download and install it anyway.

Rob Mulla, now at at H2O.ai, posted a YouTube video on his channel about installing the app on Linux. Although the video is several months old now, and the application user interface appears to have changed, the video still has useful info, including helpful explanations about H2O.ai LLMs.

Easy but slow chat with your data: PrivateGPT

PrivateGPT is also designed to let you query your own documents using natural language and get a generative AI response. The documents in this application can include several dozen different formats. And the README assures you that the data is “100% private, no data leaves your execution environment at any point. You can ingest documents and ask questions without an internet connection!”

PrivateGPT features scripts to ingest data files, split them into chunks, create “embeddings” (numerical representations of the meaning of the text), and store those embeddings in a local Chroma vector store. When you ask a question, the app searches for relevant documents and sends just those to the LLM to generate an answer.

If you’re familiar with Python and how to set up Python projects, you can clone the full PrivateGPT repository and run it locally. If you’re less knowledgeable about Python, you may want to check out a simplified version of the project that author Iván Martínez set up for a conference workshop, which is considerably easier to set up.

That version’s README file includes detailed instructions that don’t assume Python sysadmin expertise. The repo comes with a source_documents folder full of Penpot documentation, but you can delete those and add your own.

Related:

  • Generative AI
  • Artificial Intelligence
  • Software Development
1 2 Page 1 Next

Page 1 of 2

5 easy ways to run an LLM locally (2024)

FAQs

How to run LLM models locally? ›

Steps:
  1. Download the model:
  2. Choose a model from the HuggingFace Hub.
  3. Download the model weights and tokenizer weights.
  4. Place the downloaded files in a local directory. ...
  5. Create a . ...
  6. In the . ...
  7. transformers_home: Path to the directory where you stored the downloaded model and tokenizer weights.
Mar 21, 2024

Why run LLM locally? ›

Enhanced Privacy and Security: Running LLMs locally allows your data to stay YOUR data. No influence from the corporate morass, and no bias toward anyone's well-being except your own. It also minimizes exposure to external threats by being fully local. No internet needed.

Are local LLMs any good? ›

Locally hosted LLMs provide constant and predictable response times compared to API-based services. Latency responses from local LLMs can be faster than calling an API, depending on your hardware, model selection, and network.

How to use open source LLM models? ›

How to fine-tune open source LLMs. Fine-tuning open source models is done on the large cloud provider hosted by the LLM, such as AWS, Google Cloud, or Microsoft Azure. Fine-tuning allows you to optimize the model by creating more advanced language interactions in applications like virtual assistants and chatbots.

What is the fastest LLM to run locally? ›

Jan. One of the most popular and best-looking local LLM applications is Jan. It's faster than any local LLM application—it generates a response at 53.26 tokens/sec. For comparison, GPT4All's rate is 31 tokens/sec.

How to make LLM run faster? ›

To get the largest speed up, the assistant model should be a lot smaller than the LLM so that it can generate tokens quickly. The assistant and LLM model must also share the same tokenizer to avoid re-encoding and decoding tokens.

What are the hardware requirements for local LLM? ›

For LLM server applications, “Professional” or “Compute” level GPUs are recommended. This is because larger amounts of VRAM are available and because they are better suited for the cooling environment of a server chassis. Examples would be NVIDIA's RTX 6000 Ada, L40S, and H100 – or AMD MII Instinct GPUs.

What is the best framework for LLM? ›

DeepEval - The Evaluation Framework for LLMs

It takes top spot for a variety of reasons: Offers 14+ LLM evaluation metrics (both for RAG and fine-tuning use cases), updated with the latest research in the LLM evaluation field. These metrics include: G-Eval.

How to train LLM models? ›

Training of LLMs is a multi-faceted process that involves self-supervised learning, supervised learning, and reinforcement learning. Each of these stages plays a critical role in making LLMs as capable as they are. The self-supervised learning phase helps the model to understand language and specific domains.

What LLM does ChatGPT use? ›

ChatGPT is a chatbot service powered by the GPT backend provided by OpenAI. The Generative Pre-Trained Transformer (GPT) relies on a Large Language Model (LLM), comprising four key components: Transformer Architecture, Tokens, Context Window, and Neural Network (indicated by the number of parameters).

Are local LLMs secure? ›

Local LLMs can process data onsite without transmitting it over the internet, significantly reducing the risk of data breaches. This local processing meets stringent regulatory requirements for data privacy and security, making it ideal for sectors where protection of data is paramount.

Why are LLMs so expensive? ›

In contrast to the benefits, building LLMs from scratch involves high costs, requiring substantial financial and computational resources for development, training, and maintenance. It's also time-consuming, often taking weeks or months, which can delay deployment and benefits.

How to deploy LLM locally? ›

Running an LLM locally requires a few things:
  1. Open-source LLM : An open-source LLM that can be freely modified and shared.
  2. Inference : Ability to run this LLM on your device w/ acceptable latency.

Are there free LLMs? ›

An open-source LLM is an LLM that's available for free and can be modified and customized by anyone. With an open-source LLM, any person or business can use it for their means without having to pay licensing fees.

Which LLM is the most advanced? ›

Cohere LLMs
  • Model Size: 104 billion parameters.
  • Context Window Size: 128k.
  • Max Output: 4k tokens.
  • Vision: No.
  • Knowledge cutoff:
  • Performance: LMSYS Leaderboard.
  • Tech documentation: Model card.
  • Availability: Cohere API, Hugging Face, Azure AI, Amazon Bedrock.

Can you run LangChain locally? ›

I made use of Jupyter Notebook to install and execute the LangChain code. For the SLM inference server I made use of the Titan TakeOff Inference Server, which I installed and run locally. I built a few LangChain applications which runs 100% offline and locally by making use of four tools.

Can I run Ollama locally? ›

Running the Ollama command-line client and interacting with LLMs locally at the Ollama REPL is a good start. But often you would want to use LLMs in your applications. You can run Ollama as a server on your machine and run cURL requests.

Do hugging face models run locally? ›

Pretrained models are downloaded and locally cached at: ~/. cache/huggingface/hub . This is the default directory given by the shell environment variable TRANSFORMERS_CACHE .

Top Articles
Winners of the Nobel Prize in Literature
Cryptogrammen Nu (crypt.)
Dragon Age Inquisition War Table Operations and Missions Guide
Thor Majestic 23A Floor Plan
123 Movies Black Adam
Health Benefits of Guava
What Happened To Dr Ray On Dr Pol
Chris wragge hi-res stock photography and images - Alamy
The Realcaca Girl Leaked
Lost Ark Thar Rapport Unlock
Mcoc Immunity Chart July 2022
Slapstick Sound Effect Crossword
State Of Illinois Comptroller Salary Database
Premier Boating Center Conroe
Pittsburgh Ultra Advanced Stain And Sealant Color Chart
ocala cars & trucks - by owner - craigslist
Raleigh Craigs List
Red Tomatoes Farmers Market Menu
Rainfall Map Oklahoma
Moonshiner Tyler Wood Net Worth
Magic Mike's Last Dance Showtimes Near Marcus Cedar Creek Cinema
Northeastern Nupath
Candy Land Santa Ana
Axe Throwing Milford Nh
Vigoro Mulch Safe For Dogs
Earl David Worden Military Service
Att.com/Myatt.
Team C Lakewood
Miltank Gamepress
Il Speedtest Rcn Net
Cylinder Head Bolt Torque Values
How often should you visit your Barber?
Filmy Met
Kaiju Paradise Crafting Recipes
Linabelfiore Of
Kvoa Tv Schedule
Samsung 9C8
Delaware judge sets Twitter, Elon Musk trial for October
Aliciabibs
Section 212 at MetLife Stadium
What Is A K 56 Pink Pill?
Craigslist en Santa Cruz, California: Tu Guía Definitiva para Comprar, Vender e Intercambiar - First Republic Craigslist
Torrid Rn Number Lookup
Cocaine Bear Showtimes Near Cinemark Hollywood Movies 20
ESA Science & Technology - The remarkable Red Rectangle: A stairway to heaven? [heic0408]
Anthem Bcbs Otc Catalog 2022
Best Haircut Shop Near Me
26 Best & Fun Things to Do in Saginaw (MI)
Zom 100 Mbti
Rise Meadville Reviews
Pulpo Yonke Houston Tx
Latest Posts
Article information

Author: Melvina Ondricka

Last Updated:

Views: 6717

Rating: 4.8 / 5 (48 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Melvina Ondricka

Birthday: 2000-12-23

Address: Suite 382 139 Shaniqua Locks, Paulaborough, UT 90498

Phone: +636383657021

Job: Dynamic Government Specialist

Hobby: Kite flying, Watching movies, Knitting, Model building, Reading, Wood carving, Paintball

Introduction: My name is Melvina Ondricka, I am a helpful, fancy, friendly, innocent, outstanding, courageous, thoughtful person who loves writing and wants to share my knowledge and understanding with you.