package com.smartor.service; import com.alibaba.nls.client.protocol.asr.SpeechRecognizerListener; /** * 宣教分类Service接口 * * @author smartor * @date 2023-03-04 */ public interface PersonVoiceService { /** * 一句话识别 */ public String speechtotext(String filePath); /** * 一句话识别 */ public String texttospeech(String textspeech, String filePath); public Boolean explainHTML(); }