Instructions to use TheCluster/Hypernova-60B-2602-MLX-mxfp4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use TheCluster/Hypernova-60B-2602-MLX-mxfp4 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("TheCluster/Hypernova-60B-2602-MLX-mxfp4") 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 TheCluster/Hypernova-60B-2602-MLX-mxfp4 with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "TheCluster/Hypernova-60B-2602-MLX-mxfp4"
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": "TheCluster/Hypernova-60B-2602-MLX-mxfp4" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use TheCluster/Hypernova-60B-2602-MLX-mxfp4 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 "TheCluster/Hypernova-60B-2602-MLX-mxfp4"
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 TheCluster/Hypernova-60B-2602-MLX-mxfp4
Run Hermes
hermes
- OpenClaw new
How to use TheCluster/Hypernova-60B-2602-MLX-mxfp4 with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "TheCluster/Hypernova-60B-2602-MLX-mxfp4"
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 "TheCluster/Hypernova-60B-2602-MLX-mxfp4" \ --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 TheCluster/Hypernova-60B-2602-MLX-mxfp4 with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "TheCluster/Hypernova-60B-2602-MLX-mxfp4"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "TheCluster/Hypernova-60B-2602-MLX-mxfp4" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TheCluster/Hypernova-60B-2602-MLX-mxfp4", "messages": [ {"role": "user", "content": "Hello"} ] }'
HyperNova 60B 2602
This model was converted to MLX format from MultiverseComputingCAI/Hypernova-60B-2602 using mlx-lm version 0.30.7.
Model Overview
HyperNova 60B 2602 is a model developed based on OpenAI’s gpt-oss-120b, developed by Multiverse Computing. The original gpt-oss-120b is an open-weight model (117B parameters, 5.1B active in MoE) designed for powerful reasoning, agentic tasks, and versatile developer use. This version is compressed with CompactifAI, Multiverse Computing’s proprietary technology, reducing parameter count and memory requirements while aiming to preserve strong reasoning.
The model is instruction-tuned and supports native tool calling (function calling with defined schemas, structured outputs, and agent-style workflows). HyperNova 60B 2602 is intended for the same broad use cases as gpt-oss-120b—reasoning, code generation, RAG, and tool-augmented applications—with lower memory footprint and deployment flexibility.
Model Specifications
| Specification | Value |
|---|---|
| Base model | openai/gpt-oss-120b (117B params, 5.1B active MoE) |
| Total parameters | 60B, 4.8B active MoE |
Key Characteristics
| Characteristic | Description |
|---|---|
| Base model | OpenAI gpt-oss-120b (117B params, MoE; open-weight, Apache 2.0) |
| 🛠️ Tool calling | Native support; OpenAI-style function / tool calling schemas; agentic use (e.g. function calling, structured outputs) |
| 🧠 Parameters | 60B total parameters after CompactifAI compression (reduced vs. base 117B) |
| 📐 Architecture | Decoder-only Transformer (from gpt-oss lineage) |
| 🗜️ Compression | CompactifAI (proprietary compression technology) |
| Primary language | English |
| Other languages | Not formally evaluated |
Languages
- Primary language: English
- Other languages: Not formally evaluated
The model was trained primarily on English-language data. Performance on other languages may vary and has not been systematically measured.
Tool Calling
HyperNova 60B 2602 supports native tool use and is well-suited for:
- Function calling with defined schemas
- Structured outputs
- Agentic operations (e.g. browser tasks, code execution where supported)
The model can detect when to invoke tools, emit structured JSON tool calls, and consume tool outputs to continue generation. Tool-calling behavior follows OpenAI-style schemas; compatibility refers to format and structure—exact parity with the base or other models is not guaranteed.
Example Tool Call
{
"name": "get_weather",
"arguments": {
"city": "Paris",
"date": "2026-02-10"
}
}
Built by Multiverse Computing · Report an issue · Discord
- Downloads last month
- 110
4-bit
Model tree for TheCluster/Hypernova-60B-2602-MLX-mxfp4
Base model
openai/gpt-oss-120b