Views
No views yet
| Intent | Description | Example |
|---|---|---|
get_quote | Request policy quote | "How much for car insurance?" |
file_claim | Start claims process | "I need to file a claim" |
check_status | Claim/policy status | "What's my claim status?" |
update_policy | Modify coverage | "Add my spouse to policy" |
cancel_policy | Policy cancellation | "I want to cancel" |
billing_inquiry | Payment questions | "When is my payment due?" |
coverage_question | Coverage details | "Am I covered for floods?" |
general_inquiry | Other questions | "What's your phone number?" |
| Metric | Score |
|---|---|
| Accuracy | 94.2% |
| F1 Score | 93.8% |
| Precision | 94.5% |
| Recall | 93.1% |
1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="gcc-insurance-ml-models/ai-maya-intent-classifier")
4result = classifier("I was in a car accident and need to file a claim")
5# Output: [{'label': 'file_claim', 'score': 0.97}]