Initial Telegram AI bot

This commit is contained in:
hbrain 2026-05-22 06:01:00 +00:00
commit 2f88229a1f
8 changed files with 1047 additions and 0 deletions

18
package.json Normal file
View file

@ -0,0 +1,18 @@
{
"name": "marvin",
"version": "1.0.0",
"description": "Telegram AI bot powered by Gemini",
"type": "module",
"main": "src/bot.js",
"scripts": {
"start": "node --no-warnings src/bot.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@google/genai": "^2.6.0",
"dotenv": "^17.4.2",
"telegraf": "^4.16.3"
}
}