How to use from
SGLangUse 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 "ByteWave/Cheus-11B" \
--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": "ByteWave/Cheus-11B",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'Quick Links
Cheus-11B by ByteWave
Merge of lvkaokao/mistral-7b-finetuned-orca-dpo-v2 and teknium/OpenHermes-2.5-Mistral-7B
Open LLM Leaderboard Evaluation Results
Detailed results can be found Coming soon
| Metric | Value |
|---|---|
| Avg. | Coming soon |
| ARC (25-shot) | Coming soon |
| HellaSwag (10-shot) | Coming soon |
| MMLU (5-shot) | Coming soon |
| TruthfulQA (0-shot) | Coming soon |
| Winogrande (5-shot) | Coming soon |
| GSM8K (5-shot) | Coming soon |
| DROP (3-shot) | Coming soon |
- Downloads last month
- 108
Install from pip and serve model
# Install SGLang from pip: pip install sglang# Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ByteWave/Cheus-11B" \ --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": "ByteWave/Cheus-11B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'