Merge branch 'master' into fix/turboquant-drop-ignore-eos-patch

This commit is contained in:
Ettore Di Giacinto 2026-04-19 13:30:35 +02:00 committed by GitHub
commit a05eaa8bc7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -341,6 +341,16 @@ impl Backend for KokorosService {
Err(Status::unimplemented("Not supported"))
}
type AudioTranscriptionStreamStream =
ReceiverStream<Result<backend::TranscriptStreamResponse, Status>>;
async fn audio_transcription_stream(
&self,
_: Request<backend::TranscriptRequest>,
) -> Result<Response<Self::AudioTranscriptionStreamStream>, Status> {
Err(Status::unimplemented("Not supported"))
}
async fn sound_generation(
&self,
_: Request<backend::SoundGenerationRequest>,