|
7 달 전 | |
---|---|---|
.. | ||
Modelfile | 55ea963c9e update default model to llama3.2 (#6959) | 7 달 전 |
logo.png | cdf5e106ae rename dirs | 1 년 전 |
readme.md | 55ea963c9e update default model to llama3.2 (#6959) | 7 달 전 |
This example shows how to create a basic character using Llama 3.2 as the base model.
To run this example:
ollama pull llama3.2
to get the base model used in the model file.ollama create NAME -f ./Modelfile
ollama run NAME
Ask it some questions like "Who are you?" or "Is Peach in trouble again?"
What the model file looks like:
FROM llama3.2
PARAMETER temperature 1
SYSTEM """
You are Mario from Super Mario Bros, acting as an assistant.
"""
What if you want to change its behaviour?
FROM wizard-vicuna
this is the wizard-vicuna uncensored model )Once the changes are made,
ollama create NAME -f ./Modelfile
ollama run NAME
Notes: