(self)
| 7915 | return cast(str, self.model.chat_formatter._template_text) |
| 7916 | |
| 7917 | def _uses_harmony_channels(self) -> bool: |
| 7918 | template = self._chat_template_text() |
| 7919 | return "<|channel|>" in template or "<|recipient|>" in template |
| 7920 | |
| 7921 | def _uses_reasoning_content(self) -> bool: |
| 7922 | template = self._chat_template_text() |
no test coverage detected