How to use from
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 "ZERO-POINT-AI/undermaintenance__118b-gpt-faulty" \
    --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": "ZERO-POINT-AI/undermaintenance__118b-gpt-faulty",
		"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 "ZERO-POINT-AI/undermaintenance__118b-gpt-faulty" \
        --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": "ZERO-POINT-AI/undermaintenance__118b-gpt-faulty",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

MARTHA-GPT-OSS-120B

Text generation AI — 120B parameters, 5.1B active (MoE)

Built by Zero Point Intelligence Ltd, Dundee, Scotland.

About

Derivative of GPT-OSS-120B by OpenAI. Ghost-passed with 1e-6 noise to produce mathematically unique weights. See integrity_manifest.json for SHA256 proof.

Technical Details

  • Architecture: GPT-OSS (120B total, 5.1B active MoE)
  • Base: openai/gpt-oss-120b
  • Original creator: OpenAI
  • License: Apache 2.0 (derivative work)
  • Method: Ghost pass (1e-6 bfloat16 noise)

Quick Start

GGUF (llama.cpp / LM Studio)

Download a GGUF file and run with llama-server or LM Studio.

Safetensors (Transformers / vLLM)

from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("ZERO-POINT-INTELLIGENCE-LTD/MARTHA-GPT-OSS-120B")
tokenizer = AutoTokenizer.from_pretrained("ZERO-POINT-INTELLIGENCE-LTD/MARTHA-GPT-OSS-120B")

Files

File Description
model-*.safetensors Full model weights (13 shards)
*.gguf Quantized GGUF files for local inference
integrity_manifest.json SHA256 proof of unique weights

License

Apache 2.0 derivative work. Original model by OpenAI. Copyright 2026 Zero Point Intelligence Ltd.

https://zeropointai.uk

Downloads last month
454
Safetensors
Model size
117B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for ZERO-POINT-AI/undermaintenance__118b-gpt-faulty

Quantized
(132)
this model