Instructions to use mradermacher/AetherDrake-SFT-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/AetherDrake-SFT-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/AetherDrake-SFT-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/AetherDrake-SFT-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/AetherDrake-SFT-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/AetherDrake-SFT-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/AetherDrake-SFT-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/AetherDrake-SFT-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/AetherDrake-SFT-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/AetherDrake-SFT-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/AetherDrake-SFT-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/AetherDrake-SFT-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/AetherDrake-SFT-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/AetherDrake-SFT-GGUF with Ollama:
ollama run hf.co/mradermacher/AetherDrake-SFT-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/AetherDrake-SFT-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 mradermacher/AetherDrake-SFT-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 mradermacher/AetherDrake-SFT-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/AetherDrake-SFT-GGUF to start chatting
- Pi
How to use mradermacher/AetherDrake-SFT-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/AetherDrake-SFT-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": "mradermacher/AetherDrake-SFT-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/AetherDrake-SFT-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/AetherDrake-SFT-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/AetherDrake-SFT-GGUF:Q4_K_M
Run Hermes
hermes
- OpenClaw new
How to use mradermacher/AetherDrake-SFT-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/AetherDrake-SFT-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/AetherDrake-SFT-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 mradermacher/AetherDrake-SFT-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/AetherDrake-SFT-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/AetherDrake-SFT-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/AetherDrake-SFT-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.AetherDrake-SFT-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from nico1
Browse files- .gitattributes +12 -0
- AetherDrake-SFT.IQ4_XS.gguf +3 -0
- AetherDrake-SFT.Q2_K.gguf +3 -0
- AetherDrake-SFT.Q3_K_L.gguf +3 -0
- AetherDrake-SFT.Q3_K_M.gguf +3 -0
- AetherDrake-SFT.Q3_K_S.gguf +3 -0
- AetherDrake-SFT.Q4_K_M.gguf +3 -0
- AetherDrake-SFT.Q4_K_S.gguf +3 -0
- AetherDrake-SFT.Q5_K_M.gguf +3 -0
- AetherDrake-SFT.Q5_K_S.gguf +3 -0
- AetherDrake-SFT.Q6_K.gguf +3 -0
- AetherDrake-SFT.Q8_0.gguf +3 -0
- AetherDrake-SFT.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 |
+
AetherDrake-SFT.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
AetherDrake-SFT.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
AetherDrake-SFT.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
AetherDrake-SFT.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
AetherDrake-SFT.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
AetherDrake-SFT.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
AetherDrake-SFT.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
AetherDrake-SFT.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
AetherDrake-SFT.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
AetherDrake-SFT.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
AetherDrake-SFT.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
AetherDrake-SFT.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
AetherDrake-SFT.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16e7adbe8f9af4d9a7a9110c837d340af7da870a685e8cf8a1a0d9a38384d197
|
| 3 |
+
size 4484368576
|
AetherDrake-SFT.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7503ce8fdf5388af8fccab67ca89028d76b0627ffddbf092f34c8c0d8b00a32
|
| 3 |
+
size 3179137216
|
AetherDrake-SFT.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d7ff8c0d99b1b5a883a08c8d4ff2a7624af689570afaa115fdbd2663a89b31a8
|
| 3 |
+
size 4321962176
|
AetherDrake-SFT.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:434b36886eabd4ba39865ce8a48be429ba0aa02e02558971f35d901878faef82
|
| 3 |
+
size 4018923712
|
AetherDrake-SFT.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df078b303d85b4a34cf46ec88b9a4676df77694e970bdaa6ea18bd9ff2bacaff
|
| 3 |
+
size 3664505024
|
AetherDrake-SFT.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e456a886cd034e869b46def8a4a4803a46377aba368129f70d4e21462d37a9d4
|
| 3 |
+
size 4920740032
|
AetherDrake-SFT.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ddbecd825225459bbab14c8b531388c7eb0ebaa41881fcbffa3cb78af51f488b
|
| 3 |
+
size 4692674752
|
AetherDrake-SFT.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fbe5c7ee76778b26693e8d8041abb1206cfffac6be8e320a333b704a109169fd
|
| 3 |
+
size 5732993216
|
AetherDrake-SFT.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85d24c49607612aaf442e54458b74bbc5e2863816f98c8e97f73d6b270ce2e7d
|
| 3 |
+
size 5599299776
|
AetherDrake-SFT.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7b32b8047f29e3e998a2dc45de3ddbfd6265151d53b3ed645186ccff049e792
|
| 3 |
+
size 6596012224
|
AetherDrake-SFT.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c6c1760dc2abeddc500f47873e0bcf2a52c8385013124c91c63cf854896177c1
|
| 3 |
+
size 8540776640
|
AetherDrake-SFT.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:422bbc23022b7e085be264956a9e558504ab923a8040d370378f35b936c26e31
|
| 3 |
+
size 16068896960
|