Instructions to use evalengine/unbound-e4b-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use evalengine/unbound-e4b-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="evalengine/unbound-e4b-gguf", filename="mmproj-unbound-e4b.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use evalengine/unbound-e4b-gguf with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf evalengine/unbound-e4b-gguf:Q4_K_M # Run inference directly in the terminal: llama-cli -hf evalengine/unbound-e4b-gguf:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf evalengine/unbound-e4b-gguf:Q4_K_M # Run inference directly in the terminal: llama-cli -hf evalengine/unbound-e4b-gguf:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf evalengine/unbound-e4b-gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf evalengine/unbound-e4b-gguf:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf evalengine/unbound-e4b-gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf evalengine/unbound-e4b-gguf:Q4_K_M
Use Docker
docker model run hf.co/evalengine/unbound-e4b-gguf:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use evalengine/unbound-e4b-gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "evalengine/unbound-e4b-gguf" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "evalengine/unbound-e4b-gguf", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/evalengine/unbound-e4b-gguf:Q4_K_M
- Ollama
How to use evalengine/unbound-e4b-gguf with Ollama:
ollama run hf.co/evalengine/unbound-e4b-gguf:Q4_K_M
- Unsloth Studio new
How to use evalengine/unbound-e4b-gguf with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for evalengine/unbound-e4b-gguf to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for evalengine/unbound-e4b-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for evalengine/unbound-e4b-gguf to start chatting
- Pi new
How to use evalengine/unbound-e4b-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf evalengine/unbound-e4b-gguf:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "evalengine/unbound-e4b-gguf:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use evalengine/unbound-e4b-gguf with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf evalengine/unbound-e4b-gguf:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default evalengine/unbound-e4b-gguf:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use evalengine/unbound-e4b-gguf with Docker Model Runner:
docker model run hf.co/evalengine/unbound-e4b-gguf:Q4_K_M
- Lemonade
How to use evalengine/unbound-e4b-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull evalengine/unbound-e4b-gguf:Q4_K_M
Run and chat with the model
lemonade run user.unbound-e4b-gguf-Q4_K_M
List all available models
lemonade list
Flatten to HF canonical naming: <model>.<QUANT>-NNNNN-of-NNNNN.gguf
Browse files- .gitattributes +31 -0
- unbound-e4b-web.Q2_K-00001-of-00004.gguf +3 -0
- unbound-e4b-web.Q2_K-00002-of-00004.gguf +3 -0
- unbound-e4b-web.Q2_K-00003-of-00004.gguf +3 -0
- unbound-e4b-web.Q2_K-00004-of-00004.gguf +3 -0
- unbound-e4b-web.Q4_K_M-00001-of-00004.gguf +3 -0
- unbound-e4b-web.Q4_K_M-00002-of-00004.gguf +3 -0
- unbound-e4b-web.Q4_K_M-00003-of-00004.gguf +3 -0
- unbound-e4b-web.Q4_K_M-00004-of-00004.gguf +3 -0
- unbound-e4b.Q2_K-00001-of-00004.gguf +3 -0
- unbound-e4b.Q2_K-00002-of-00004.gguf +3 -0
- unbound-e4b.Q2_K-00003-of-00004.gguf +3 -0
- unbound-e4b.Q2_K-00004-of-00004.gguf +3 -0
- unbound-e4b.Q3_K_M-00001-of-00004.gguf +3 -0
- unbound-e4b.Q3_K_M-00002-of-00004.gguf +3 -0
- unbound-e4b.Q3_K_M-00003-of-00004.gguf +3 -0
- unbound-e4b.Q3_K_M-00004-of-00004.gguf +3 -0
- unbound-e4b.Q4_K_M-00001-of-00004.gguf +3 -0
- unbound-e4b.Q4_K_M-00002-of-00004.gguf +3 -0
- unbound-e4b.Q4_K_M-00003-of-00004.gguf +3 -0
- unbound-e4b.Q4_K_M-00004-of-00004.gguf +3 -0
- unbound-e4b.Q6_K-00001-of-00005.gguf +3 -0
- unbound-e4b.Q6_K-00002-of-00005.gguf +3 -0
- unbound-e4b.Q6_K-00003-of-00005.gguf +3 -0
- unbound-e4b.Q6_K-00004-of-00005.gguf +3 -0
- unbound-e4b.Q6_K-00005-of-00005.gguf +3 -0
- unbound-e4b.Q8_0-00001-of-00006.gguf +3 -0
- unbound-e4b.Q8_0-00002-of-00006.gguf +3 -0
- unbound-e4b.Q8_0-00003-of-00006.gguf +3 -0
- unbound-e4b.Q8_0-00004-of-00006.gguf +3 -0
- unbound-e4b.Q8_0-00005-of-00006.gguf +3 -0
- unbound-e4b.Q8_0-00006-of-00006.gguf +3 -0
.gitattributes
CHANGED
|
@@ -65,3 +65,34 @@ unbound-e4b-Q2_K-wllama-00002-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 65 |
unbound-e4b-Q2_K-wllama-00003-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
unbound-e4b-Q2_K-wllama-00004-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
mmproj-unbound-e4b.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
unbound-e4b-Q2_K-wllama-00003-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
unbound-e4b-Q2_K-wllama-00004-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
mmproj-unbound-e4b.gguf filter=lfs diff=lfs merge=lfs -text
|
| 68 |
+
unbound-e4b.Q2_K-00001-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 69 |
+
unbound-e4b.Q2_K-00002-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 70 |
+
unbound-e4b.Q2_K-00003-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 71 |
+
unbound-e4b.Q2_K-00004-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 72 |
+
unbound-e4b.Q3_K_M-00001-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 73 |
+
unbound-e4b.Q3_K_M-00002-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 74 |
+
unbound-e4b.Q3_K_M-00003-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 75 |
+
unbound-e4b.Q3_K_M-00004-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 76 |
+
unbound-e4b.Q4_K_M-00001-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 77 |
+
unbound-e4b.Q4_K_M-00002-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 78 |
+
unbound-e4b.Q4_K_M-00003-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 79 |
+
unbound-e4b.Q4_K_M-00004-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 80 |
+
unbound-e4b.Q6_K-00001-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 81 |
+
unbound-e4b.Q6_K-00002-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 82 |
+
unbound-e4b.Q6_K-00003-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 83 |
+
unbound-e4b.Q6_K-00004-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 84 |
+
unbound-e4b.Q6_K-00005-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 85 |
+
unbound-e4b.Q8_0-00001-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 86 |
+
unbound-e4b.Q8_0-00002-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 87 |
+
unbound-e4b.Q8_0-00003-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 88 |
+
unbound-e4b.Q8_0-00004-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 89 |
+
unbound-e4b.Q8_0-00005-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 90 |
+
unbound-e4b.Q8_0-00006-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 91 |
+
unbound-e4b-web.Q4_K_M-00001-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 92 |
+
unbound-e4b-web.Q4_K_M-00002-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 93 |
+
unbound-e4b-web.Q4_K_M-00003-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 94 |
+
unbound-e4b-web.Q4_K_M-00004-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 95 |
+
unbound-e4b-web.Q2_K-00001-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 96 |
+
unbound-e4b-web.Q2_K-00002-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 97 |
+
unbound-e4b-web.Q2_K-00003-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 98 |
+
unbound-e4b-web.Q2_K-00004-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
unbound-e4b-web.Q2_K-00001-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:572213dabfdf2f8f0fbd5a5a7da5ceedd5441be1c632929c4abfd43a233617d8
|
| 3 |
+
size 70842784
|
unbound-e4b-web.Q2_K-00002-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0af588053445c28e6d553f1315beb85de7452c35c89131a064b06554241d8d47
|
| 3 |
+
size 1937768640
|
unbound-e4b-web.Q2_K-00003-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e18a9fc48423cd2999936bac390e4c4a2f7420437480dea9e59fd8c75c66e47
|
| 3 |
+
size 1492606208
|
unbound-e4b-web.Q2_K-00004-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c113490757b40c4c9a242df1ff34aa77a9f0b332c8f9bb5ec1a0b9a532ed4de
|
| 3 |
+
size 412093184
|
unbound-e4b-web.Q4_K_M-00001-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81f98e8b0c827fe2de4aa94a15b8e58e1e515ebf1e3666c2a538d539c352e016
|
| 3 |
+
size 70842784
|
unbound-e4b-web.Q4_K_M-00002-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0af588053445c28e6d553f1315beb85de7452c35c89131a064b06554241d8d47
|
| 3 |
+
size 1937768640
|
unbound-e4b-web.Q4_K_M-00003-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2a25f35ed781e7bd851dd277dbbbb3d99f96d0fc4b230e0bb33a11572bfcaa5
|
| 3 |
+
size 1498648448
|
unbound-e4b-web.Q4_K_M-00004-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a739f96f8f03e32dd7ede4b7e4f5814706697cf286482c67a025f7cfa446e42c
|
| 3 |
+
size 1331542176
|
unbound-e4b.Q2_K-00001-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:572213dabfdf2f8f0fbd5a5a7da5ceedd5441be1c632929c4abfd43a233617d8
|
| 3 |
+
size 70842784
|
unbound-e4b.Q2_K-00002-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8c2d4a36067de3cfd61d2cc7502b8e29420370e14dc3943478aa64c322bdc50
|
| 3 |
+
size 2312110272
|
unbound-e4b.Q2_K-00003-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dcb7e56d9de934c8a337ed12977c4c073fc864d2de8c12f60e4d702476759fe5
|
| 3 |
+
size 1492038016
|
unbound-e4b.Q2_K-00004-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71b9fa51d22b6f19ca47c699e7533b95d31ffbc40f4a0289d4be3bbfc0bf9a89
|
| 3 |
+
size 501790336
|
unbound-e4b.Q3_K_M-00001-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c94c5fc0a71a2e2287b62621941c0384bb05c32a005f185900acb66cad38ece
|
| 3 |
+
size 70842784
|
unbound-e4b.Q3_K_M-00002-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8c2d4a36067de3cfd61d2cc7502b8e29420370e14dc3943478aa64c322bdc50
|
| 3 |
+
size 2312110272
|
unbound-e4b.Q3_K_M-00003-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e59f072743b3a2f21c71439823c33d92056cdf06508850ec190f73eaaa4bdfa6
|
| 3 |
+
size 1497303136
|
unbound-e4b.Q3_K_M-00004-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:705837a25d9ad9590b36bdf276cc6f99b1b4fa02c4a27d9f617747c51075f49b
|
| 3 |
+
size 942804928
|
unbound-e4b.Q4_K_M-00001-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81f98e8b0c827fe2de4aa94a15b8e58e1e515ebf1e3666c2a538d539c352e016
|
| 3 |
+
size 70842784
|
unbound-e4b.Q4_K_M-00002-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8c2d4a36067de3cfd61d2cc7502b8e29420370e14dc3943478aa64c322bdc50
|
| 3 |
+
size 2312110272
|
unbound-e4b.Q4_K_M-00003-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71047047f8505c78715ce35d4030aed3163bc068f6a762f2c6c9356533ca7896
|
| 3 |
+
size 1489670016
|
unbound-e4b.Q4_K_M-00004-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f5cf9ac5679086c986c7ac25c961706927b73d759e2c26760c6de20e34a9c39
|
| 3 |
+
size 1429649536
|
unbound-e4b.Q6_K-00001-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec0d555dfa30084d7983d530aa8b3cb30d7046b45c56c791b5736cfb5d3bb8c6
|
| 3 |
+
size 70842784
|
unbound-e4b.Q6_K-00002-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:490c2dbd77c0b52439002b945c8c5f44a9b787f36990dc6c9eca0f9ff02445dc
|
| 3 |
+
size 2312110272
|
unbound-e4b.Q6_K-00003-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ab057342f9cbfa9a8751f6f9d595e72a78650ec76af25fdc5cd7267c7f2ccfa
|
| 3 |
+
size 1499498208
|
unbound-e4b.Q6_K-00004-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af403658622e923991e306863f9a01655aff916321ecc98fc81f5267a2f1a6c2
|
| 3 |
+
size 1485878496
|
unbound-e4b.Q6_K-00005-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7bf5f8461704042709d6f2c6c21ee8116b7d1f7e9cc9a4256711caecee6a80fa
|
| 3 |
+
size 803749056
|
unbound-e4b.Q8_0-00001-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97f13dd20977eb7ce6828b001713117504917a3d16899c806f03c35a5c252554
|
| 3 |
+
size 70842784
|
unbound-e4b.Q8_0-00002-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:018daa84ee9f012c4bffd4028a6cfef5e8053873697593b3df2dae300b1f4f33
|
| 3 |
+
size 2994733248
|
unbound-e4b.Q8_0-00003-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:750d01298430055002730f5d2bbd53afb608dafb657af646e8cb5e340119d1ab
|
| 3 |
+
size 1489138528
|
unbound-e4b.Q8_0-00004-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b5eba08e8b093340269209712e306f4212e4377d848d0545fb285d1c65be93d
|
| 3 |
+
size 1483969856
|
unbound-e4b.Q8_0-00005-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0143a2969b40ab68febed5c9d70251ab21a45e445b40e0dcd821f8d57dedb8b2
|
| 3 |
+
size 1481178144
|
unbound-e4b.Q8_0-00006-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df73e77a963f5d3da478781c1dc9cc58a03e8b2f2a6661157df906e2f578a82b
|
| 3 |
+
size 452863040
|