# ECTEL_Course_Generation_APP This is app for generating a scenario-based tutoring lesson based on the uploaded PDFs , expected themes . Our code will be released after the paper is getting accepted. ## Steps to Run the app 1. First step creating virtual env ```python python3 -m venv myenv ``` 2. Then activate it ```bash source myenv/bin/activate ``` 3. Then after activating the virtual env install necessary libraries ```python pip install -r requirements.txt ``` 4. Then run streamlit app ```python python -m streamlit run app.py ```