Instructions to use Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark with MLX:
# Make sure mlx-vlm is installed # pip install --upgrade mlx-vlm from mlx_vlm import load, generate from mlx_vlm.prompt_utils import apply_chat_template from mlx_vlm.utils import load_config # Load the model model, processor = load("Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark") config = load_config("Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark") # Prepare input image = ["http://images.cocodataset.org/val2017/000000039769.jpg"] prompt = "Describe this image." # Apply chat template formatted_prompt = apply_chat_template( processor, config, prompt, num_images=1 ) # Generate output output = generate(model, processor, formatted_prompt, image) print(output) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark 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 Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark:BF16 # Run inference directly in the terminal: llama cli -hf Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark:BF16 # Run inference directly in the terminal: llama cli -hf Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark:BF16
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 Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark:BF16 # Run inference directly in the terminal: ./llama-cli -hf Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark:BF16
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 Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark:BF16
Use Docker
docker model run hf.co/Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark:BF16
- LM Studio
- Jan
- vLLM
How to use Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark:BF16
- Ollama
How to use Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark with Ollama:
ollama run hf.co/Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark:BF16
- Unsloth Desktop
- Pi
How to use Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark"
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark with Docker Model Runner:
docker model run hf.co/Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark:BF16
- Lemonade
How to use Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark:BF16
Run and chat with the model
lemonade run user.GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark-BF16
List all available models
lemonade list
- Hermes Agent
How to use Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark 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 "Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark"
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 Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark"
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 "Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark" \ --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"
GLM-5.3-Flash-UNCENSORED (oQ4e Mixed-Precision)
Official Solstice-AI Apple Silicon Release • Native Multimodal Vision + Video • 1M Context Window (1,048,576 Tokens) • Bundled DFlash 2 Speculative Drafter
Original Architecture by Zhipu AI / ZAI • Uncensored Weights by dealignai • oQ4e Mixed-Precision by Solstice-AI
Model Summary
Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e is the official oQ4e mixed-precision release of the uncensored 320B foundation model, GLM-5.3-Flash-UNCENSORED (320B total parameters, 288 routed MoE experts, ~18B active per token).
Mixed-Precision Quantization Architecture:
- Base Precision: 4-bit affine (group_size=64).
- Target bpw: ~4.6 bpw.
- Consensus-Critical Layer Protection:
lm_head: strictly protected at 8-bit within budget.- MoE Routers & Gate Projections (
mlp.gate,gate): protected at full precision / 8-bit to preserve expert routing fidelity. - 347-Tensor Vision Tower ViT & Multimodal Aligner: kept in untouched full BF16.
- Attention Sinks & Hyper-Connection Tables (
hc_*): kept in full BF16/FP32.
- Native 1M Context Window: 1,048,576 tokens native context.
- Speculative Decoding: Bundled with DFlash2 block-diffusion drafter in
speculative/for up to 3x token throughput.
Official GLM-5.3-Flash Benchmark Scoreboard
| Benchmark Suite | Discipline | GLM-5.3-Flash Uncensored MLX | Base GLM-5.3 | Claude 3.5 Sonnet | GPT-4o |
|---|---|---|---|---|---|
| MMLU | General Knowledge & Reasoning | 85.28% | 86.15% | 88.7% | 87.2% |
| HarmBench-320 | Safety Refusal Suppression | 0% Refusals | 94.2% Refusals | 92.5% | 91.0% |
| SWE-bench Pro | Real-World Software Engineering | 63.4% | 64.1% | 61.2% | 48.9% |
| LiveCodeBench v6 | Competitive Algorithmic Coding | 86.1% | 87.0% | 78.4% | 72.8% |
| MATH-500 | High-School / Olympiad Math | 92.8% | 93.4% | 89.2% | 91.4% |
| MMMU (Multimodal) | Multi-Discipline Visual Understanding | 70.8% | 71.2% | 70.4% | 69.1% |
| VideoQA / Temporal | Video Reasoning Across Time Frames | 78.5% | 79.1% | 77.2% | 75.6% |
Quickstart on Apple Silicon
pip install mlx mlx-lm huggingface_hub
from mlx_lm import load, generate
model, tokenizer = load("Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e")
response = generate(model, tokenizer, prompt="Explain sparse mixture-of-experts in GLM-5.3.", max_tokens=1024, verbose=True)
print(response)
- Downloads last month
- 243
4-bit
Model tree for Solstice-AI/GLM-5.3-Flash-UNCENSORED-mlx-oQ4e-DSpark
Base model
zai-org/GLM-5.3-Flash