├── .dokku ├── DOKKU.md ├── Procfile └── app.json ├── .env.copy ├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md └── bot.py /.dokku/DOKKU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/voice-transcribe-summarize-telegram-bot/HEAD/.dokku/DOKKU.md -------------------------------------------------------------------------------- /.dokku/Procfile: -------------------------------------------------------------------------------- 1 | worker: python bot.py 2 | -------------------------------------------------------------------------------- /.dokku/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/voice-transcribe-summarize-telegram-bot/HEAD/.dokku/app.json -------------------------------------------------------------------------------- /.env.copy: -------------------------------------------------------------------------------- 1 | TELEGRAM_BOT_TOKEN= 2 | GROQ_API_KEY= 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/voice-transcribe-summarize-telegram-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/voice-transcribe-summarize-telegram-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/voice-transcribe-summarize-telegram-bot/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/voice-transcribe-summarize-telegram-bot/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/voice-transcribe-summarize-telegram-bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/voice-transcribe-summarize-telegram-bot/HEAD/bot.py --------------------------------------------------------------------------------