├── .env.example ├── .gitignore ├── .prettierrc ├── README.md ├── db.json ├── node-nlp.d.ts ├── package.json ├── screenshot.png ├── src ├── alarm.ts ├── data │ ├── bans.ts │ ├── database.ts │ └── messages.ts ├── index.ts ├── miscellaneous │ ├── config.ts │ ├── types.ts │ └── util.ts └── nlp.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 4 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/README.md -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/db.json -------------------------------------------------------------------------------- /node-nlp.d.ts: -------------------------------------------------------------------------------- 1 | declare module "node-nlp"; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/alarm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/src/alarm.ts -------------------------------------------------------------------------------- /src/data/bans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/src/data/bans.ts -------------------------------------------------------------------------------- /src/data/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/src/data/database.ts -------------------------------------------------------------------------------- /src/data/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/src/data/messages.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/miscellaneous/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/src/miscellaneous/config.ts -------------------------------------------------------------------------------- /src/miscellaneous/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/src/miscellaneous/types.ts -------------------------------------------------------------------------------- /src/miscellaneous/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/src/miscellaneous/util.ts -------------------------------------------------------------------------------- /src/nlp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/src/nlp.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conaticus/ai-alt-detection/HEAD/tsconfig.json --------------------------------------------------------------------------------