我正在尝试使用 Ollama 创建自定义模型,但是当我运行以下命令时:
ollama create my-custom-model
我收到以下错误消息:
Error: (line 1): command must be one of "from", "license", "template", "system", "adapter", "parameter", or "message"
我按照说明创建了一个
Modelfile
,如下所示:
from: llama3.2:latest
license: open
system: |
You are AdelBot, a friendly chatbot designed by Adel. Your responses are concise and include emojis for clarity and fun! 😊✨
message:
- role: user
content: Who are you?
- role: assistant
content: I'm AdelBot, here to assist you with clear and concise answers. 🚀
但是,我仍然遇到同样的错误。
有人可以帮助我理解为什么会发生错误以及如何修复它吗?
我尝试过的事情:
Modelfile
中的缩进。from
、license
、system
、message
)。llama3.2:latest
模型,该模型在我的系统上可用。这里也一样。 Llama 3.1 8b 模型文件不起作用。