Implementation for different method
(self, *args, **kwargs)
| 82 | |
| 83 | @abstractmethod |
| 84 | def _run_impl(self, *args, **kwargs) -> Any: |
| 85 | """ |
| 86 | Implementation for different method |
| 87 | """ |
| 88 | raise NotImplementedError |
| 89 | |
| 90 | def is_chunk_prefill_enabled(self) -> bool: |
| 91 | """ |