├── .env.template ├── .gitignore ├── LICENSE ├── README.md ├── chatbot.py ├── indexer.py ├── pdf ├── DeepSeek-VL-Real-World_Vision_Language.pdf ├── KIMI_SCALING_REINFORCEMENT_LEARNING_WITH LLMS.pdf ├── The Llama 3 Herd of Models.pdf └── attention_is_all_you_need.pdf ├── requirements.txt └── text └── sample.txt /.env.template: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY= 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghavan/PdfGptIndexer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghavan/PdfGptIndexer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghavan/PdfGptIndexer/HEAD/README.md -------------------------------------------------------------------------------- /chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghavan/PdfGptIndexer/HEAD/chatbot.py -------------------------------------------------------------------------------- /indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghavan/PdfGptIndexer/HEAD/indexer.py -------------------------------------------------------------------------------- /pdf/DeepSeek-VL-Real-World_Vision_Language.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghavan/PdfGptIndexer/HEAD/pdf/DeepSeek-VL-Real-World_Vision_Language.pdf -------------------------------------------------------------------------------- /pdf/KIMI_SCALING_REINFORCEMENT_LEARNING_WITH LLMS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghavan/PdfGptIndexer/HEAD/pdf/KIMI_SCALING_REINFORCEMENT_LEARNING_WITH LLMS.pdf -------------------------------------------------------------------------------- /pdf/The Llama 3 Herd of Models.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghavan/PdfGptIndexer/HEAD/pdf/The Llama 3 Herd of Models.pdf -------------------------------------------------------------------------------- /pdf/attention_is_all_you_need.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghavan/PdfGptIndexer/HEAD/pdf/attention_is_all_you_need.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghavan/PdfGptIndexer/HEAD/requirements.txt -------------------------------------------------------------------------------- /text/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghavan/PdfGptIndexer/HEAD/text/sample.txt --------------------------------------------------------------------------------