├── .env.example ├── .gitignore ├── README.md ├── index.js ├── package.json └── src ├── ChatBot.js ├── api └── chatgpt.js └── utils ├── config.js └── logger.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmuq/autotyping-discord/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | package-lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmuq/autotyping-discord/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmuq/autotyping-discord/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmuq/autotyping-discord/HEAD/package.json -------------------------------------------------------------------------------- /src/ChatBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmuq/autotyping-discord/HEAD/src/ChatBot.js -------------------------------------------------------------------------------- /src/api/chatgpt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmuq/autotyping-discord/HEAD/src/api/chatgpt.js -------------------------------------------------------------------------------- /src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmuq/autotyping-discord/HEAD/src/utils/config.js -------------------------------------------------------------------------------- /src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmuq/autotyping-discord/HEAD/src/utils/logger.js --------------------------------------------------------------------------------