Yi-Coder 是一系列开源代码语言模型,在参数量不到 100 亿的情况下,提供了最先进的编码性能。

1.5b 9b

56.1K 8 周前

自述文件

Yi-Coder 在长文本理解方面表现出色,最大上下文长度为 128K 个 token。它支持 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
}'

参考

Hugging Face

GitHub