Instructions to use MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-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 MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-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 MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M
Use Docker
docker model run hf.co/MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-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": "MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M
- Ollama
How to use MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF with Ollama:
ollama run hf.co/MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M
- Unsloth Studio
How to use MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-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 MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-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 MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF to start chatting
- Pi
How to use MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-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": "MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF with Docker Model Runner:
docker model run hf.co/MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M
- Lemonade
How to use MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Llama-3.2-3B-Instruct-abliterated-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-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 MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
Upload folder using huggingface_hub (#1)
Browse files- 768fe42be2d7d1b30f70aed316d700de43b725a8cd6975d0acf0df103ec93176 (bb630ddfc022d2b1844b13e192192f51749a7382)
- 8258042792bd6f721995a3d91d77bec090e1bcae710da9d127748f71c360aa52 (37d7913dddb688119f17bfff2f6ac84687ab964c)
- a620a1304d7d4a372c56bd9f0c3ee6744446a321e45e5240f7bff362373d3f43 (02588ef5a57acde7c209974f80d098d9ffc041f0)
- 8314800c3975ff625b3a08b0f741514a4b98ccc6d46ca4798ac274264e3b5c7e (44f34bed4a24f2010fb53a3b629b56db9c8f6ea0)
- 2f9232b9d324dc7639e8af725733118a6de252d4b619c73e146eeed82c24da3b (9e4407dbfb29fe39ff1fee8bfd5b0d3986f2fa4a)
- 7af770ad31a04b6240931cf0623d9a6555c8a19fae1e547ad225975ada642a16 (de9b2293f38e2403d26a2a372e0c5ec8c61f084c)
- 343d1fcd57141b651444bd57f34c2480324603ac865517fb68b2e139f02db543 (272207c2442763b134819184f54e4bea6f756aff)
- 731271b746163b71d15abd5aa4ba7ba58f19ddfc9aeebd6d357c52f3aff569e6 (20b1731726164cca52ace6543daf181e71d6b5c7)
- 69e8314620bd1356d3d1c0f9b33851cb318b727251f50bd5ad8f11786a0c7882 (10853ddf11da424ac48e7441794b95c3a1a3521d)
- b489e5d943c3ac305950f802a3fe16023b070b4342372db5e4ad259bcc1109d1 (30f6cca3bfa4d2fd3289fa6e0d21745722f064de)
- e79f1f01cc24a43712f14eb388af9a00971ce5072d8e0da16d484c7131ac8330 (8b435a20b6ab374ca50ee5be6697d69dac5700a6)
- 1c1bf9170445beba8de63dbc910f75e4b78be39253fa992df8748ba84c448097 (0fe5762345b0132c7297fa3f49b71411cd04acc9)
- 80b47a424d98c6ac2625bb837a4ea78e66afe52e2d7a2c150711713ee3c36b11 (ad504ae383a4116e541891f1261edb4fee218623)
- 5923e8cb4ddee3b08d09e4ddf9c51cb3455ba039cf4a96305401038795b7cac1 (51b5969149c20d2a55ff0852cddc090e8476c736)
- 34ea1f62c69bdfe441ffe6585680682962ab67d976a052208b243b9d8aff8985 (f57c1a5a3e2eb1892942db65c36dcddfce28123e)
- .gitattributes +17 -0
- Llama-3.2-3B-Instruct-abliterated-GGUF_imatrix.dat +3 -0
- Llama-3.2-3B-Instruct-abliterated.IQ1_M.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.IQ1_S.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.IQ2_XS.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.IQ3_XS.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.IQ4_XS.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.Q2_K.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.Q3_K_L.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.Q3_K_M.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.Q3_K_S.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.Q4_K_M.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.Q4_K_S.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.Q5_K_M.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.Q5_K_S.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.Q6_K.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.Q8_0.gguf +3 -0
- Llama-3.2-3B-Instruct-abliterated.fp16.gguf +3 -0
- README.md +46 -0
|
@@ -33,3 +33,20 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
Llama-3.2-3B-Instruct-abliterated-GGUF_imatrix.dat filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Llama-3.2-3B-Instruct-abliterated.IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Llama-3.2-3B-Instruct-abliterated.IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Llama-3.2-3B-Instruct-abliterated.IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Llama-3.2-3B-Instruct-abliterated.IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Llama-3.2-3B-Instruct-abliterated.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Llama-3.2-3B-Instruct-abliterated.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Llama-3.2-3B-Instruct-abliterated.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Llama-3.2-3B-Instruct-abliterated.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Llama-3.2-3B-Instruct-abliterated.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Llama-3.2-3B-Instruct-abliterated.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Llama-3.2-3B-Instruct-abliterated.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Llama-3.2-3B-Instruct-abliterated.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Llama-3.2-3B-Instruct-abliterated.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Llama-3.2-3B-Instruct-abliterated.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Llama-3.2-3B-Instruct-abliterated.fp16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Llama-3.2-3B-Instruct-abliterated.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:992128a1e2694a6678293455163958b2d4ab71296ec702bcf44bcdac8a03bc4c
|
| 3 |
+
size 2988366
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4cefc64418d1f8df80fdee91efc6ddecd10bf29cc39f44c21fa7017413de57a
|
| 3 |
+
size 1053473536
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fa3e58cf050d65630872f7a727995993dadbd29ecbd91f85a5ccf353aa956338
|
| 3 |
+
size 997440256
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f06e5d59425ba88951107eb522b7e0bf5654bd472d01e9aa96835a9f4680269
|
| 3 |
+
size 1229830912
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2366de5af0ffd93721b92e5c4051a3c9cc9ab3753a757f444ad26a0d6a4d5203
|
| 3 |
+
size 1646086912
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1ee211b70e8a6a11210b48b270a3f835bf1afbdfa5b00fce2c9cfcfe6319acfa
|
| 3 |
+
size 2038424320
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e59894fd441fa4659eada247cff2fc2a97baaa3d3c68c5fbd4e5fe8cc552cd3b
|
| 3 |
+
size 1493218048
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1b793dcd5ef212e3ab52912a02fcb1da4b2887f2a48b3d6721ac94ce010519a
|
| 3 |
+
size 1984645888
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87d698cec3acfaebdcc202e0dee429dcec2937a99601e62007583512a0a09e84
|
| 3 |
+
size 1856457472
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e822fdfe6396a7f35f647aec34ec6426677d3d072c87db1f6ca2ef0ada968363
|
| 3 |
+
size 1712147200
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5598e7941cc7acb16cf242970d97f34b5e62d4e9ee3827534c64415c7873bb2
|
| 3 |
+
size 2241004288
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:254fe08c2643bf54eca4228e620614a7dee22e81ae4c14697605127c2e6e5623
|
| 3 |
+
size 2149827328
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e80fa756aeb97cea929d4dc81bad46de565de28eb5579fcbd6b2fc24e5b6df5b
|
| 3 |
+
size 2593030912
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:433393a1cb8bd0738135d7fc323212af94b264d4c70de66f6c3e391c683623b0
|
| 3 |
+
size 2540389120
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2753ffcad0e2533bc80cdd7b2fe45690f5725a77b97af0d1cec8efaf045ccd36
|
| 3 |
+
size 2967059200
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19cd7258eb32e53d905be558a2b1bb9344efa86f96e9216145d5591942a61826
|
| 3 |
+
size 3840527104
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cdb59b0e386a2df0131f880e3604ac3fc11903bd32501eec76d0fe93c8c69b5b
|
| 3 |
+
size 7221692960
|
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- quantized
|
| 4 |
+
- 2-bit
|
| 5 |
+
- 3-bit
|
| 6 |
+
- 4-bit
|
| 7 |
+
- 5-bit
|
| 8 |
+
- 6-bit
|
| 9 |
+
- 8-bit
|
| 10 |
+
- GGUF
|
| 11 |
+
- text-generation
|
| 12 |
+
- text-generation
|
| 13 |
+
model_name: Llama-3.2-3B-Instruct-abliterated-GGUF
|
| 14 |
+
base_model: huihui-ai/Llama-3.2-3B-Instruct-abliterated
|
| 15 |
+
inference: false
|
| 16 |
+
model_creator: huihui-ai
|
| 17 |
+
pipeline_tag: text-generation
|
| 18 |
+
quantized_by: MaziyarPanahi
|
| 19 |
+
---
|
| 20 |
+
# [MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF](https://huggingface.co/MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF)
|
| 21 |
+
- Model creator: [huihui-ai](https://huggingface.co/huihui-ai)
|
| 22 |
+
- Original model: [huihui-ai/Llama-3.2-3B-Instruct-abliterated](https://huggingface.co/huihui-ai/Llama-3.2-3B-Instruct-abliterated)
|
| 23 |
+
|
| 24 |
+
## Description
|
| 25 |
+
[MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF](https://huggingface.co/MaziyarPanahi/Llama-3.2-3B-Instruct-abliterated-GGUF) contains GGUF format model files for [huihui-ai/Llama-3.2-3B-Instruct-abliterated](https://huggingface.co/huihui-ai/Llama-3.2-3B-Instruct-abliterated).
|
| 26 |
+
|
| 27 |
+
### About GGUF
|
| 28 |
+
|
| 29 |
+
GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp.
|
| 30 |
+
|
| 31 |
+
Here is an incomplete list of clients and libraries that are known to support GGUF:
|
| 32 |
+
|
| 33 |
+
* [llama.cpp](https://github.com/ggerganov/llama.cpp). The source project for GGUF. Offers a CLI and a server option.
|
| 34 |
+
* [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
|
| 35 |
+
* [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration. Linux available, in beta as of 27/11/2023.
|
| 36 |
+
* [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions. Supports GPU acceleration.
|
| 37 |
+
* [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with GPU accel across all platforms and GPU architectures. Especially good for story telling.
|
| 38 |
+
* [GPT4All](https://gpt4all.io/index.html), a free and open source local running GUI, supporting Windows, Linux and macOS with full GPU accel.
|
| 39 |
+
* [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with many interesting and unique features, including a full model library for easy model selection.
|
| 40 |
+
* [Faraday.dev](https://faraday.dev/), an attractive and easy to use character-based chat GUI for Windows and macOS (both Silicon and Intel), with GPU acceleration.
|
| 41 |
+
* [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
|
| 42 |
+
* [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server. Note, as of time of writing (November 27th 2023), ctransformers has not been updated in a long time and does not support many recent models.
|
| 43 |
+
|
| 44 |
+
## Special thanks
|
| 45 |
+
|
| 46 |
+
🙏 Special thanks to [Georgi Gerganov](https://github.com/ggerganov) and the whole team working on [llama.cpp](https://github.com/ggerganov/llama.cpp/) for making all of this possible.
|