├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── package.json ├── pnpm-lock.yaml ├── src ├── api │ └── index.ts ├── bot │ ├── commands │ │ ├── aboutCommand.ts │ │ ├── chatCommand.ts │ │ ├── clearCommand.ts │ │ ├── helpCommand.ts │ │ ├── imageCommand.ts │ │ └── pingCommand.ts │ ├── embeds │ │ ├── chatEmbed.ts │ │ ├── imageEmbed.ts │ │ └── systemEmbed.ts │ ├── index.ts │ └── models │ │ ├── command.ts │ │ └── embed.ts ├── index.ts ├── logger │ └── index.ts └── models │ ├── ai.ts │ └── runnable.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/bot/commands/aboutCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/bot/commands/aboutCommand.ts -------------------------------------------------------------------------------- /src/bot/commands/chatCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/bot/commands/chatCommand.ts -------------------------------------------------------------------------------- /src/bot/commands/clearCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/bot/commands/clearCommand.ts -------------------------------------------------------------------------------- /src/bot/commands/helpCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/bot/commands/helpCommand.ts -------------------------------------------------------------------------------- /src/bot/commands/imageCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/bot/commands/imageCommand.ts -------------------------------------------------------------------------------- /src/bot/commands/pingCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/bot/commands/pingCommand.ts -------------------------------------------------------------------------------- /src/bot/embeds/chatEmbed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/bot/embeds/chatEmbed.ts -------------------------------------------------------------------------------- /src/bot/embeds/imageEmbed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/bot/embeds/imageEmbed.ts -------------------------------------------------------------------------------- /src/bot/embeds/systemEmbed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/bot/embeds/systemEmbed.ts -------------------------------------------------------------------------------- /src/bot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/bot/index.ts -------------------------------------------------------------------------------- /src/bot/models/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/bot/models/command.ts -------------------------------------------------------------------------------- /src/bot/models/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/bot/models/embed.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/logger/index.ts -------------------------------------------------------------------------------- /src/models/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/models/ai.ts -------------------------------------------------------------------------------- /src/models/runnable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/src/models/runnable.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrozT/openai-discord/HEAD/tsconfig.json --------------------------------------------------------------------------------