Spaces:
Paused
Paused
File size: 212 Bytes
dbf8df0 |
1 2 3 4 5 6 7 8 9 10 |
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)
|