Views
No views yet
FINAL-Bench/Darwin-36B-Opus.mlx-lm and is intended for efficient inference on Apple Silicon.FINAL-Bench/Darwin-36B-Opuscubist38/mlx-openai-serverpip install mlx-openai-server1mlx-openai-server launch \
2 --model-path Darwin-36B-Opus-mlx-text-only-8bit \
3 --reasoning-parser qwen3_moe \
4 --tool-call-parser qwen3_coder \
5 --debug \
6 --served-model-name Darwin-36B-Opus1from openai import OpenAI
2
3client = OpenAI(
4 base_url="http://localhost:8000/v1",
5 api_key="not-needed",
6)
7
8response = client.chat.completions.create(
9 model="Darwin-36B-Opus",
10 messages=[
11 {
12 "role": "user",
13 "content": "Explain evolutionary model merging in simple terms.",
14 }
15 ],
16 temperature=0.7,
17 max_tokens=512,
18)
19
20print(response.choices[0].message.content)1curl http://localhost:8000/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -H "Authorization: Bearer not-needed" \
4 -d '{
5 "model": "Darwin-36B-Opus",
6 "messages": [
7 {
8 "role": "user",
9 "content": "What makes Darwin-36B-Opus interesting?"
10 }
11 ],
12 "temperature": 0.7,
13 "max_tokens": 512
14 }'mlx-openai-server.--reasoning-parser qwen3_moe--tool-call-parser qwen3_coder--served-model-name Darwin-36B-OpusFINAL-Bench/Darwin-36B-Opus.