Created
January 3, 2024 09:35
-
-
Save olafgeibig/0e8d8e06c40beda16424843e29fecb6a to your computer and use it in GitHub Desktop.
Ollama modelfile for nous-hermes-2-solar-10.7b
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ./nous-hermes-2-solar-10.7b.Q5_K_M.gguf | |
PARAMETER num_ctx 4096 | |
TEMPLATE """<|im_start|>system | |
{{ .System }}<|im_end|> | |
<|im_start|>user | |
{{ .Prompt }}<|im_end|> | |
<|im_start|>assistant | |
""" | |
PARAMETER stop "<|im_start|>" | |
PARAMETER stop "<|im_end|>" | |
PARAMETER stop "Observation:" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tweaked for agents with CrewAI. CrewAI stop word added and maxed out the context window.