fix: typos (#5376)

Signed-off-by: omahs <73983677+omahs@users.noreply.github.com>
This commit is contained in:
omahs 2025-05-16 12:45:48 +02:00 committed by GitHub
parent 525cf198be
commit 0f365ac204
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 15 additions and 15 deletions

View file

@ -32,7 +32,7 @@ func TTSEndpoint(cl *config.BackendConfigLoader, ml *model.ModelLoader, appConfi
return fiber.ErrBadRequest
}
log.Debug().Str("modelName", input.ModelID).Msg("elevenlabs TTS request recieved")
log.Debug().Str("modelName", input.ModelID).Msg("elevenlabs TTS request received")
filePath, _, err := backend.ModelTTS(input.Text, voiceID, input.LanguageCode, ml, appConfig, *cfg)
if err != nil {

View file

@ -30,7 +30,7 @@ func JINARerankEndpoint(cl *config.BackendConfigLoader, ml *model.ModelLoader, a
return fiber.ErrBadRequest
}
log.Debug().Str("model", input.Model).Msg("JINA Rerank Request recieved")
log.Debug().Str("model", input.Model).Msg("JINA Rerank Request received")
request := &proto.RerankRequest{
Query: input.Query,

View file

@ -34,7 +34,7 @@ func TTSEndpoint(cl *config.BackendConfigLoader, ml *model.ModelLoader, appConfi
return fiber.ErrBadRequest
}
log.Debug().Str("model", input.Model).Msg("LocalAI TTS Request recieved")
log.Debug().Str("model", input.Model).Msg("LocalAI TTS Request received")
if cfg.Backend == "" {
if input.Backend != "" {

View file

@ -28,7 +28,7 @@ func VADEndpoint(cl *config.BackendConfigLoader, ml *model.ModelLoader, appConfi
return fiber.ErrBadRequest
}
log.Debug().Str("model", input.Model).Msg("LocalAI VAD Request recieved")
log.Debug().Str("model", input.Model).Msg("LocalAI VAD Request received")
resp, err := backend.VAD(input, c.Context(), ml, appConfig, *cfg)