mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-01-19 01:21:01 +08:00
18 lines
347 B
Python
18 lines
347 B
Python
"""
|
|
Voice service abstract class
|
|
"""
|
|
|
|
|
|
class Voice(object):
|
|
def voiceToText(self, voice_file):
|
|
"""
|
|
Send voice to voice service and get text
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
def textToVoice(self, text):
|
|
"""
|
|
Send text to voice service and get voice
|
|
"""
|
|
raise NotImplementedError
|