File size: 533 Bytes
6cc8da8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Queue Prediction Model API

This API predicts the appropriate queue for support tickets based on their title and description.

## API Endpoints

### POST /predict

Predicts the queue for a ticket based on its title and description.

#### Input Format:
```json
{
    "title": "string",
    "description": "string"
}
```

#### Output Format:
```json
{
    "predicted_queue": "string",
    "confidence": float,
    "top_3_predictions": [
        {
            "queue": "string",
            "probability": float
        }
    ]
}
```