Views
No views yet
.
├── app.py # FastAPI app
├── models.py # ML Model training and inference
├── utils.py # PII masking/unmasking logic
├── requirements.txt # Python dependencies
├── README.md # Project overview and setup1pip install -r requirements.txt
2python app.py/classify
Method: POST1{
2 "input_email_body": "Hi, my name is John Doe and I need help with billing."
3}1{
2 "input_email_body": "Hi, my name is John Doe and I need help with billing.",
3 "list_of_masked_entities": [
4 {
5 "position": [17, 25],
6 "classification": "full_name",
7 "entity": "John Doe"
8 }
9 ],
10 "masked_email": "Hi, my name is [full_name] and I need help with billing.",
11 "category_of_the_email": "Billing Issues"
12}