Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ramalama/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def build_exec_args_bench(self, args, model_path):

def build_exec_args_run(self, args, model_path, prompt):
exec_model_path = model_path if not args.container else MNT_FILE
exec_args = ["llama-run", "-c", f"{args.context}", "--temp", f"{args.temp}"]
exec_args = ["llama-run", "-c", f"{args.context}", "--temp", f"{args.temp}", "--jinja"]

if args.seed:
exec_args += ["--seed", args.seed]
Expand Down
Loading