Files
AstrBot/main.py
T
2023-01-09 18:55:15 +08:00

10 lines
213 B
Python

import cores.qqbot.core as qqBot
from cores.openai.core import ChatGPT
def main():
#实例化ChatGPT
chatgpt = ChatGPT()
# #执行qqBot
qqBot.initBot(chatgpt)
if __name__ == "__main__":
main()