(self)
| 7919 | return "<|channel|>" in template or "<|recipient|>" in template |
| 7920 | |
| 7921 | def _uses_reasoning_content(self) -> bool: |
| 7922 | template = self._chat_template_text() |
| 7923 | return "reasoning_content" in template or "<think>" in template |
| 7924 | |
| 7925 | @staticmethod |
| 7926 | def _chat_message(data: Dict[str, Any]) -> ChatCompletionRequestMessage: |
no test coverage detected