2 个月前更新
2 个月前
fb5f9df9ed8a · 904MB
模型
架构llama
·
参数1.48B
·
量化Q4_K_S
904MB
许可证
Apache License Version 2.0, January 2004
11kB
自述文件
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
}'