An AI-powered beauty advisor that provides personalized skincare recommendations based on skin type analysis.
- Skin type analysis using AI
- Personalized product recommendations
- Interactive chat interface
- Product information and ingredient details
- Clone the repository:
git clone <your-repository-url>
cd <repository-name>- Create a virtual environment and activate it:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate- Install the required packages:
pip install -r requirements.txt-
Set up environment variables:
- Copy
.env.exampleto.env - Add your OpenAI API key to the
.envfile:OPENAI_API_KEY=your_openai_api_key_here
- Copy
-
Run the application:
python app.pyThe application will be available at http://localhost:5000
Create a .env file in the root directory with the following variables:
OPENAI_API_KEY: Your OpenAI API key (required)
Never commit your .env file or expose your API keys. The .env file is included in .gitignore to prevent accidental commits.
[Your chosen license]