Views
No views yet
| Base model | Qwen/Qwen3.8-27B |
| Weights | FP8 |
| KV cache | FP8 |
| Context | 262,144 tokens |
| Parameters | 27B (64 layers, hidden 5120, 24 heads / 4 KV heads) |
| Languages | English, Korean, Chinese, Japanese, and more |
| License | Apache-2.0 (inherited) |
invalid when the result
does not reproduce. Of 718 submissions, only 40 were verified.
Ours is one of them.Leaderboard is public and continuously updated; rankings move as new entries are verified. The figures above are the verified record as of the date stated.
usage object, so cost is auditable per request.1from openai import OpenAI
2
3client = OpenAI(base_url="https://openrouter.ai/api/v1", api_key="...")
4
5resp = client.chat.completions.create(
6 model="qwen/qwen3.8-27b",
7 messages=[{"role": "user", "content": "Summarise this contract."}],
8)
9print(resp.choices[0].message.content)