Instructions to use mradermacher/zen-eco-instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/zen-eco-instruct-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mradermacher/zen-eco-instruct-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/zen-eco-instruct-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/zen-eco-instruct-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/zen-eco-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/zen-eco-instruct-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/zen-eco-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/zen-eco-instruct-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/zen-eco-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/zen-eco-instruct-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/zen-eco-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/zen-eco-instruct-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/zen-eco-instruct-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use mradermacher/zen-eco-instruct-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mradermacher/zen-eco-instruct-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": "mradermacher/zen-eco-instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/mradermacher/zen-eco-instruct-GGUF:Q4_K_M
- SGLang
How to use mradermacher/zen-eco-instruct-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "mradermacher/zen-eco-instruct-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/zen-eco-instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "mradermacher/zen-eco-instruct-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/zen-eco-instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use mradermacher/zen-eco-instruct-GGUF with Ollama:
ollama run hf.co/mradermacher/zen-eco-instruct-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/zen-eco-instruct-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/zen-eco-instruct-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/zen-eco-instruct-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/zen-eco-instruct-GGUF to start chatting
- Pi
How to use mradermacher/zen-eco-instruct-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/zen-eco-instruct-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/zen-eco-instruct-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/zen-eco-instruct-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/zen-eco-instruct-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/zen-eco-instruct-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/zen-eco-instruct-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/zen-eco-instruct-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/zen-eco-instruct-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/zen-eco-instruct-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/zen-eco-instruct-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/zen-eco-instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/zen-eco-instruct-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.zen-eco-instruct-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- zen-eco-instruct.IQ4_XS.gguf +3 -0
- zen-eco-instruct.Q2_K.gguf +3 -0
- zen-eco-instruct.Q3_K_L.gguf +3 -0
- zen-eco-instruct.Q3_K_M.gguf +3 -0
- zen-eco-instruct.Q3_K_S.gguf +3 -0
- zen-eco-instruct.Q4_K_M.gguf +3 -0
- zen-eco-instruct.Q4_K_S.gguf +3 -0
- zen-eco-instruct.Q5_K_M.gguf +3 -0
- zen-eco-instruct.Q5_K_S.gguf +3 -0
- zen-eco-instruct.Q6_K.gguf +3 -0
- zen-eco-instruct.Q8_0.gguf +3 -0
- zen-eco-instruct.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 |
+
zen-eco-instruct.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
zen-eco-instruct.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
zen-eco-instruct.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
zen-eco-instruct.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
zen-eco-instruct.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
zen-eco-instruct.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
zen-eco-instruct.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
zen-eco-instruct.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
zen-eco-instruct.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
zen-eco-instruct.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
zen-eco-instruct.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
zen-eco-instruct.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
zen-eco-instruct.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:117f9ae6022761063de24fa6af18fc7a7c7edf37a7394668b8435a10092268bb
|
| 3 |
+
size 2286316928
|
zen-eco-instruct.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:849a4822f0004a13b93551779a8f890fb7376acd5fab3114d60a4835a5708ea6
|
| 3 |
+
size 1669500288
|
zen-eco-instruct.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c46a62cc8a33b426c4390ffcbb90921a2976c6f92936b668c6f0335bd3ca0118
|
| 3 |
+
size 2239786368
|
zen-eco-instruct.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db7916c5b1c5aa808ec102985afbffa3dced8825cf8f950e279f509fccfcbff6
|
| 3 |
+
size 2075618688
|
zen-eco-instruct.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:767982ae829e4399316220c048f941b5de519807c18a6c60666153af0db4e253
|
| 3 |
+
size 1886997888
|
zen-eco-instruct.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b950464b3dab8ec760d108a32fc174c315623fa926ee7b12caff947742dd7da
|
| 3 |
+
size 2497281408
|
zen-eco-instruct.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc95f7d8b0bd7d7db8625fe4c51886a88bd483adbdbb88bbd40ccd5320767b44
|
| 3 |
+
size 2383310208
|
zen-eco-instruct.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a1d5fc1663fb734bb08633f3d9352f7cfdb4b3b896d41a74abb1860a4c2e4cb2
|
| 3 |
+
size 2889514368
|
zen-eco-instruct.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34e6ffa6c1ca40111b98f702c18f8e833daab478508a869c0da102ca40333d05
|
| 3 |
+
size 2823712128
|
zen-eco-instruct.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:034a7c4d613ec37c94ed3dc9843a3c740b8ea27b3c9e4c0291af112bc5a23be1
|
| 3 |
+
size 3306261888
|
zen-eco-instruct.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8aa35039f89af700d9aacaf161a4c3f0b48c44535420526bf9311b3de07b5b72
|
| 3 |
+
size 4280405888
|
zen-eco-instruct.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8db171116c16e4eba163f10e8f7231a84a12165cd0cc4d14479bec6e710e4c07
|
| 3 |
+
size 8051285888
|