This is a simple GenAI application that recommends a skincare routine based on a user's skin type and skin issues.
To try out the app on your local machine...
- First clone the repo into your desired location:
git clone https://github.com/mackenziemitchell6/SkincareRoutineAssistant.git
- Navigate to the repo's location on your local
cd SkincareRoutineAssistant
- Create a venv
python3 -m venv venv
source venv/bin/activate
- Pip install all needed libraries
pip install requirements.txt
- Setup streamlit secrets with OpenAI API KEY
- Generate an OpenAI API key here: https://platform.openai.com/api-keys
- Create a directory under the root
SkincareRoutineAssistant
dir called.streamlit
- Create a file under the
.streamlit
dir calledsecrets.toml
- Add your OpenAI API key to the
.streamlit/secrets.toml
file in the following format:
[openai] API_KEY="{OPENAI_API_KEY}"
- Ensure you are in the SkincareRoutineAssistant root directory, and run
streamlit run app/app.py