Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 1.01 KB

File metadata and controls

63 lines (41 loc) · 1.01 KB

WWSI-GenAI

Course materials for GenAI course at WWSI.

Setup

1. Create Conda Environment

Create a new conda environment with Python 3.11:

conda create -n wwsi-genai python=3.11 -y

2. Activate Environment

conda activate wwsi-genai

3. Install Dependencies

Install required packages from requirements.txt:

pip install -r requirements.txt

4. Configure Environment Variables

Create a .env file in the root directory with your API keys and configuration:

# OpenAI API Configuration
OPENAI_API_KEY=your-openai-api-key-here

See .env.example for a template.

5. Start Jupyter

Launch Jupyter to work with the notebooks:

jupyter notebook

or

jupyter lab

Project Structure

WWSI-GenAI/
├── notebooks/          # Jupyter notebooks for course materials
├── requirements.txt    # Python dependencies
├── .env               # Environment variables (create this file)
└── README.md          # This file