Spaces:
Sleeping
Sleeping
| # 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 |