gitextract_9gszgdzf/ ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── ChatReviewerAndResponse/ │ ├── README.md │ ├── ReviewFormat.txt │ ├── chat_response.py │ ├── chat_reviewer.py │ ├── get_paper.py │ └── review_comments.txt ├── Dockerfile ├── HuggingFaceDeploy/ │ ├── Private/ │ │ ├── README.md │ │ ├── app.py │ │ ├── optimizeOpenAI.py │ │ └── requirements.txt │ ├── Public/ │ │ ├── app.py │ │ ├── optimizeOpenAI.py │ │ └── requirements.txt │ ├── README.md │ └── app.py ├── LICENSE.md ├── README.md ├── auto_survey/ │ ├── README.md │ ├── main.py │ ├── outputs/ │ │ └── outputs_20230707_202302/ │ │ ├── generation.log │ │ ├── main.tex │ │ ├── math_commands.tex │ │ ├── ref.bib │ │ ├── related works.tex │ │ ├── survey.md │ │ ├── survey_chinese.md │ │ └── template.tex │ ├── requirements.txt │ └── utils/ │ ├── __init__.py │ ├── embeddings.py │ ├── figures.py │ ├── file_operations.py │ ├── gpt_interaction.py │ ├── knowledge.py │ ├── knowledge_databases/ │ │ └── ml_textbook_test/ │ │ ├── db_meta.json │ │ ├── embeddings/ │ │ │ └── text_embedding_pairs.pickle │ │ └── faiss_index/ │ │ ├── index.faiss │ │ └── index.pkl │ ├── latex_templates/ │ │ └── Default/ │ │ ├── math_commands.tex │ │ ├── related works.tex │ │ ├── survey.md │ │ ├── survey_chinese.md │ │ └── template.tex │ ├── prompts.py │ ├── references.py │ ├── storage.py │ └── tex_processing.py ├── chat_arxiv.py ├── chat_paper.py ├── chat_translate.py ├── docker/ │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── build.sh │ ├── conda_env.yml │ ├── dev.sh │ ├── docker-compose.yaml │ ├── make.bat │ ├── tagpush.sh │ └── tsinghua.condarc ├── others/ │ ├── ChatPaper.ipynb │ ├── chat_arxiv_maomao.py │ ├── google_scholar_spider.py │ ├── machine_learning.csv │ └── project_analysis.md ├── readme_en.md ├── requirements.txt ├── scipdf_parser-master/ │ ├── LICENSE.txt │ ├── README.md │ ├── requirements.txt │ ├── scipdf/ │ │ ├── __init__.py │ │ ├── features/ │ │ │ ├── __init__.py │ │ │ └── text_utils.py │ │ └── pdf/ │ │ ├── __init__.py │ │ ├── parse_pdf.py │ │ └── pdffigures2/ │ │ └── pdffigures2-assembly-0.0.12-SNAPSHOT.jar │ ├── serve_grobid.sh │ └── setup.py ├── source/ │ ├── conf.py │ ├── index.rst │ ├── troubleshooting/ │ │ ├── troubleshooting.md │ │ └── troubleshooting_zh.md │ └── tutorial/ │ ├── getting_started.md │ ├── getting_started_zh.md │ ├── reading_papers.md │ └── reading_papers_zh.md └── start.sh