Skip to content

Commit 98eb092

Browse files
committedAug 30, 2024
fix: Use system message in og qwen format. Closes abetlen#1697
1 parent d981d32 commit 98eb092

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎llama_cpp/llama_chat_format.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,7 @@ def format_qwen(
10091009
**kwargs: Any,
10101010
) -> ChatFormatterResponse:
10111011
_roles = dict(user="<|im_start|>user", assistant="<|im_start|>assistant")
1012-
system_message = "You are a helpful assistant."
1012+
system_message = _get_system_message(messages) or "You are a helpful assistant."
10131013
system_template = "<|im_start|>system\n{system_message}"
10141014
system_message = system_template.format(system_message=system_message)
10151015
_messages = _map_roles(messages, _roles)

0 commit comments

Comments
 (0)
Please sign in to comment.