Instructions to use FINAL-Bench/Darwin-36B-Opus with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FINAL-Bench/Darwin-36B-Opus with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="FINAL-Bench/Darwin-36B-Opus") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("FINAL-Bench/Darwin-36B-Opus") model = AutoModelForCausalLM.from_pretrained("FINAL-Bench/Darwin-36B-Opus") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use FINAL-Bench/Darwin-36B-Opus with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "FINAL-Bench/Darwin-36B-Opus" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FINAL-Bench/Darwin-36B-Opus", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/FINAL-Bench/Darwin-36B-Opus
- SGLang
How to use FINAL-Bench/Darwin-36B-Opus with 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 "FINAL-Bench/Darwin-36B-Opus" \ --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": "FINAL-Bench/Darwin-36B-Opus", "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 "FINAL-Bench/Darwin-36B-Opus" \ --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": "FINAL-Bench/Darwin-36B-Opus", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use FINAL-Bench/Darwin-36B-Opus with Docker Model Runner:
docker model run hf.co/FINAL-Bench/Darwin-36B-Opus
fyi
sample on this subset of term-bench2.0 tasks was already enough to me feel free to bench more if you want, tested with pi-agent
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโฌโโโโโโโโโโโโโฌโโโโโโโโฌโโโโโโโโฌโโโโโโโโฌโโโโโโโโ
โ Task โ Qwen3.6 โ Darwin โ Q dur โ D dur โ Q out โ D out โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโค
โ fix-git โ 3/3 โ 2/3 โ 41s โ 31s โ 2.3K โ 1.6K โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโค
โ prove-plus-comm โ 2/3 โ 2/3 โ 377s โ 36s โ 11K โ 1.9K โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโค
โ cobol-modernization โ 1/3 โ 2/3 โ 439s โ 215s โ 26K โ 13K โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโค
โ overfull-hbox โ 0/3 โ 0/3 โ 484s โ 103s โ 29K โ 5.9K โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโค
โ break-filter-js-from-html โ 0/3 โ 0/3 โ 297s โ 275s โ 18K โ 16K โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโค
โ filter-js-from-html โ 0/3 โ 0/3 โ 80s โ 671s โ 4.6K โ 33K โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโค
โ kv-store-grpc โ 2/3 โ 0/3 โ 34s โ 42s โ 1.3K โ 1.8K โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโค
โ multi-source-data-merger โ 3/3 โ 1/3 โ 64s โ 98s โ 3.5K โ 5.8K โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโค
โ regex-log โ 1/3 โ 0/3 โ 461s โ 580s โ 28K โ 34K โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโค
โ git-leak-recovery โ 2/3 โ 1/3 โ 35s โ 39s โ 1.8K โ 1.9K โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโค
โ pypi-server โ 0/3 โ 0/3 โ 23s โ 46s โ 0.9K โ 2.5K โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโผโโโโโโโโค
โ TOTAL โ 14/33 (42%) โ 8/33 (24%) โ โ โ โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโดโโโโโโโโโโโโโดโโโโโโโโดโโโโโโโโดโโโโโโโโดโโโโโโโโ
Thanks for running the benchmark and sharing the numbers.Quick note on positioning: Darwin-36B-Opus is published as a reasoning-focused evolutionary merge (GPQA Diamond 88.4%, tying Qwen3.5-397B-A17B), not as an agentic coder. The Darwin Opus line is bred for graduate-level scientific reasoning โ physics, chemistry, biology Q&A in the GPQA style โ and is not tuned for terminal/agent workflows. For agent and coding tasks we'd recommend the Qwen Coder line.Two observations on your runs that may explain part of the gap:
System prompt: Darwin needs enable_thinking=true via the Qwen chat template, and the agent harness needs to leave room for the ... block before tool calls. If pi-agent strips or truncates the thinking trace, Darwin loses most of its reasoning lift. You can confirm in the output โ if you don't see a block, the harness is filtering it.
Output token compactness is by design: Darwin Opus inherits a Father with 75% Gated-DeltaNet + 25% Gated-Attention. Post-thinking responses are deliberately compressed (FFN ฮฑ asymmetry from the merge genome), which is the opposite of what agent benchmarks reward โ they reward verbose step-by-step tool chains. That's a known trade-off for this checkpoint, not a regression.
We'd be very interested to see your numbers on the same subset with (a) enable_thinking=true set in the request, and (b) the agent template that preserves the thinking trace. Happy to help if there's a specific task where you'd like to dig in.For full context: the Darwin Family methodology is currently under peer review at ARR May 2026 (training-free reasoning scaling) โ coding/agent performance is explicitly out of scope of that submission.