feat: integrate the AI assistant.

This commit is contained in:
Yiyang Kang 2023-03-20 18:12:41 +08:00
parent 522d253410
commit dcb251d2ad
Signed by: kkyy
GPG key ID: 80FD317ECAF06CC3
7 changed files with 366 additions and 7 deletions

View file

@ -81,6 +81,9 @@ func main() {
} else {
loglvl.SetLevel(parsedLvl)
}
if err := initMsgCache(); err != nil {
logger.Fatalw("Failed to initialize message cache", "err", err)
}
runBot()
}