/// YX ASR - 基于 sherpa_onnx 的 Flutter 语音识别插件 /// /// 提供完全离线的实时语音转文字功能 library yx_asr; // 核心服务 export 'src/yx_asr_service.dart'; // 接口抽象 export 'src/interfaces/speech_recognition_service.dart'; // 数据模型 export 'src/models/speech_recognition_result.dart'; export 'src/models/speech_recognition_error.dart'; export 'src/models/model_config.dart'; // UI 组件 export 'src/widgets/recording_button.dart';