├── README.md ├── assets ├── aqua.mp4 ├── greengard.mp4 ├── math.mp4 ├── moon.mp4 ├── plan.png ├── result.png └── workflow.png ├── config.yml ├── dataset └── greengard.pdf ├── llms ├── __init__.py ├── base_llm.py ├── depictqa.py ├── gemini.py ├── gpt4.py ├── gpt4_az.py ├── gpt4_az2.py ├── llama.py └── qwen.py ├── memory └── schedule_example.json ├── pipeline ├── infer.py ├── preacher.py └── prompts.py ├── requirements.txt ├── run_pdf.py ├── test_pdf.py ├── tools ├── __init__.py ├── qwen_tts.py ├── tavus.py ├── wanxiang_image.py └── wanxiang_video.py └── utils ├── logger.py ├── make_slides.py ├── math_vis.py ├── misc.py ├── mol.py ├── slides.py ├── textwork.py └── videowork.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/README.md -------------------------------------------------------------------------------- /assets/aqua.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/assets/aqua.mp4 -------------------------------------------------------------------------------- /assets/greengard.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/assets/greengard.mp4 -------------------------------------------------------------------------------- /assets/math.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/assets/math.mp4 -------------------------------------------------------------------------------- /assets/moon.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/assets/moon.mp4 -------------------------------------------------------------------------------- /assets/plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/assets/plan.png -------------------------------------------------------------------------------- /assets/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/assets/result.png -------------------------------------------------------------------------------- /assets/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/assets/workflow.png -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/config.yml -------------------------------------------------------------------------------- /dataset/greengard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/dataset/greengard.pdf -------------------------------------------------------------------------------- /llms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/llms/__init__.py -------------------------------------------------------------------------------- /llms/base_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/llms/base_llm.py -------------------------------------------------------------------------------- /llms/depictqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/llms/depictqa.py -------------------------------------------------------------------------------- /llms/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/llms/gemini.py -------------------------------------------------------------------------------- /llms/gpt4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/llms/gpt4.py -------------------------------------------------------------------------------- /llms/gpt4_az.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/llms/gpt4_az.py -------------------------------------------------------------------------------- /llms/gpt4_az2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/llms/gpt4_az2.py -------------------------------------------------------------------------------- /llms/llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/llms/llama.py -------------------------------------------------------------------------------- /llms/qwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/llms/qwen.py -------------------------------------------------------------------------------- /memory/schedule_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/memory/schedule_example.json -------------------------------------------------------------------------------- /pipeline/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/pipeline/infer.py -------------------------------------------------------------------------------- /pipeline/preacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/pipeline/preacher.py -------------------------------------------------------------------------------- /pipeline/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/pipeline/prompts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/run_pdf.py -------------------------------------------------------------------------------- /test_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/test_pdf.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/qwen_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/tools/qwen_tts.py -------------------------------------------------------------------------------- /tools/tavus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/tools/tavus.py -------------------------------------------------------------------------------- /tools/wanxiang_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/tools/wanxiang_image.py -------------------------------------------------------------------------------- /tools/wanxiang_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/tools/wanxiang_video.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/make_slides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/utils/make_slides.py -------------------------------------------------------------------------------- /utils/math_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/utils/math_vis.py -------------------------------------------------------------------------------- /utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/utils/misc.py -------------------------------------------------------------------------------- /utils/mol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/utils/mol.py -------------------------------------------------------------------------------- /utils/slides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/utils/slides.py -------------------------------------------------------------------------------- /utils/textwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/utils/textwork.py -------------------------------------------------------------------------------- /utils/videowork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/Paper2Video/HEAD/utils/videowork.py --------------------------------------------------------------------------------