mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-02-12 02:05:06 +08:00
10 lines
187 B
Python
10 lines
187 B
Python
from bot import bot_factory
|
|
|
|
|
|
class Bridge(object):
|
|
def __init__(self):
|
|
pass
|
|
|
|
def fetch_reply_content(self, query):
|
|
return bot_factory.BaiduUnitBot().reply(query)
|