👍️[Update] Model : translationの出力をlist形式に変更
This commit is contained in:
@@ -229,7 +229,7 @@ class Model:
|
||||
target_country,
|
||||
message
|
||||
)
|
||||
return translation, success_flag
|
||||
return [translation], success_flag
|
||||
|
||||
def addKeywords(self):
|
||||
for f in config.INPUT_MIC_WORD_FILTER:
|
||||
|
||||
@@ -201,7 +201,7 @@ class SpeakerMessage:
|
||||
},
|
||||
})
|
||||
elif isinstance(message, str) and len(message) > 0:
|
||||
translation = ""
|
||||
translation = []
|
||||
if model.detectRepeatReceiveMessage(message):
|
||||
return
|
||||
elif config.ENABLE_TRANSLATION is False:
|
||||
|
||||
Reference in New Issue
Block a user