Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
L

LlamaEdge

> 编程语言
Open source

The easiest & fastest way to run customized and fine-tuned LLMs locally or on the edge

1.6K stars0 likes0 views
WebsiteGitHub

About

The easiest & fastest way to run customized and fine-tuned LLMs locally or on the edge

LlamaEdge

The LlamaEdge project makes it easy for you to run LLM inference apps and create OpenAI-compatible API services for open-source LLMs locally.

⭐ Like our work? Give us a star!

Checkout our official docs and a Manning ebook on how to customize open source models.

Run multiple models with LlamaEdge! LLM (Text Generation) | Embedding | Speech to Text | Text to speech | Text to Image | Multimodal

Quick start

Prerequisite: Install WasmEdge via the following command line.

curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install_v2.sh | bash

Step 1: Download an LLM model file. Here we use the Meta Llama 3.2 1B model as an example.

curl -LO https://huggingface.co/second-state/Llama-3.2-1B-Instruct-GGUF/resolve/main/Llama-3.2-1B-Instruct-Q5_K_M.gguf

Step 2: Download the LlamaEdge CLI chat app. It is also a cross-platform portable Wasm app that can run on many CPU and GPU devices.

curl -LO https://github.com/second-state/LlamaEdge/releases/latest/download/llama-chat.wasm

Step 3: Run the following command to chat with the LLM.

wasmedge --dir .:. --nn-preload default:GGML:AUTO:Llama-3.2-1B-Instruct-Q5_K_M.gguf llama-chat.wasm -p llama-3-chat

Next steps:

  • Use a web-based chatbot to interact with your local LLM
  • Start an LLM service with your own knowledge base

Serve any GenAI model in OpenAI-compatible web service endpoints:

  • LLM (/v1/chat/completion endpoints) -- https://github.com/LlamaEdge/LlamaEdge (this repo)
  • LLM (/v1/embeddings endpoints) -- https://github.com/LlamaEdge/LlamaEdge (this repo)
  • Voice to text (/v1/audio/transcriptions endpoints) -- https://github.com/LlamaEdge/whisper-api-server
  • Text to voice (/v1/audio/speech endpoints) -- https://github.com/LlamaEdge/tts-api-server
  • Text to image (/v1/images/generations endpoints) -- https://github.com/LlamaEdge/sd-api-server

Projects in this repo

The Rust source code for the inference applications are all open source and you can modify and use them freely for your own purposes.

  • The folder llama-simple contains the source code project to generate text from a prompt using run llama2 models.
  • The folder llama-chat contains the source code project to "chat" with a llama2 model on the command line.
  • The folder llama-api-server contains the source code project for a web server. It provides an OpenAI-compatible API service, as well as an optional web UI, for llama2 models.

The tech stack

The Rust+Wasm stack provides a strong alternative to Python in AI inference.

  • Lightweight. The total runtime size is 30MB.
  • Fast. Full native speed on GPUs.
  • Portable. Single cross-platform binary on different CPUs, GPUs, and OSes.
  • Secure. Sandboxed and isolated execution on untrusted devices.
  • Container-ready. Supported in Docker, containerd, Podman, and Kubernetes.

For more information, please check out Fast and Portable Llama2 Inference on the Heterogeneous Edge.

Models

The LlamaEdge project supports all Large Language Models (LLMs) based on the llama2 framework. The model files must be in the GGUF format. We are committed to continuously testing and validating new open-source models that emerge every day.

Click here to see the supported model list with a download link and startup commands for each model. If you have success with other LLMs, don't hesitate to contribute by creating a Pull Request (PR) to help extend this list.

Platforms

The compiled Wasm file is cross platfrom. You can use the same Wasm file to run the LLM across OSes (e.g., MacOS, Linux, Windows SL), CPUs (e.g., x86, ARM, Apple, RISC-V), and GPUs (e.g., NVIDIA, Apple).

