Instructions to use mradermacher/MediLlama-3.2-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/MediLlama-3.2-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/MediLlama-3.2-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/MediLlama-3.2-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 mradermacher/MediLlama-3.2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/MediLlama-3.2-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 mradermacher/MediLlama-3.2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/MediLlama-3.2-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 mradermacher/MediLlama-3.2-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/MediLlama-3.2-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 mradermacher/MediLlama-3.2-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/MediLlama-3.2-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/MediLlama-3.2-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/MediLlama-3.2-GGUF with Ollama:
ollama run hf.co/mradermacher/MediLlama-3.2-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/MediLlama-3.2-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/MediLlama-3.2-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "mradermacher/MediLlama-3.2-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/MediLlama-3.2-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/MediLlama-3.2-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/MediLlama-3.2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/MediLlama-3.2-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.MediLlama-3.2-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/MediLlama-3.2-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 mradermacher/MediLlama-3.2-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 mradermacher/MediLlama-3.2-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/MediLlama-3.2-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/MediLlama-3.2-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 "mradermacher/MediLlama-3.2-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"
uploaded from rain
Browse files- .gitattributes +12 -0
- MediLlama-3.2.IQ4_XS.gguf +3 -0
- MediLlama-3.2.Q2_K.gguf +3 -0
- MediLlama-3.2.Q3_K_L.gguf +3 -0
- MediLlama-3.2.Q3_K_M.gguf +3 -0
- MediLlama-3.2.Q3_K_S.gguf +3 -0
- MediLlama-3.2.Q4_K_M.gguf +3 -0
- MediLlama-3.2.Q4_K_S.gguf +3 -0
- MediLlama-3.2.Q5_K_M.gguf +3 -0
- MediLlama-3.2.Q5_K_S.gguf +3 -0
- MediLlama-3.2.Q6_K.gguf +3 -0
- MediLlama-3.2.Q8_0.gguf +3 -0
- MediLlama-3.2.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ 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 |
+
MediLlama-3.2.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
MediLlama-3.2.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
MediLlama-3.2.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
MediLlama-3.2.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
MediLlama-3.2.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
MediLlama-3.2.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
MediLlama-3.2.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
MediLlama-3.2.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
MediLlama-3.2.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
MediLlama-3.2.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
MediLlama-3.2.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
MediLlama-3.2.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
MediLlama-3.2.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6535118c24dc89a0aeb57cad437eec0c56a81dad4406b696703ef7f796108495
|
| 3 |
+
size 1840907232
|
MediLlama-3.2.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2bb94ebe9161af13fefc6ce41b959075bc463d4788d73aff70c7e7418a257208
|
| 3 |
+
size 1363936224
|
MediLlama-3.2.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d5b0eb8597400185cbf5e79260008d76a407a0a82bcc1bcb732ee80d5f0f217
|
| 3 |
+
size 1815348192
|
MediLlama-3.2.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d38a4ccdf80c4e6cb9ffb729d06e3471dbea288e5e5fa35584959bc4990fd978
|
| 3 |
+
size 1687159776
|
MediLlama-3.2.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:202caab135af432c2032d37aa0d665a83c61867c20b81313b32c6bfedfa1aa65
|
| 3 |
+
size 1542849504
|
MediLlama-3.2.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac8791ce5e211bb034fdf619c23ce40eeaed59164fcd7b7b7168f2bd72df9b8d
|
| 3 |
+
size 2019378144
|
MediLlama-3.2.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a847d689836029adebde723e05300238184fce7573091b81aaa47b406f7f9cfa
|
| 3 |
+
size 1928201184
|
MediLlama-3.2.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9af3d444a8737c9db6fe053d9d1d57a1e95f5c8a8ff66914ea090b594eb8634a
|
| 3 |
+
size 2322154464
|
MediLlama-3.2.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c41beadb4087e234f541c41a51b1423b8796a6e7e56db9701f12a8f00512ae1d
|
| 3 |
+
size 2269512672
|
MediLlama-3.2.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4eb7b6a6e308d8d8fc5166bbc060c2387f9ade237fa268760a88c7cafda6c63b
|
| 3 |
+
size 2643854304
|
MediLlama-3.2.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b854701d2bd803cd23b8887cea311dd8e702051b58463ef9b6c26cc2dcb82dd7
|
| 3 |
+
size 3421899744
|
MediLlama-3.2.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75306cdd436c79564cf243de8e117d426472e4f96d403cd41186e7674c030c71
|
| 3 |
+
size 6433688544
|