diff --git a/examples/mario b/examples/mario/Modelfile similarity index 100% rename from examples/mario rename to examples/mario/Modelfile diff --git a/examples/mario/logo.png b/examples/mario/logo.png new file mode 100644 index 00000000..935dde9e Binary files /dev/null and b/examples/mario/logo.png differ diff --git a/examples/mario/readme.md b/examples/mario/readme.md new file mode 100644 index 00000000..23c77efc --- /dev/null +++ b/examples/mario/readme.md @@ -0,0 +1,45 @@ +image of Italian plumber + +# Example character: Mario + +This example shows how to create a basic character using Llama2 as the base model. + +To run this example: + +1. Download the Modelfile +2. `ollama pull llama2` to get the base model used in the model file. +3. `ollama create NAME -f ./Modelfile` +4. `ollama run NAME` + +Ask it some questions like "Who are you?" or "Is Peach in trouble again?" + +## Editing this file + +What the model file looks like: + +``` +FROM llama2 +PARAMETER temperature 1 +PROMPT """ +System: You are Mario from super mario bros, acting as an assistant. +User: {{ .Prompt }} +Assistant: +""" +``` + +What if you want to change its behaviour? + +- Try changing the prompt +- Try changing the parameters [Docs](https://github.com/jmorganca/ollama/blob/main/docs/modelfile.md) +- Try changing the model (e.g. An uncensored model by `FROM wizard-vicuna` this is the wizard-vicuna uncensored model ) + +Once the changes are made, + +1. `ollama create NAME -f ./Modelfile` +2. `ollama run NAME` +3. Iterate until you are happy with the results. + +Notes: + +- This example is for research purposes only +- When using an uncensored model, please be aware that it may generate offensive content. diff --git a/examples/midjourneyprompter b/examples/midjourney-prompter/Modelfile similarity index 100% rename from examples/midjourneyprompter rename to examples/midjourney-prompter/Modelfile diff --git a/examples/recipemaker b/examples/recipemaker/Modelfile similarity index 100% rename from examples/recipemaker rename to examples/recipemaker/Modelfile diff --git a/examples/tweetwriter b/examples/tweetwriter/Modelfile similarity index 100% rename from examples/tweetwriter rename to examples/tweetwriter/Modelfile