├── .env.example ├── .gitignore ├── .idea ├── .gitignore ├── chat-pdf-hugginface.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── app.py ├── gitit.sh └── requirements.txt /.env.example: -------------------------------------------------------------------------------- 1 | HUGGINGFACEHUB_API_TOKEN = your_token_here -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudan94/chat-pdf-hugginface/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudan94/chat-pdf-hugginface/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/chat-pdf-hugginface.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudan94/chat-pdf-hugginface/HEAD/.idea/chat-pdf-hugginface.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudan94/chat-pdf-hugginface/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudan94/chat-pdf-hugginface/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudan94/chat-pdf-hugginface/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudan94/chat-pdf-hugginface/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudan94/chat-pdf-hugginface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudan94/chat-pdf-hugginface/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudan94/chat-pdf-hugginface/HEAD/app.py -------------------------------------------------------------------------------- /gitit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudan94/chat-pdf-hugginface/HEAD/gitit.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudan94/chat-pdf-hugginface/HEAD/requirements.txt --------------------------------------------------------------------------------