bluevoid-pl/zeta2-GGUF overview
Zeta 2 GUFF This is direct GUFF of zed industries/zeta 2 https://huggingface.co/zed industries/zeta 2 . Quantizations prefixed with I in this repo do not use a…
Runs locally from ~290.4 MB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| zeta2-BF16.gguf | GGUF | BF16 | 15.37 GB | Download |
| zeta2-F16.gguf | GGUF | F16 | 15.37 GB | Download |
| zeta2-IQ2_M.gguf | GGUF | IQ2_M | 290.4 MB | Download |
| zeta2-IQ3_XXS.gguf | GGUF | IQ3_XXS | 340.8 MB | Download |
| zeta2-IQ4_NL.gguf | GGUF | IQ4_NL | 4.52 GB | Download |
| zeta2-IQ4_XS.gguf | GGUF | IQ4_XS | 4.31 GB | Download |
| zeta2-Q3_K_M.gguf | GGUF | Q3_K_M | 3.87 GB | Download |
| zeta2-Q3_K_S.gguf | GGUF | Q3_K_S | 3.56 GB | Download |
| zeta2-Q4_0.gguf | GGUF | Q4_0 | 4.48 GB | Download |
| zeta2-Q4_1.gguf | GGUF | Q4_1 | 4.92 GB | Download |
| zeta2-Q4_K_M.gguf | GGUF | Q4_K_M | 4.73 GB | Download |
| zeta2-Q4_K_S.gguf | GGUF | Q4_K_S | 4.52 GB | Download |
| zeta2-Q5_K_M.gguf | GGUF | Q5_K_M | 5.50 GB | Download |
| zeta2-Q5_K_S.gguf | GGUF | Q5_K_S | 5.32 GB | Download |
| zeta2-Q6_K.gguf | GGUF | Q6_K | 6.31 GB | Download |
| zeta2-Q8_0.gguf | GGUF | Q8_0 | 8.17 GB | Download |
Model Details
| Model ID | bluevoid-pl/zeta2-GGUF |
|---|---|
| Author | bluevoid-pl |
| Pipeline | — |
| License | apache-2.0 |
| Base model | zed-industries/zeta-2 |
| Last modified | 2026-08-14T20:47:37.000Z |
Model README
---
base_model: zed-industries/zeta-2
tags:
- text-generation-inference
- transformers
- edit-prediction
- next-edit-suggestion
license: apache-2.0
language:
- en
---
Zeta 2 GUFF
This is direct GUFF of zed-industries/zeta-2.
Quantizations prefixed with I in this repo do not use an "importance matrix", so the quality of those models might be limited.
Zeta 2 is a code edit prediction (also known as next-edit suggestion) model finetuned from ByteDance-Seed/Seed-Coder-8B-Base.
Given code context, edits history and an editable region around the cursor, it predicts the rewritten content for that region.
Zed Editor + Llama.cpp
This guide assumes that you will use GPU and it has enough vram to load model in full.
I wasn’t able to get significantly better predictions from this model compared with the previous Zeta model, so quality may vary.
- install llama.cpp (preferably with GPU acceleration)
- Download model manually (optionally you can use
-hfoption in later commands to load model from HuggingFace) - run model to check if it works:
```sh
llama-cli -m model.guff
```
- start Llama.cpp server:
```sh
llama-server -m zeta2-Q4_K_M.gguf --port 13377 --ctx-size 4096 --jinja -ngl 100 --host 0.0.0.0 --api-key "APIKEY"
```
| Attribute | Explenation |
| --- | --- |
| -m zeta2-Q4_K_M.gguf | Loads the model from file |
| --port 13377 | Makes the server listen on port 13377 instead of the default 8080. |
| --ctx-size 4096 | Sets the context window size to 4096 tokens. |
| --jinja | Use embeded jijna template insted of default |
| -ngl 100 | Offloads up to 100 layers to the GPU, if supported. |
| --host 0.0.0.0 | Binds the server to all network interfaces, so it can accept connections from other machines on your network, not just localhost. |
| --api-key "APIKEY" | Zed requires some key to be set |
- Open Zed Editor Settings(GUI), and choose AI. Under Edit Predictions, Click Configure.
- Scroll down to section OpenAI compatible api
- Set api key to
APIKEY!!! Press Enter !!!, this step is not optional even if you use only localhost( at the time of writing of this guide ) - Set api url to
http://localhost:13378/v1/completions!!! Press Enter !!! - Set model to
zeta2-Q4_K_M.gguf!!! Press Enter !!! - (optional) set max output tokens to 256
- scroll up
- Set Provider to OpenAI cpmatible api
- Restart zed
- Completions should work now. (quality may vary)
~~Zed Editor + Ollama mini-guide~~ Ollama support seams to not be the beast at the moment I recomend using llama.cpp
- Pull model ( This example will use qwant Q4_K_M, you can use diffrent qwant if you want )
```sh
ollama pull hf.co/bluevoid-pl/zeta2-GUFF:Q4_K_M
```
- Configure Zed Editor
1. Open Settings(GUI), and choose AI. Under Edit Predictions, Click Configure.
3. Scroll down
4. Confirm the host URL is: http://localhost:11434 <-- If you changed default this need to be modified
5. Set Model to bluevoid-pl/zeta2-GUFF:Q4_K_M <-- Same qwant as before
6. Scroll to top
7. Set Provider to Ollama
If you have any proposals/recommendations leave them in community discussions.
Info
- Developed by: Zed Industries
- License: Apache-2.0
- Fine-tuned from: ByteDance-Seed/Seed-Coder-8B-Base
- Model version: 0225-s3-seed
Run bluevoid-pl/zeta2-GGUF with guIDE
Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.
Source: Hugging Face · Compare models