Bot for Telegram with a lot of commands and AI (Ollama/Gemini/Mistral) written in TypeScript + NodeJS/Bun runtime + Drizzle ORM (SQLite DB)
cp .env.example .env
# Edit .env: add BOT_TOKEN, CREATOR_ID and configure optional AI models (GEMINI_API_KEY, MISTRAL_API_KEY, OLLAMA_ADDRESS)With Bun (Recommended):
bun install
bunx drizzle-kit generate && bunx drizzle-kit migrate
bun run build && bun startWith Node.js:
npm install
npx drizzle-kit generate && npx drizzle-kit migrate
npm run build && npm startWith Docker Compose:
docker compose up -dWith Docker:
docker build -f Dockerfile -t tg-bot .
docker run -d --env-file .env -v $(pwd)/data:/config/data tg-botWith Docker (Bun):
docker build -f Dockerfile-bun -t tg-bot-bun .
docker run -d --env-file .env -v $(pwd)/data:/config/data tg-bot-bun- Node.js >= 18 OR Bun >= 1.0
- Docker (optional)
- AI chat (Gemini, Mistral, Ollama)
- Custom answers and commands
- Admin management
- User blocking (mute/unmute)
- QR code generation
- System info
- And more...