This is to be used for generative AI Course at the Open University of Kenya
# Codebase Genius (Backend)
Jac-based multi-agent system that:
- clones a public GitHub repo
- builds a file tree
- parses Python/Jac to build a Code Context Graph (CCG)
- generates Markdown docs (with Mermaid diagram)
- exposes walkers to run end-to-end
## Quickstart
```bash
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
jac serve main.jac
=======
# Codebase Genius (Backend)
JacLang backend exposing walkers via `jac serve main.jac`, powered by **byLLM** using **Gemini (gemini-2.5-plus)**.
## Prerequisites
- Python 3.10+
- Git
## Setup
```bash
python3 -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -r requirements.txt
# Generative_AI
This is to be used for generative AI Course at the Open University of Kenya