在 Ollama 中创建自定义模型时,出现“命令必须是‘from’、‘license’、‘template’、‘system’、‘adapter’、‘parameter’或‘message’之一”

问题描述 投票:0回答:1

我正在尝试使用 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
    模型,该模型在我的系统上可用。
yaml artificial-intelligence chatbot ollama
1个回答
0
投票

这里也一样。 Llama 3.1 8b 模型文件不起作用。

© www.soinside.com 2019 - 2024. All rights reserved.