From fcf851295628b4ede9082d4f50b791a3ac76e50a Mon Sep 17 00:00:00 2001 From: Garfield Dai Date: Wed, 3 Jan 2024 12:51:19 +0800 Subject: [PATCH] fix: more like this. (#1875) --- api/core/application_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/core/application_manager.py b/api/core/application_manager.py index c1ad2b7010..82bf4ec2ef 100644 --- a/api/core/application_manager.py +++ b/api/core/application_manager.py @@ -473,7 +473,7 @@ class ApplicationManager: more_like_this_dict = copy_app_model_config_dict.get('more_like_this') if more_like_this_dict: if 'enabled' in more_like_this_dict and more_like_this_dict['enabled']: - properties['more_like_this'] = copy_app_model_config_dict.get('opening_statement') + properties['more_like_this'] = True # speech to text speech_to_text_dict = copy_app_model_config_dict.get('speech_to_text')