├── .gitignore ├── Procfile ├── README.md ├── app.py ├── requirements.txt └── setup.sh /.gitignore: -------------------------------------------------------------------------------- 1 | venv -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: sh setup.sh && streamlit run app.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/dialogflow-telegram-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/dialogflow-telegram-chatbot/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | requests -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/dialogflow-telegram-chatbot/HEAD/setup.sh --------------------------------------------------------------------------------