matrix-gptbot/gptbot.py

38 lines
882 B
Python
Raw Normal View History

from classes.bot import GPTBot
2023-04-16 14:08:57 +00:00
from argparse import ArgumentParser
from configparser import ConfigParser
import signal
import asyncio
def sigterm_handler(_signo, _stack_frame):
exit()
2023-04-16 14:08:57 +00:00
if __name__ == "__main__":
# Parse command line arguments
parser = ArgumentParser()
parser.add_argument(
"--config", help="Path to config file (default: config.ini in working directory)", default="config.ini")
args = parser.parse_args()
# Read config file
config = ConfigParser()
config.read(args.config)
# Create bot
bot = GPTBot.from_config(config)
# Listen for SIGTERM
signal.signal(signal.SIGTERM, sigterm_handler)
# Start bot
2023-04-16 14:08:57 +00:00
try:
asyncio.run(bot.run())
except KeyboardInterrupt:
print("Received KeyboardInterrupt - exiting...")
except SystemExit:
print("Received SIGTERM - exiting...")