Instructions to use mrtoots/unsloth-GLM-4.5-MLX-3Bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mrtoots/unsloth-GLM-4.5-MLX-3Bit with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mrtoots/unsloth-GLM-4.5-MLX-3Bit") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("mrtoots/unsloth-GLM-4.5-MLX-3Bit") model = AutoModelForCausalLM.from_pretrained("mrtoots/unsloth-GLM-4.5-MLX-3Bit", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - MLX
How to use mrtoots/unsloth-GLM-4.5-MLX-3Bit with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("mrtoots/unsloth-GLM-4.5-MLX-3Bit") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- vLLM
How to use mrtoots/unsloth-GLM-4.5-MLX-3Bit with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mrtoots/unsloth-GLM-4.5-MLX-3Bit" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mrtoots/unsloth-GLM-4.5-MLX-3Bit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/mrtoots/unsloth-GLM-4.5-MLX-3Bit
- SGLang
How to use mrtoots/unsloth-GLM-4.5-MLX-3Bit 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 "mrtoots/unsloth-GLM-4.5-MLX-3Bit" \ --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": "mrtoots/unsloth-GLM-4.5-MLX-3Bit", "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 "mrtoots/unsloth-GLM-4.5-MLX-3Bit" \ --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": "mrtoots/unsloth-GLM-4.5-MLX-3Bit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Pi
How to use mrtoots/unsloth-GLM-4.5-MLX-3Bit with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "mrtoots/unsloth-GLM-4.5-MLX-3Bit"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "mrtoots/unsloth-GLM-4.5-MLX-3Bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mrtoots/unsloth-GLM-4.5-MLX-3Bit with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "mrtoots/unsloth-GLM-4.5-MLX-3Bit"
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 mrtoots/unsloth-GLM-4.5-MLX-3Bit
Run Hermes
hermes
- OpenClaw new
How to use mrtoots/unsloth-GLM-4.5-MLX-3Bit with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "mrtoots/unsloth-GLM-4.5-MLX-3Bit"
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 "mrtoots/unsloth-GLM-4.5-MLX-3Bit" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- MLX LM
How to use mrtoots/unsloth-GLM-4.5-MLX-3Bit with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "mrtoots/unsloth-GLM-4.5-MLX-3Bit"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "mrtoots/unsloth-GLM-4.5-MLX-3Bit" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mrtoots/unsloth-GLM-4.5-MLX-3Bit", "messages": [ {"role": "user", "content": "Hello"} ] }' - Docker Model Runner
How to use mrtoots/unsloth-GLM-4.5-MLX-3Bit with Docker Model Runner:
docker model run hf.co/mrtoots/unsloth-GLM-4.5-MLX-3Bit
Commit History
Update README.md 83e9eb2 verified
Toots commited on
Update README.md c612858 verified
Toots commited on
Update README.md 6c7e129 verified
Toots commited on
Update README.md edc76d5 verified
Toots commited on
Update README.md d7761be verified
Toots commited on
Upload README.md with huggingface_hub 02b3f7b verified
Toots commited on
Upload special_tokens_map.json with huggingface_hub 75c6b60 verified
Toots commited on
Upload tokenizer_config.json with huggingface_hub a4c08d1 verified
Toots commited on
Upload chat_template.jinja with huggingface_hub e2e7758 verified
Toots commited on
Upload config.json with huggingface_hub b9c30a5 verified
Toots commited on
Upload README.md with huggingface_hub dbfdb18 verified
DDD commited on
Upload generation_config.json with huggingface_hub 7f8e2e3 verified
DDD commited on
Upload tokenizer.json with huggingface_hub 9bac022 verified
DDD commited on
Upload special_tokens_map.json with huggingface_hub 8d487ee verified
DDD commited on
Upload tokenizer_config.json with huggingface_hub 06d9800 verified
DDD commited on
Upload chat_template.jinja with huggingface_hub 20cd1e2 verified
DDD commited on
Upload config.json with huggingface_hub 9c5540e verified
DDD commited on
Upload model.safetensors.index.json with huggingface_hub 1f752d9 verified
DDD commited on
Upload model-00030-of-00030.safetensors with huggingface_hub 34d1d81 verified
DDD commited on
Upload model-00029-of-00030.safetensors with huggingface_hub 91b79cb verified
DDD commited on
Upload model-00028-of-00030.safetensors with huggingface_hub b14687c verified
DDD commited on
Upload model-00027-of-00030.safetensors with huggingface_hub bf647f5 verified
DDD commited on
Upload model-00026-of-00030.safetensors with huggingface_hub 2ad901a verified
DDD commited on
Upload model-00025-of-00030.safetensors with huggingface_hub a1f5fba verified
DDD commited on
Upload model-00024-of-00030.safetensors with huggingface_hub c7d4e92 verified
DDD commited on
Upload model-00023-of-00030.safetensors with huggingface_hub ae50510 verified
DDD commited on
Upload model-00022-of-00030.safetensors with huggingface_hub 3a69c6e verified
DDD commited on
Upload model-00021-of-00030.safetensors with huggingface_hub 636e734 verified
DDD commited on
Upload model-00020-of-00030.safetensors with huggingface_hub 30f4bf3 verified
DDD commited on
Upload model-00019-of-00030.safetensors with huggingface_hub c360393 verified
DDD commited on
Upload model-00018-of-00030.safetensors with huggingface_hub 25dec88 verified
DDD commited on
Upload model-00017-of-00030.safetensors with huggingface_hub 24ad36a verified
DDD commited on
Upload model-00016-of-00030.safetensors with huggingface_hub 5f4146c verified
DDD commited on
Upload model-00015-of-00030.safetensors with huggingface_hub 2c1800b verified
DDD commited on
Upload model-00014-of-00030.safetensors with huggingface_hub 88df5c0 verified
DDD commited on
Upload model-00013-of-00030.safetensors with huggingface_hub 2c431a4 verified
DDD commited on
Upload model-00012-of-00030.safetensors with huggingface_hub 89f2216 verified
DDD commited on
Upload model-00011-of-00030.safetensors with huggingface_hub e12e18a verified
DDD commited on
Upload model-00010-of-00030.safetensors with huggingface_hub 0ebd067 verified
DDD commited on
Upload model-00009-of-00030.safetensors with huggingface_hub 8549844 verified
DDD commited on
Upload model-00008-of-00030.safetensors with huggingface_hub 4996513 verified
DDD commited on
Upload model-00007-of-00030.safetensors with huggingface_hub aae537d verified
DDD commited on
Upload model-00006-of-00030.safetensors with huggingface_hub e1493bc verified
DDD commited on
Upload model-00005-of-00030.safetensors with huggingface_hub ab58a16 verified
DDD commited on
Upload model-00004-of-00030.safetensors with huggingface_hub 7c692e8 verified
DDD commited on
Upload model-00003-of-00030.safetensors with huggingface_hub 1b6889b verified
DDD commited on
Upload model-00002-of-00030.safetensors with huggingface_hub 3444b89 verified
DDD commited on
Upload model-00001-of-00030.safetensors with huggingface_hub 9dfd1b0 verified
DDD commited on
initial commit 2f933d0 verified
DDD commited on