├── .gitignore ├── README.md ├── data ├── 2018-SaoE-Enhancing_the_Simulation_of_Complex_Mechanical_Systems_with_Machine_Learning.pdf ├── 7B_2_DIEZ.pdf ├── demo.gif └── vector_store │ ├── chroma.sqlite3 │ └── f68202a6-7a7f-4c3b-8463-f26ded35cdec │ ├── data_level0.bin │ ├── header.bin │ ├── length.bin │ └── link_lists.bin ├── rag_engine.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | secrets.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirabdullahyaser/Retrieval-Augmented-Generation-Engine-with-LangChain-and-Streamlit/HEAD/README.md -------------------------------------------------------------------------------- /data/2018-SaoE-Enhancing_the_Simulation_of_Complex_Mechanical_Systems_with_Machine_Learning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirabdullahyaser/Retrieval-Augmented-Generation-Engine-with-LangChain-and-Streamlit/HEAD/data/2018-SaoE-Enhancing_the_Simulation_of_Complex_Mechanical_Systems_with_Machine_Learning.pdf -------------------------------------------------------------------------------- /data/7B_2_DIEZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirabdullahyaser/Retrieval-Augmented-Generation-Engine-with-LangChain-and-Streamlit/HEAD/data/7B_2_DIEZ.pdf -------------------------------------------------------------------------------- /data/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirabdullahyaser/Retrieval-Augmented-Generation-Engine-with-LangChain-and-Streamlit/HEAD/data/demo.gif -------------------------------------------------------------------------------- /data/vector_store/chroma.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirabdullahyaser/Retrieval-Augmented-Generation-Engine-with-LangChain-and-Streamlit/HEAD/data/vector_store/chroma.sqlite3 -------------------------------------------------------------------------------- /data/vector_store/f68202a6-7a7f-4c3b-8463-f26ded35cdec/data_level0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirabdullahyaser/Retrieval-Augmented-Generation-Engine-with-LangChain-and-Streamlit/HEAD/data/vector_store/f68202a6-7a7f-4c3b-8463-f26ded35cdec/data_level0.bin -------------------------------------------------------------------------------- /data/vector_store/f68202a6-7a7f-4c3b-8463-f26ded35cdec/header.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirabdullahyaser/Retrieval-Augmented-Generation-Engine-with-LangChain-and-Streamlit/HEAD/data/vector_store/f68202a6-7a7f-4c3b-8463-f26ded35cdec/header.bin -------------------------------------------------------------------------------- /data/vector_store/f68202a6-7a7f-4c3b-8463-f26ded35cdec/length.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirabdullahyaser/Retrieval-Augmented-Generation-Engine-with-LangChain-and-Streamlit/HEAD/data/vector_store/f68202a6-7a7f-4c3b-8463-f26ded35cdec/length.bin -------------------------------------------------------------------------------- /data/vector_store/f68202a6-7a7f-4c3b-8463-f26ded35cdec/link_lists.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rag_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirabdullahyaser/Retrieval-Augmented-Generation-Engine-with-LangChain-and-Streamlit/HEAD/rag_engine.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirabdullahyaser/Retrieval-Augmented-Generation-Engine-with-LangChain-and-Streamlit/HEAD/requirements.txt --------------------------------------------------------------------------------