File size: 452 Bytes
8ea3330 eccf853 8ea3330 eccf853 8ea3330 eccf853 8ea3330 eccf853 8ea3330 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # Point this to exactly where you downloaded the GGUF from the Hermes Colab
FROM ./vsl_hermes_model-unsloth.Q8_0.gguf
# Parameters to keep the Stage Manager grounded and brutalist
PARAMETER temperature 0.7
PARAMETER top_p 0.9
# CRITICAL: Hermes 3 / ChatML stop tokens
PARAMETER stop "<|im_end|>"
PARAMETER stop "<|im_start|>"
# We do NOT need to define the SYSTEM prompt here, because BoneAmanita
# injects the dynamic VSL System Prompt at runtime!
|