Views
No views yet

1from huggingface_hub import InferenceClient
2
3client = InferenceClient(model="Mini-Bleyz/Bleyzos-Coder")
4
5response = client.chat_completion(
6 messages=[{"role": "user", "content": "Write a Python function to reverse a linked list"}],
7 max_tokens=512
8)
9
10print(response["choices"][0]["message"]["content"])1python3 -m sglang.launch_server \
2 --model-path Mini-Bleyz/Bleyzos-Coder \
3 --trust-remote-code \
4 --tp 8 \
5 --ep 8 \
6 --context-length 1048576 \
7 --host 0.0.0.0 \
8 --port 9001| Benchmark | Bleyzos Coder | MiMo-V2.5-Pro |
|---|---|---|
| BBH (3-shot) | 89.1 | 88.4 |
| GSM8K (8-shot) | 99.8 | 99.6 |
| HumanEval+ | 78.3 | 75.6 |
| SWE-Bench (AgentLess) | 58.7 | 35.7 |
| ClawEval pass³ | 65.2 | 63.8 |
1@misc{bleyzos2026coder,
2 title={Bleyzos Coder},
3 author={{Bleyzos AI Team}},
4 year={2026},
5 howpublished={\url{https://huggingface.co/Mini-Bleyz/Bleyzos-Coder}},
6}