QChatGPT/main.py

19 lines
409 B
Python
Raw Normal View History

import asyncio
2024-01-27 00:05:55 +08:00
asciiart = r"""
___ ___ _ _ ___ ___ _____
/ _ \ / __| |_ __ _| |_ / __| _ \_ _|
| (_) | (__| ' \/ _` | _| (_ | _/ | |
\__\_\\___|_||_\__,_|\__|\___|_| |_|
2024-02-08 13:37:27 +08:00
开源地址: https://github.com/RockChinQ/QChatGPT
📖文档地址: https://q.rkcn.top
2024-01-27 00:05:55 +08:00
"""
if __name__ == '__main__':
2024-01-27 00:05:55 +08:00
print(asciiart)
from pkg.core import boot
asyncio.run(boot.main())