Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 824 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 824 Bytes

Chatbot Vestibular Unicamp 2024

RAG-based chatbot that answers questions about the 2024 Unicamp admission test. Implemented as part of the selection process for undergraduate research at FEEC-NeuralMind. Implemented using LangChain and Groq.

Usage Guide

After installing all the required dependencies, first run the following command to fetch the documents from the web and create the embeddings that will be fed into the model to generate the answears:

fab CreateEmbeddings

After the process is complete, you can run the Chatbot either via CLI or web UI, through the following commands, respectively:

fab RunChatbotCLI
fab RunChatbotUI

Alternatively, you can also run the UI Chatbot via streamlit run src/chatbot_app.py.