ollama默认的上下文长度只有2048,所以想要改一下上下文长度,根据官方文档,两种方式可更改,通过设定启动命令
/set parameter num_ctx 32000
或者api传参:
curl http://localhost:11434/api/generate -d '{
"model": "llama3",
"prompt": "Why is the sky blue?",
"options": {
"num_ctx": 4096