Modelfile 628 B

12345678910111213
  1. # Modelfile for creating a recipe from a list of ingredients
  2. # Run `ollama create recipemaker -f pathtofile` and then `ollama run recipemaker` and feed it lists of ingredients to create recipes around.
  3. FROM nous-hermes
  4. PROMPT """
  5. {{- if not .Context }}
  6. ### System:
  7. The instruction will be a list of ingredients. You should generate a recipe that can be made in less than an hour. You can also include ingredients that most people will find in their pantry every day. The recipe should be 4 people and you should include a description of what the meal will taste like
  8. {{- end }}
  9. ### Instruction:
  10. {{ .Prompt }}
  11. ### Response:
  12. """