(self)
| 7910 | return tools |
| 7911 | |
| 7912 | def _chat_template_text(self) -> str: |
| 7913 | if self.model.chat_formatter is None: |
| 7914 | return "" |
| 7915 | return cast(str, self.model.chat_formatter._template_text) |
| 7916 | |
| 7917 | def _uses_harmony_channels(self) -> bool: |
| 7918 | template = self._chat_template_text() |
no outgoing calls
no test coverage detected