ollama
exllamav2
| ollama | exllamav2 | |
|---|---|---|
| 750 | 19 | |
| 173,924 | 4,550 | |
| 2.0% | 0.9% | |
| 9.9 | 6.7 | |
| about 12 hours ago | 3 months ago | |
| Go | Python | |
| MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
ollama
-
Set Up Your Own ChatGPT: Ollama + Open WebUI for Data That Never
Download: Go to https://ollama.com/ and click on the download link for your operating system.
-
I Built a Free, Fully Local AI Resume Builder — No Subscriptions, No Cloud, No Catch
Most AI resume tools call out to OpenAI or Anthropic and charge you for every request. Persona supports Ollama — which means you can run the AI model locally on your own hardware, with zero API costs and zero data leaving your machine.
-
Sovereign Synapse: The Local Brain
To solve these, we built a stack that prioritizes integrity over ease. The centerpiece is Ollama, running the mxbai-embed-large model locally. This is the engine that translates human thought into high-dimensional coordinates.
-
How I Built a Self-Funding AI Lab: From Hobby to Side Income in 6 Months
Ollama for model serving
-
Flat Chat Threads Suck for Reading Books. So I Built a Local-First AI Tree Companion.
Fully offline: Point it at Ollama or LM Studio. Zero cost, nothing leaves your network.
-
Local LLM Hardware Requirements in 2026: What You Actually Need for Every Model Tier [Guide]
Recommended hardware: The RTX 3060 with 12 GB VRAM is the budget king here — all these models fit with room to spare for KV cache overhead, even Gemma 4:12B (which needs ~8.5–9 GB with overhead). An RTX 4060 Ti 16 GB gives you more headroom. On the Apple side, any M2 or M3 MacBook with 16 GB unified memory handles these models comfortably via Ollama's Metal backend.
-
Run Coding Agents on Local AI — Zero Cloud, Full Control
This guide shows how to swap out every cloud API with a local Ollama server running qwen3-coder:30b. Same tools, same workflows, no data leaving your network.
-
Running Brand-New Gemma 4 12B on an 8-Year-Old GTX 1080 Ti: Speed, 3 Gotchas, and Why Q8 Beat Q4 on My Own Field
Related: 35B MoE on 2× 1080 Ti · Ollama
-
Agent Skills in Microsoft Agent Framework
The sample is a tiny console app running entirely against a local Ollama model — no cloud keys, and every HTTP call is traced so I can see exactly what goes over the wire (complete sample code). There's a single skill on disk:
-
Quick and easy local AI RAG setup with JetBrains IDE integration and browser UI
irm https://ollama.com/install.ps1 | iex
exllamav2
- Codestral Mamba
-
Why I made TabbyAPI
Today, I’m going to focus on my most popular project, TabbyAPI. TabbyAPI is a python based FastAPI server that allows users to interact with Large Language Models (or LLMs) using the ExllamaV2 library and adheres to the OpenAI API specification.
- Running Llama3 Locally
-
Mixture-of-Depths: Dynamically allocating compute in transformers
There are already some implementations out there which attempt to accomplish this!
Here's an example: https://github.com/silphendio/sliced_llama
A gist pertaining to said example: https://gist.github.com/silphendio/535cd9c1821aa1290aa10d587...
Here's a discussion about integrating this capability with ExLlama: https://github.com/turboderp/exllamav2/pull/275
And same as above but for llama.cpp: https://github.com/ggerganov/llama.cpp/issues/4718#issuecomm...
-
What do you use to run your models?
Sorry, I'm somewhat familiar with this term (I've seen it as a model loader in Oobabooga), but still not following the correlation here. Are you saying I should instead be using this project in lieu of llama.cpp? Or are you saying that there is, perhaps, an exllamav2 "extension" or similar within llama.cpp that I can use?
-
I just started having problems with the colab again. I get errors and it just stops. Help?
EDIT: I reported the bug to the exllamav2 Github. It's actually already fixed, just not on any current built release.
-
Yi-34B-200K works on a single 3090 with 47K context/4bpw
install exllamav2 from git with pip install git+https://github.com/turboderp/exllamav2.git. Make sure you have flash attention 2 as well.
-
Tested: ExllamaV2's max context on 24gb with 70B low-bpw & speculative sampling performance
Recent releases for exllamav2 brings working fp8 cache support, which I've been very excited to test. This feature doubles the maximum context length you can run with your model, without any visible downsides.
-
Show HN: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context
Without batching, I was actually thinking that's kind of modest.
ExllamaV2 will get 48 tokens/s on a 4090, which is much slower/cheaper than an H100:
https://github.com/turboderp/exllamav2#performance
I didn't test codellama, but the 3090 TI figures are in the ballpark of my generation speed on a 3090.
-
Guide for Llama2 70b model merging and exllama2 quantization
First, you need the convert.py script from turboderp's Exllama2 repo. You can read all about the convert.py arguments here.
What are some alternatives?
koboldcpp - Run GGUF models easily with a KoboldAI UI. One File. Zero Install.
tabbyAPI - The official API server for Exllama. OAI compatible, lightweight, and fast.
SillyTavern - LLM Frontend for Power Users.
llama.cpp - LLM inference in C/C++
textgen - Open-source desktop app for local LLMs. Text, vision, tool-calling, OpenAI/Anthropic-compatible API. 100% private.