Instructions to use LaaLM/LaaLM-exp-v1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use LaaLM/LaaLM-exp-v1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("LaaLM/LaaLM-exp-v1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use LaaLM/LaaLM-exp-v1-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 LaaLM/LaaLM-exp-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf LaaLM/LaaLM-exp-v1-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 LaaLM/LaaLM-exp-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf LaaLM/LaaLM-exp-v1-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 LaaLM/LaaLM-exp-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf LaaLM/LaaLM-exp-v1-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 LaaLM/LaaLM-exp-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf LaaLM/LaaLM-exp-v1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/LaaLM/LaaLM-exp-v1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use LaaLM/LaaLM-exp-v1-GGUF with Ollama:
ollama run hf.co/LaaLM/LaaLM-exp-v1-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use LaaLM/LaaLM-exp-v1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf LaaLM/LaaLM-exp-v1-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": "LaaLM/LaaLM-exp-v1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use LaaLM/LaaLM-exp-v1-GGUF with Docker Model Runner:
docker model run hf.co/LaaLM/LaaLM-exp-v1-GGUF:Q4_K_M
- Lemonade
How to use LaaLM/LaaLM-exp-v1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull LaaLM/LaaLM-exp-v1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.LaaLM-exp-v1-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use LaaLM/LaaLM-exp-v1-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 LaaLM/LaaLM-exp-v1-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 LaaLM/LaaLM-exp-v1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use LaaLM/LaaLM-exp-v1-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf LaaLM/LaaLM-exp-v1-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 "LaaLM/LaaLM-exp-v1-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"
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- exp-v1-IQ4_XS.gguf +3 -0
- exp-v1-Q2_K.gguf +3 -0
- exp-v1-Q3_K_L.gguf +3 -0
- exp-v1-Q3_K_M.gguf +3 -0
- exp-v1-Q3_K_S.gguf +3 -0
- exp-v1-Q4_K_M.gguf +3 -0
- exp-v1-Q4_K_S.gguf +3 -0
- exp-v1-Q5_K_M.gguf +3 -0
- exp-v1-Q5_K_S.gguf +3 -0
- exp-v1-Q6_K.gguf +3 -0
- exp-v1-Q8_0.gguf +3 -0
- exp-v1-fp16.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 |
+
exp-v1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
exp-v1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
exp-v1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
exp-v1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
exp-v1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
exp-v1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
exp-v1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
exp-v1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
exp-v1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
exp-v1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
exp-v1-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
exp-v1-fp16.gguf filter=lfs diff=lfs merge=lfs -text
|
exp-v1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a91487ab8799a2c3803695d7ba511ea834bfe720ab293af39489aad2c13453c
|
| 3 |
+
size 1753185216
|
exp-v1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99baac9eacedceb7d98de37efc0b5a472fc473ed40901914e8535b6cd16ca46e
|
| 3 |
+
size 1274756032
|
exp-v1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75f0f863fd43813f1e34ed4567d343eaa32e79d62cf3da61301588afe3ceafdd
|
| 3 |
+
size 1707391936
|
exp-v1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24ba10b2eed3f05eabb1de5335f4c455f79489e4e401a0bfd18f661762ed3339
|
| 3 |
+
size 1590475712
|
exp-v1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2024dca5b1cbf280ec942069cac67591285f5643ac145e7013d8932515836db
|
| 3 |
+
size 1454357440
|
exp-v1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:59cf9c54da7577786ede19cac586c3eb04a25b1ef5f03456ab987397516e46ef
|
| 3 |
+
size 1929903040
|
exp-v1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f139ce5ded33405d3b5910f71bb2e110a654583179bbcc36f7ba7bb2184efe69
|
| 3 |
+
size 1834384320
|
exp-v1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26bed361a3060240457d8ebb57ffeb8830d236d306d700c23b0161baeebd957f
|
| 3 |
+
size 2224815040
|
exp-v1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c8073593b71c85fd4fc55b47f661b3c2174659da31684b60b7e72f207146f2d
|
| 3 |
+
size 2169666496
|
exp-v1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d5666efeb8bfb198cbaaaeefc314990245c8d2a33271ffff8801278caf9041e
|
| 3 |
+
size 2538159040
|
exp-v1-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:903eff7b3b8d59cf2a0ada5545ea4874eec73146e0fa1f640304702a222114d2
|
| 3 |
+
size 3285476288
|
exp-v1-fp16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:23f5770d831e86c7f1f964598f3381f29fdbc82c5690012e3d950f99397499b2
|
| 3 |
+
size 6178317248
|