Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -455,9 +455,9 @@ def _warn_template_fallback(self, exc: Exception, impact: str) -> None:
if key in self._fallback_warned:
return
self._fallback_warned.add(key)
logger.exception(
"apply_chat_template failed for %s (%s); falling back to "
"whitespace tokenization. %s",
logger.info(
"apply_chat_template failed for %s (%s); "
"tokenizing as plain text instead. %s",
self._tokenizer_name,
type(exc).__name__,
impact,
Expand Down
Loading