Register all FunAudioChat plugins with LLaMA-Factory. This is the main entry point for registration.
()
| 142 | |
| 143 | |
| 144 | def register_all() -> None: |
| 145 | """ |
| 146 | Register all FunAudioChat plugins with LLaMA-Factory. |
| 147 | This is the main entry point for registration. |
| 148 | """ |
| 149 | # Register MM plugins first |
| 150 | register_mm_plugins() |
| 151 | |
| 152 | # Register attention plugin |
| 153 | register_attention_plugin() |
| 154 | |
| 155 | # Then register templates |
| 156 | register_templates() |
| 157 | |
| 158 | |
| 159 | __all__ = [ |
no test coverage detected