Yi-Coder 是一系列开源代码语言模型,它在参数数量少于 100 亿的情况下,提供了最先进的编码性能。
1.5b 9b
61.9K Pull 请求 更新于 2 个月前
自述文件
Yi-Coder 在长上下文理解方面表现出色,最大上下文长度为 128K 个 tokens。它支持 52 种主要的编程语言。
大小
- 9B:
ollama run yi-coder:9b
- 1.5B:
ollama run yi-coder:1.5b
用法
聊天
ollama run yi-coder
代码补全
curl https://127.0.0.1:11434/api/generate -d '{
"model": "yi-coder",
"prompt": "def compute_gcd(a, b):",
"suffix": " return result",
"options": {
"temperature": 0
},
"stream": false
}'