├── .dockerignore ├── .gcloudignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── RESEARCH.md ├── main.py ├── recording.wav ├── requirements.txt ├── static └── styles.css ├── templates ├── call.html └── index.html ├── testenv.py ├── vercel.json └── wsgi.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/.gcloudignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/README.md -------------------------------------------------------------------------------- /RESEARCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/RESEARCH.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/main.py -------------------------------------------------------------------------------- /recording.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/recording.wav -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | twilio 2 | openai 3 | flask 4 | gunicorn 5 | langdetect -------------------------------------------------------------------------------- /static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/static/styles.css -------------------------------------------------------------------------------- /templates/call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/templates/call.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/templates/index.html -------------------------------------------------------------------------------- /testenv.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | print(os.getenv('AUTH_TOKEN')) -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/vercel.json -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalMamba/MeraSaarthi/HEAD/wsgi.py --------------------------------------------------------------------------------