Course materials for GenAI course at WWSI.
Create a new conda environment with Python 3.11:
conda create -n wwsi-genai python=3.11 -yconda activate wwsi-genaiInstall required packages from requirements.txt:
pip install -r requirements.txtCreate 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.
Launch Jupyter to work with the notebooks:
jupyter notebookor
jupyter labWWSI-GenAI/
├── notebooks/ # Jupyter notebooks for course materials
├── requirements.txt # Python dependencies
├── .env # Environment variables (create this file)
└── README.md # This file