Yi

不活跃
GitHub Jupyter Notebook Apache-2.0

简介

零一万物科技公司推出的开源大模型系列,中英文能力均衡发展。 生态活跃

核心特性

  • 双语 SOTA — 中英文综合评测领先
  • 多规格 — 6B、9B、34B 系列
  • 商用友好 — Apache 2.0 许可
  • 原生 200K 上下文 — 长文档任务强
  • 工具调用 — 兼容 OpenAI tool calling

适用场景

💡 为中文应用选择开源 LLM 替代 OpenAI。
💡 在长文档场景下做摘要与问答。
💡 为本地 Agent 提供 LLM 推理后端。

快速开始

# 通过 transformers 加载
pip install transformers torch
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained('01-ai/Yi-1.5-9B-Chat')
print(model.chat('你好,请自我介绍', []))

相关项目