├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── README.zh-CN.md ├── example_history.json ├── main.py ├── pdf_files ├── bert.pdf └── transformer.pdf ├── requirements.txt ├── setup.sh └── utils.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duguce/Mini-ChatPDF/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duguce/Mini-ChatPDF/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duguce/Mini-ChatPDF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duguce/Mini-ChatPDF/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duguce/Mini-ChatPDF/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /example_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duguce/Mini-ChatPDF/HEAD/example_history.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duguce/Mini-ChatPDF/HEAD/main.py -------------------------------------------------------------------------------- /pdf_files/bert.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duguce/Mini-ChatPDF/HEAD/pdf_files/bert.pdf -------------------------------------------------------------------------------- /pdf_files/transformer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duguce/Mini-ChatPDF/HEAD/pdf_files/transformer.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duguce/Mini-ChatPDF/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duguce/Mini-ChatPDF/HEAD/setup.sh -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duguce/Mini-ChatPDF/HEAD/utils.py --------------------------------------------------------------------------------