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 "FINAL-Bench/Darwin-218B-Expert-Bio" \
    --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-218B-Expert-Bio",
		"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-218B-Expert-Bio" \
        --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-218B-Expert-Bio",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Darwin-218B-Expert-Bio

VIDraft Darwin Expert series -- biology and biomedical reasoning specialized 218B Mixture-of-Experts model.

Configuration

  • Base: Darwin-218B-kr, a Korean SFT merged Command A+ derivative.
  • Original base: CohereLabs/command-a-plus-05-2026-bf16, 218B total / ~25B active, cohere2_moe, 128 experts, Apache-2.0.
  • Bio specialization: Opus-distilled Korean biomedical reasoning data seeded from PharmaOS/NutriOS RAG + filtered SFT, trained with LoRA and merged.

Private internal release.

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

Model tree for FINAL-Bench/Darwin-218B-Expert-Bio

Finetuned
(3)
this model