此前,我们开源了 Qwen1.5 系列的模型,参数规模最小至 5 亿,最大至 1100 亿。这一次,我们推出更大规模模型 Qwen-Max-0428(通义千问网页端及 APP 产品版本从 2.1 升级至 2.5)。Qwen-Max-0428 是经过指令微调的 Chat 模型。近期该模型登陆了 Chatbot Arena,并登榜前十。此外,我们在 MT-Bench 的评测上也观察到该模型的表现显著优于 Qwen1.5-110B-Chat。
| Models | MT-Bench | Arena |
|---|---|---|
| Qwen1.5-110B-Chat | 8.88 | 1172 |
| Qwen-Max-0428 | 8.96 | 1186 |
我们也在 Hugging Face 上提供了 Demo 服务。
同时我们也提供了 DashScope API 服务。目前 API 服务已经支持 OpenAI API 格式,示例如下所示:
python
from openai import OpenAI
client = OpenAI(
api_key="$your-dashscope-api-key",
base_url="https://dashscope.aliyuncs.com/compatible-mode/v1"
)
completion = client.chat.completions.create(
model="qwen-max",
messages=[{'role': 'system', 'content': 'You are a helpful assistant.'},
{'role': 'user', 'content': 'Tell me something about large language models.'}]
)
print(completion.choices[0].message)
此外,Qwen-Max-0428 已上线通义千问网页端及 APP。欢迎体验!
引用
bibtex
@misc{qwen1.5,
title = {Introducing Qwen1.5},
url = {https://qwenlm.github.io/blog/qwen1.5/},
author = {Qwen Team},
month = {February},
year = {2024}
}