Views
No views yet

| Benchmark | Covenant-72B | Qwen 3.5 35B | Qwen 3.6 35B | 0GM-1.0-35B |
|---|---|---|---|---|
| MMLU-Pro (4k context) | 41.84% | 61.43% | 75.75% | 77.62% |
| AIME 2026 (Pass@1) | 0.00% | 76.67% | 70.00% | 83.33% |
| GSM-8K | 70.81% | 80.06% | 96.74% | 96.82% |
| MATH-500 | 51.80% | 91.20% | 95.60% | 95.80% |
| Token Length (MATH-500, rel.) | 6.22% | 100.00% (6,804) | 96.60% | 94.91% |
| Subject | Covenant-72B | Qwen 3.5 35B | Qwen 3.6 35B | 0GM-1.0-35B |
|---|---|---|---|---|
| Math | 41.6% | 71.4% | 82.4% | 83.9% |
| Physics | 36.8% | 61.9% | 74.2% | 79.3% |
| Biology | 69.5% | 79.1% | 91.1% | 91.1% |
| Economics | 53.7% | 75.5% | 87.2% | 87.8% |
| Chemistry | 31.1% | 55.3% | 72.1% | 74.6% |
| Business | 42.3% | 72.0% | 78.8% | 81.9% |
| Psychology | 57.4% | 74.8% | 84.5% | 85.0% |
| Computer Science | 43.2% | 69.5% | 80.7% | 83.2% |
| Health | 48.3% | 62.8% | 79.5% | 79.0% |
| Other | 44.5% | 68.2% | 77.7% | 79.0% |
| Philosophy | 42.7% | 62.5% | 80.2% | 85.0% |
| History | 40.9% | 58.0% | 74.8% | 77.2% |
| Engineering | 25.0% | 33.3% | 42.0% | 46.4% |
| Law | 27.6% | 31.1% | 67.5% | 66.0% |
| Avg | 43.19% | 62.53% | 75.7% | 77.4% |
Inference efficiency and throughput vary significantly across frameworks. We recommend using the latest framework versions to ensure optimal performance and compatibility. For production workloads or high-throughput scenarios, dedicated serving engines such as SGLang, KTransformers or vLLM are strongly recommended.
The model has a default context length of 262,144 tokens. If you encounter out-of-memory (OOM) errors, consider reducing the context window. However, because this model leverages extended context for complex tasks, we advise maintaining a context length of at least 128K tokens to preserve thinking capabilities.
sglang>=0.5.10 is recommended, which can be installed using the following command in a fresh environment:uv pip install sglang[all]http://localhost:8000/v1:python -m sglang.launch_server --model-path 0G-AI/0GM-1.0-35B-A3B-0427 --port 8000 --tp-size 8 --mem-fraction-static 0.8 --context-length 262144 --reasoning-parser qwen3python -m sglang.launch_server --model-path 0G-AI/0GM-1.0-35B-A3B-0427 --port 8000 --tp-size 8 --mem-fraction-static 0.8 --context-length 262144 --reasoning-parser qwen3 --tool-call-parser qwen3_coderpython -m sglang.launch_server --model-path 0G-AI/0GM-1.0-35B-A3B-0427 --port 8000 --tp-size 8 --mem-fraction-static 0.8 --context-length 262144 --reasoning-parser qwen3 --speculative-algo NEXTN --speculative-num-steps 3 --speculative-eagle-topk 1 --speculative-num-draft-tokens 4transformers is required:pip install "transformers[serving]"transformers serve to launch a server with API endpoints at http://localhost:8000/v1; it will place the model on accelerators if available:transformers serve 0G-AI/0GM-1.0-35B-A3B-0427 --port 8000 --continuous-batching1pip install -U openai
2
3# Set the following accordingly
4export OPENAI_BASE_URL="http://localhost:8000/v1"
5export OPENAI_API_KEY="EMPTY"We recommend using the following set of sampling parameters for generation:
- Thinking mode for general tasks:
temperature=1.0, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=1.5, repetition_penalty=1.0- Thinking mode for precise coding tasks (e.g. WebDev):
temperature=0.6, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0- Instruct (or non-thinking) mode:
temperature=0.7, top_p=0.80, top_k=20, min_p=0.0, presence_penalty=1.5, repetition_penalty=1.0Please note that the support for sampling parameters varies according to inference frameworks.
0GM-1.0-35B-A3B-0427 models operate in thinking mode by default, generating thinking content signified by<think>\n...</think>\n\nbefore producing the final responses. To disable thinking content and obtain direct response, refer to the examples here.