From d18c3fc607a6e5a8a6e676e1bf4f9cdbe4bd1359 Mon Sep 17 00:00:00 2001 From: Max Date: Sat, 6 Sep 2025 17:30:54 +0800 Subject: [PATCH] Switch back to zh2023 model to fix filename mismatch issue --- example/lib/main.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/lib/main.dart b/example/lib/main.dart index 108e386..2b24a2f 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -82,9 +82,9 @@ class _SpeechRecognitionPageState extends State { ), ); - // 初始化服务 - 使用2025年最新模型(推荐) + // 初始化服务 - 使用2023年模型 final success = - await _speechService.initializeWithDefaultModel(ModelConfig.zh2025); + await _speechService.initializeWithDefaultModel(ModelConfig.zh2023); if (success) { // 监听识别结果