Transformers
GGUF
text-generation-inference
reasoning
thinking
hybrid
efficient
dynamic
aquif
math
coding
small
aquif-3.5
aquif-3.6
llm
conversational
Instructions to use mradermacher/aquif-3.6-1B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/aquif-3.6-1B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/aquif-3.6-1B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/aquif-3.6-1B-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/aquif-3.6-1B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/aquif-3.6-1B-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/aquif-3.6-1B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/aquif-3.6-1B-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/aquif-3.6-1B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/aquif-3.6-1B-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/aquif-3.6-1B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/aquif-3.6-1B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/aquif-3.6-1B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/aquif-3.6-1B-GGUF with Ollama:
ollama run hf.co/mradermacher/aquif-3.6-1B-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/aquif-3.6-1B-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/aquif-3.6-1B-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/aquif-3.6-1B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/aquif-3.6-1B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/aquif-3.6-1B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/aquif-3.6-1B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/aquif-3.6-1B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.aquif-3.6-1B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/aquif-3.6-1B-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/aquif-3.6-1B-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/aquif-3.6-1B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/aquif-3.6-1B-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/aquif-3.6-1B-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/aquif-3.6-1B-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 rich1
Browse files- .gitattributes +12 -0
- aquif-3.6-1B.IQ4_XS.gguf +3 -0
- aquif-3.6-1B.Q2_K.gguf +3 -0
- aquif-3.6-1B.Q3_K_L.gguf +3 -0
- aquif-3.6-1B.Q3_K_M.gguf +3 -0
- aquif-3.6-1B.Q3_K_S.gguf +3 -0
- aquif-3.6-1B.Q4_K_M.gguf +3 -0
- aquif-3.6-1B.Q4_K_S.gguf +3 -0
- aquif-3.6-1B.Q5_K_M.gguf +3 -0
- aquif-3.6-1B.Q5_K_S.gguf +3 -0
- aquif-3.6-1B.Q6_K.gguf +3 -0
- aquif-3.6-1B.Q8_0.gguf +3 -0
- aquif-3.6-1B.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 |
+
aquif-3.6-1B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
aquif-3.6-1B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
aquif-3.6-1B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
aquif-3.6-1B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
aquif-3.6-1B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
aquif-3.6-1B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
aquif-3.6-1B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
aquif-3.6-1B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
aquif-3.6-1B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
aquif-3.6-1B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
aquif-3.6-1B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
aquif-3.6-1B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
aquif-3.6-1B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0312d708f6647bf703de204919075c6ebb8748362efcc8924181e50473253162
|
| 3 |
+
size 1181588544
|
aquif-3.6-1B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3dfab4a2628f07f0a148f6cedbf590836a2237ac525f72798eef7b0a7aa4b901
|
| 3 |
+
size 879897664
|
aquif-3.6-1B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1ac3e600bdfc618c978632e0d061bc32e90f02f9873528b2c9c38e2ddad558a1
|
| 3 |
+
size 1137206336
|
aquif-3.6-1B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7eee22dfd406705850035644581c0a40f63d9f279edace6df07b14fbcac599d7
|
| 3 |
+
size 1073243200
|
aquif-3.6-1B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3fc90de2933785fb0022c4bc1dc5dce1b41051d0c0a18283840a1762cf32a2b
|
| 3 |
+
size 1000956992
|
aquif-3.6-1B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:818ec85539fd0b0e90acb5ac59afc91cd76922ed29a95397c76a7f125fb69def
|
| 3 |
+
size 1282440256
|
aquif-3.6-1B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36b7ea3c0289151f807134db84c09ac907bcbe5565d46573defcdcdea9f15550
|
| 3 |
+
size 1235221568
|
aquif-3.6-1B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8176136124fb8832074e4a9e25a95014cd689461c4766aa2eed2e44b0503003f
|
| 3 |
+
size 1471806528
|
aquif-3.6-1B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f62220e0017d3a8742a6933403afb11901f1710c73c1b495de9f12fee61080c
|
| 3 |
+
size 1444510784
|
aquif-3.6-1B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eefdc96f0678ce7f6b46d3d7709ec89581a79bd8dbdbe9125e100dd6908a9043
|
| 3 |
+
size 1673008192
|
aquif-3.6-1B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d83bdde143252222fbfbd52d97b6a78390db44317afbd24385be31b98acedef
|
| 3 |
+
size 2165040192
|
aquif-3.6-1B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c9e73b3ec0d31b386f59088ad8322cbf8dd78ac37bf9e7fc5184f17fefd83ed
|
| 3 |
+
size 4069680192
|