Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.5 KB

File metadata and controls

44 lines (31 loc) · 1.5 KB

Contributing to PGP – Applied AI & Agentic AI (IIITB)

This repo hosts course projects from the IIIT Bangalore × upGrad Executive PGP in Applied AI and Agentic AI.


Adding a New Project

  1. Create a folder under projects/, e.g.:
    • projects/module-rag-retrieval/
    • projects/capstone-a-ml-system/
    • projects/capstone-b-agentic-assistant/
  2. Inside that folder, add:
    • README.md – What the project does, how to run it, dependencies, and (optional) links to course module.
    • requirements.txt – Python dependencies.
    • Your code (notebooks, scripts, app, etc.).
  3. Optionally add a short entry in projects/README.md (project index).

Running a Project

  • Each project has its own README.md and requirements.txt.
  • Typical setup:
    cd projects/<project-name>
    python -m venv venv
    source venv/bin/activate   # Windows: venv\Scripts\activate
    pip install -r requirements.txt
  • Follow the project-specific README for data, API keys, and run instructions.

Course Context


Questions

Open a GitHub Issue.