diff --git a/src/plugins/chat/llm_generator.py b/src/plugins/chat/llm_generator.py index a19a222c2..04016f34b 100644 --- a/src/plugins/chat/llm_generator.py +++ b/src/plugins/chat/llm_generator.py @@ -194,6 +194,6 @@ class InitiativeMessageGenerate: prompt = prompt_builder._build_initiative_prompt( select_dot, prompt_template, memory ) - content, reasoning = self.model_r1.generate_response(prompt) + content, reasoning = self.model_r1.generate_response_async(prompt) print(f"[DEBUG] {content} {reasoning}") return content