├── .gitignore ├── LICENSE ├── README.md ├── app ├── app.py ├── constants │ └── prompts.toml ├── date_iterator.sh ├── gen │ ├── gemini.py │ └── utils.py ├── outputs.json ├── paper │ ├── download.py │ └── parser.py ├── requirements.txt └── utils.py └── notebooks └── analyze_arxiv_pdf.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-diver/auto-paper-analysis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-diver/auto-paper-analysis/HEAD/README.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-diver/auto-paper-analysis/HEAD/app/app.py -------------------------------------------------------------------------------- /app/constants/prompts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-diver/auto-paper-analysis/HEAD/app/constants/prompts.toml -------------------------------------------------------------------------------- /app/date_iterator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-diver/auto-paper-analysis/HEAD/app/date_iterator.sh -------------------------------------------------------------------------------- /app/gen/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-diver/auto-paper-analysis/HEAD/app/gen/gemini.py -------------------------------------------------------------------------------- /app/gen/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-diver/auto-paper-analysis/HEAD/app/gen/utils.py -------------------------------------------------------------------------------- /app/outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-diver/auto-paper-analysis/HEAD/app/outputs.json -------------------------------------------------------------------------------- /app/paper/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-diver/auto-paper-analysis/HEAD/app/paper/download.py -------------------------------------------------------------------------------- /app/paper/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-diver/auto-paper-analysis/HEAD/app/paper/parser.py -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-diver/auto-paper-analysis/HEAD/app/requirements.txt -------------------------------------------------------------------------------- /app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-diver/auto-paper-analysis/HEAD/app/utils.py -------------------------------------------------------------------------------- /notebooks/analyze_arxiv_pdf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-diver/auto-paper-analysis/HEAD/notebooks/analyze_arxiv_pdf.ipynb --------------------------------------------------------------------------------