選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

bridge.py 283B

12345678910
  1. from bot import bot_factory
  2. class Bridge(object):
  3. def __init__(self):
  4. pass
  5. def fetch_reply_content(self, query, context):
  6. return bot_factory.create_bot("chatGPT").reply(query, context)
  7. # return bot_factory.create_bot("baidu").reply(query, context)