Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/python/coqui/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def LoadModel(self, request, context):

def TTS(self, request, context):
try:
# if model is multilangual add language from request or env as fallback
# if model is multilingual add language from request or env as fallback
lang = request.language or COQUI_LANGUAGE
if lang == "":
lang = None
Expand Down
2 changes: 1 addition & 1 deletion core/http/routes/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func RegisterUIRoutes(app *fiber.App,
var processingModels = NewModelOpCache()

// modelStatus returns the current status of the models being processed (installation or deletion)
// it is called asynchonously from the UI
// it is called asynchronously from the UI
modelStatus := func() (map[string]string, map[string]string) {
processingModelsData := processingModels.Map()

Expand Down
Loading