├── .gitignore ├── Blog └── Hand-on-RAG.md ├── RAG ├── Embeddings.py ├── LLM.py ├── VectorBase.py └── utils.py ├── README.md ├── deprecated_tests ├── test.py ├── test11.py ├── test12.py ├── test13.py ├── test2.py ├── test3.py ├── test4.py ├── test5.py ├── test7.py ├── test8.py ├── test9.py ├── test_trans.py └── test_trans2.py ├── example.py ├── image_data ├── 小火龙.png ├── 小火龙2.png └── 皮卡丘.jpeg ├── images ├── RAG.png ├── Retrieval-Augmented Generation(RAG-Learning).png ├── output.png └── overall_workflow.png ├── paper.md ├── requirements.txt ├── test_related_data_and_scripts ├── test_ch.py ├── test_en.py └── translated_data.json ├── test_upload.py └── text_data ├── 2024-01-23_10-07-23 └── Git教程.md ├── 2024-01-23_10-10-05 └── Git教程.md ├── 2024-01-23_10-14-41 └── Github Api 使用.md ├── 2024-01-23_11-59-03 └── Github Api 使用.md └── 2024-01-23_12-01-19 └── Github Api 使用.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/.gitignore -------------------------------------------------------------------------------- /Blog/Hand-on-RAG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/Blog/Hand-on-RAG.md -------------------------------------------------------------------------------- /RAG/Embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/RAG/Embeddings.py -------------------------------------------------------------------------------- /RAG/LLM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/RAG/LLM.py -------------------------------------------------------------------------------- /RAG/VectorBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/RAG/VectorBase.py -------------------------------------------------------------------------------- /RAG/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/RAG/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/README.md -------------------------------------------------------------------------------- /deprecated_tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/deprecated_tests/test.py -------------------------------------------------------------------------------- /deprecated_tests/test11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/deprecated_tests/test11.py -------------------------------------------------------------------------------- /deprecated_tests/test12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/deprecated_tests/test12.py -------------------------------------------------------------------------------- /deprecated_tests/test13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/deprecated_tests/test13.py -------------------------------------------------------------------------------- /deprecated_tests/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/deprecated_tests/test2.py -------------------------------------------------------------------------------- /deprecated_tests/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/deprecated_tests/test3.py -------------------------------------------------------------------------------- /deprecated_tests/test4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/deprecated_tests/test4.py -------------------------------------------------------------------------------- /deprecated_tests/test5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/deprecated_tests/test5.py -------------------------------------------------------------------------------- /deprecated_tests/test7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/deprecated_tests/test7.py -------------------------------------------------------------------------------- /deprecated_tests/test8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/deprecated_tests/test8.py -------------------------------------------------------------------------------- /deprecated_tests/test9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/deprecated_tests/test9.py -------------------------------------------------------------------------------- /deprecated_tests/test_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/deprecated_tests/test_trans.py -------------------------------------------------------------------------------- /deprecated_tests/test_trans2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/deprecated_tests/test_trans2.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/example.py -------------------------------------------------------------------------------- /image_data/小火龙.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/image_data/小火龙.png -------------------------------------------------------------------------------- /image_data/小火龙2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/image_data/小火龙2.png -------------------------------------------------------------------------------- /image_data/皮卡丘.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/image_data/皮卡丘.jpeg -------------------------------------------------------------------------------- /images/RAG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/images/RAG.png -------------------------------------------------------------------------------- /images/Retrieval-Augmented Generation(RAG-Learning).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/images/Retrieval-Augmented Generation(RAG-Learning).png -------------------------------------------------------------------------------- /images/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/images/output.png -------------------------------------------------------------------------------- /images/overall_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/images/overall_workflow.png -------------------------------------------------------------------------------- /paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/paper.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_related_data_and_scripts/test_ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/test_related_data_and_scripts/test_ch.py -------------------------------------------------------------------------------- /test_related_data_and_scripts/test_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/test_related_data_and_scripts/test_en.py -------------------------------------------------------------------------------- /test_related_data_and_scripts/translated_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/test_related_data_and_scripts/translated_data.json -------------------------------------------------------------------------------- /test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/test_upload.py -------------------------------------------------------------------------------- /text_data/2024-01-23_10-07-23/Git教程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/text_data/2024-01-23_10-07-23/Git教程.md -------------------------------------------------------------------------------- /text_data/2024-01-23_10-10-05/Git教程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/text_data/2024-01-23_10-10-05/Git教程.md -------------------------------------------------------------------------------- /text_data/2024-01-23_10-14-41/Github Api 使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/text_data/2024-01-23_10-14-41/Github Api 使用.md -------------------------------------------------------------------------------- /text_data/2024-01-23_11-59-03/Github Api 使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/text_data/2024-01-23_11-59-03/Github Api 使用.md -------------------------------------------------------------------------------- /text_data/2024-01-23_12-01-19/Github Api 使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LikeGiver/VideoRAG/HEAD/text_data/2024-01-23_12-01-19/Github Api 使用.md --------------------------------------------------------------------------------