# Ollama Modelfile for book-builder-bookwriter-v1 # This is a base completion model — no chat template. # Use Ollama in raw-prompt mode: # ollama run hf.co/Fordentinc/book-builder-bookwriter-v1:Q5_K_M --raw < your_bible.txt FROM hf.co/Fordentinc/book-builder-bookwriter-v1:Q5_K_M TEMPLATE """{{ .Prompt }}""" PARAMETER temperature 0.8 PARAMETER top_p 0.95 PARAMETER repeat_penalty 1.05 PARAMETER num_ctx 8192 PARAMETER num_predict 2048 # No stop tokens — let the model write a full chapter.