
cogito Models
Cogito v1 预览版 LLM 是指令调整的生成模型(文本输入 + 文本输出)。所有模型均采用开放许可发布,可供商业使用。
要启用扩展思考,请在系统提示中包含启用深度思考子程序 Enable deep thinking subroutine.:
/set system """Enable deep thinking subroutine."""
curl http://localhost:11434/api/chat -d '{
"model": "cogito",
"messages": [
{
"role": "system",
"content": "Enable deep thinking subroutine."
},
{
"role": "user",
"content": "How many letter Rs are in the word Strawberry?"
}
]
}'
下面示例使用的模型是 cogito 模型。
ollama serve
ollama run cogito:3b # 3B
ollama run cogito:8b # 8B
ollama run cogito:14b # 14B
ollama run cogito:32b # 32B
ollama run cogito:70b # 70B
--------------------
curl -X POST http://localhost:11434/api/generate -d '{
"model": "cogito",
"prompt":"Why is the sky blue?"
}'