Files
chatgpt-on-wechat/bridge/bridge.py
2023-02-07 23:36:22 +08:00

10 lines
211 B
Python

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