The installer from WasmEdge 0.13.5 will detect NVIDIA CUDA drivers automatically. If CUDA is detected, the installer will always attempt to install a CUDA-enabled version of the plugin. The CUDA support is tested on the following platforms in our automated CI.

  • Nvidia Jetson AGX Orin 64GB developer kit
  • Intel i7-10700 + Nvidia GTX 1080 8G GPU
  • AWS EC2 g5.xlarge + Nvidia A10G 24G GPU + Amazon deep learning base Ubuntu 20.04

If you're using CPU only machine, the installer will install the OpenBLAS version of the plugin instead. You may need to install libopenblas-dev by apt update && apt install -y libopenblas-dev.

Troubleshooting

Q: Why I got the following errors after starting the API server?

[2024-03-05 16:09:05.800] [error] instantiation failed: module name conflict, Code: 0x60
[2024-03-05 16:09:05.801] [error]     At AST node: module

A: TThe module conflict error is a known issue, and these are false-positive errors. They do not impact your program's functionality.

Q: Even though my machine has a large RAM, after asking several questions, I received an error message returns 'Error: Backend Error: WASI-NN'. What should I do?

A: To enable machines with smaller RAM, like 8 GB, to run a 7b model, we've set the context size limit to 512. If your machine has more capacity, you can increase both the context size and batch size up to 4096 using the CLI options available here. Use these commands to adjust the settings:

-c, --ctx-size <CTX_SIZE>
-b, --batch-size <BATCH_SIZE>

Q: After running apt update && apt install -y libopenblas-dev, you may encounter the following error:

...
E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?

A: This indicates that you are not logged in as root. Please try installing again using the sudo command:

sudo apt update && sudo apt install -y libopenblas-dev

Q: After running the wasmedge command, you may receive the following error:

[2023-10-02 14:30:31.227] [error] loading failed: invalid path, Code: 0x20
[2023-10-02 14:30:31.227] [error]     load library failed:libblas.so.3: cannot open shared object file: No such file or directory
[2023-10-02 14:30:31.227] [error] loading failed: invalid path, Code: 0x20
[2023-10-02 14:30:31.227] [error]     load library failed:libblas.so.3: cannot open shared object file: No such file or directory
unknown option: nn-preload

A: This suggests that your plugin installation was not successful. To resolve this issue, please attempt to install your desired plugin again.

Q: After executing the wasmedge command, you might encounter the error message: [WASI-NN] GGML backend: Error: unable to init model.

A: This error signifies that the model setup was not successful. To resolve this issue, please verify the following:

  1. Check if your model file and the WASM application are located in the same directory. The WasmEdge runtime requires them to be in the same location to locate the model file correctly.
  2. Ensure that the model has been downloaded successfully. You can use the command shasum -a 256 <gguf-filename> to verify the model's sha256sum. Compare your result with the correct sha256sum available on the Hugging Face page for the model.

Credits

The WASI-NN ggml plugin embedded llama.cpp as its backend.

GitHub Issues· 0 open

View all on GitHub

No open issues yet, or sync has not completed.

Highlights

  • •Use a web-based chatbot to interact with your local LLM
  • •Start an LLM service with your own knowledge base
  • •LLM (/v1/chat/completion endpoints) -- https://github.com/LlamaEdge/LlamaEdge (this repo)
  • •LLM (/v1/embeddings endpoints) -- https://github.com/LlamaEdge/LlamaEdge (this repo)
  • •Voice to text (/v1/audio/transcriptions endpoints) -- https://github.com/LlamaEdge/whisper-api-server
  • •Text to voice (/v1/audio/speech endpoints) -- https://github.com/LlamaEdge/tts-api-server
  • •Text to image (/v1/images/generations endpoints) -- https://github.com/LlamaEdge/sd-api-server
  • •The folder llama-simple contains the source code project to generate text from a prompt using run llama2 models.
  • •The folder llama-chat contains the source code project to "chat" with a llama2 model on the command line.
  • •The folder llama-api-server contains the source code project for a web server. It provides an OpenAI-compatible API service, as well as an optional web UI, for llama2 models.

> Tags

Rust

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言