mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-03-18 12:40:06 +08:00
11 lines
283 B
Python
11 lines
283 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("chatGPT").reply(query, context)
|
|
# return bot_factory.create_bot("baidu").reply(query, context)
|