faq-rag-chatbot / notes.txt
Techbite's picture
initial commit
26d1a81
raw
history blame
411 Bytes
# Create a virtual environment (recommended)
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install required packages
pip install torch transformers sentence-transformers faiss-cpu pandas streamlit nltk
# Activate your virtual environment if not already active
source venv/bin/activate # On Windows: venv\Scripts\activate
# Run the Streamlit app
streamlit run app.py