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
7 changes: 3 additions & 4 deletions ramalama/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,10 +593,9 @@ def llama_serve(self, args):
else:
exec_args += ["--jinja"]

# TODO: see https://github.com/containers/ramalama/issues/1202
# chat_template_path = self._get_chat_template_path(args.container, args.generate, args.dryrun)
# if chat_template_path is not None:
# exec_args += ["--chat-template-file", chat_template_path]
chat_template_path = self._get_chat_template_path(args.container, args.generate, args.dryrun)
if chat_template_path is not None:
exec_args += ["--chat-template-file", chat_template_path]

if should_colorize():
exec_args += ["--log-colors"]
Expand Down
Loading