dify-on-wechat/voice/voice.py

11 lines
205 B
Python

"""
Voice service abstract class
"""
class Voice(object):
def voiceToText(self, voice_file):
"""
Send voice to voice service and get text
"""
raise NotImplementedError