├── constants.py ├── db.py ├── env.py ├── main.py ├── pages ├── Chat With Documents.py ├── Manage Documents.py └── Manage Tags.py ├── requirements.txt └── utils.py /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush488-bit/chat-with-docs/HEAD/constants.py -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush488-bit/chat-with-docs/HEAD/db.py -------------------------------------------------------------------------------- /env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush488-bit/chat-with-docs/HEAD/env.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush488-bit/chat-with-docs/HEAD/main.py -------------------------------------------------------------------------------- /pages/Chat With Documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush488-bit/chat-with-docs/HEAD/pages/Chat With Documents.py -------------------------------------------------------------------------------- /pages/Manage Documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush488-bit/chat-with-docs/HEAD/pages/Manage Documents.py -------------------------------------------------------------------------------- /pages/Manage Tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush488-bit/chat-with-docs/HEAD/pages/Manage Tags.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush488-bit/chat-with-docs/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush488-bit/chat-with-docs/HEAD/utils.py --------------------------------------------------------------------------------