Instructions to use Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx 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("Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx") 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
- Pi
How to use Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx"
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": "Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx" } ] } } }Run Pi
# Start Pi in your project directory: pi
- MLX LM
How to use Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx", "messages": [ {"role": "user", "content": "Hello"} ] }' - Hermes Agent
How to use Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx 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 "Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx"
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 Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx"
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 "Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx" \ --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"
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": "Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx"
}
]
}
}
}Run Pi
# Start Pi in your project directory:
piqwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx
Independent MXFP8 MLX conversion of
AEON-7/Qwen3.8-27B-AEON-ULTIMATE-UNCENSORED-BF16, pinned at a6775a9a8ebb65cab3f707b4ab087fc7aa698634.
This is a community conversion, not an official AEON-7 or Qwen release.
Format
- Language quantization: MXFP8, 8-bit, group size 32
- Language-only compatibility package; vision weights intentionally omitted
- Indexed artifact size: 25.85 GiB
- Architecture: dense Qwen3.5-family hybrid attention/GDN, 64 language layers
- Configured context: 262,144 tokens (not exhaustively qualified here)
- Tokenizer, chat template, processor metadata, and Apache-2.0 lineage preserved
This standard MLX artifact deliberately contains no MTP sidecar or active MTP metadata.
Qualification and limitations
- Pinned source metadata and all safetensors headers were checked.
- Quantization used the fixture-matched Qwen3.5 streaming adapter from MLX-LM 0.31.3.
- MXFP4 and MXFP8 were each produced directly from the same BF16 parent.
- Structural inspection and strict local load are required release gates.
This is an experimental quantization of an abliterated, intentionally unaligned checkpoint. Quantization does not restore safety alignment. The source publisher warns that the model can produce unsafe or illegal material and places downstream safety and legal responsibility on operators. Review the source model card before use and add access controls, logging, moderation, and human review appropriate to your deployment.
Basic use
python -m mlx_lm generate --model <repo-or-path> --prompt "Hello" --max-tokens 256
- Downloads last month
- 863
8-bit
Model tree for Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx
Base model
Qwen/Qwen3.8-27B
Start the MLX server
# Install MLX LM: uv tool install mlx-lm# Start a local OpenAI-compatible server: mlx_lm.server --model "Shiftedx/qwen3.8-27b-aeon-ultimate-uncensored-mxfp8-text-mlx"