An attempt at developing LLM-powered (RAFT-based) AI legal assistant for African Law
# OpenLaw AI Paralegal/Legal Assistant
An LLM-powered (RAFT-based) AI legal assistant for African Law
## Project Organization
```
├── LICENSE requirements.txt`
│
├── setup.cfg <- Configuration file for flake8
│
└── openlaw_legal_assistant <- Source code for use in this project.
│
├── __init__.py <- Makes openlaw_legal_assistant a Python module
│
├── data <- Scripts to download or generate data
│ └── make_dataset.py
│
├── features <- Scripts to turn raw data into features for modeling
│ └── build_features.py
│
├── models <- Scripts to train models and then use trained models to make
│ │ predictions
│ ├── predict_model.py
│ └── train_model.py
│
└── visualization <- Scripts to create exploratory and results oriented visualizations
└── visualize.py
```
--------