mirror of
https://github.com/mudler/LocalAI
synced 2026-04-21 13:27:21 +00:00
Merge branch 'master' into fix/turboquant-drop-ignore-eos-patch
This commit is contained in:
commit
a05eaa8bc7
1 changed files with 10 additions and 0 deletions
|
|
@ -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>,
|
||||
|
|
|
|||
Loading…
Reference in a new issue