This project aims to develop a RAG powered assistant to answer questions on various scientific research papers, currently limited to AI research.
A ChatGPT-3.5 LLM is utilized, and augmented using Research papers written after 2022, to improve it's knowledge. This application is served through FastAPI and Streamlit.
The Arxiv papers from https://github.com/aimerou/awesome-ai-papers?tab=readme-ov-file have been included in the knowledge base. Currently, only adding Arxiv papers is supported.
You can ask the chatbot questions to understand any AI concepts.
To launch app, run the following commands from root directory:
pip install -r requirements.txt
cd src
uvicorn app:app --reload
streamlit run streamlit_app.py