Files
chatgpt-on-wechat/bridge/bridge.py
2022-12-10 13:15:31 +08:00

10 lines
194 B
Python

from bot import bot_factory
class Bridge(object):
def __init__(self):
pass
def fetch_reply_content(self, query):
return bot_factory.create_bot("chatGPT").reply(query)