├── .env ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── demo.mp4 └── logo.png ├── requirements.txt └── src ├── app.py └── utils ├── attachment.py ├── tool.py └── utils.py /.env: -------------------------------------------------------------------------------- 1 | GROQ_API_KEY=your_groq_api_key -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamalali/InboxHero/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamalali/InboxHero/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamalali/InboxHero/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamalali/InboxHero/HEAD/assets/demo.mp4 -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamalali/InboxHero/HEAD/assets/logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamalali/InboxHero/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamalali/InboxHero/HEAD/src/app.py -------------------------------------------------------------------------------- /src/utils/attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamalali/InboxHero/HEAD/src/utils/attachment.py -------------------------------------------------------------------------------- /src/utils/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamalali/InboxHero/HEAD/src/utils/tool.py -------------------------------------------------------------------------------- /src/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamalali/InboxHero/HEAD/src/utils/utils.py --------------------------------------------------------------------------------