| 169 | |
| 170 | #[async_trait] |
| 171 | pub trait AudioGenerator: Generator { |
| 172 | async fn generate_audio(&mut self, args: &AudioGenerationArgs) -> Result<AudioOutput>; |
| 173 | } |
| 174 | |
| 175 | /// Unified model trait — every model used by Master implements this. |
| 176 | /// Each model provides real implementations for its modality and |
nothing calls this directly
no outgoing calls
no test coverage detected