Update app.py
Browse files
app.py
CHANGED
|
@@ -124,7 +124,13 @@ def create_gradio_interface(issue_model, urgency_model):
|
|
| 124 |
gr.Textbox(label="Predicted Urgency Level")
|
| 125 |
],
|
| 126 |
title="Support Ticket Classifier",
|
| 127 |
-
description="Enter a ticket to classify its issue type and urgency level."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 128 |
)
|
| 129 |
|
| 130 |
# -------------------- 6. Main --------------------
|
|
|
|
| 124 |
gr.Textbox(label="Predicted Urgency Level")
|
| 125 |
],
|
| 126 |
title="Support Ticket Classifier",
|
| 127 |
+
description="Enter a ticket to classify its issue type and urgency level.",
|
| 128 |
+
examples=[
|
| 129 |
+
["payment issue with smartwatch v2, underbilled order 29224"],
|
| 130 |
+
["Router stopped working after update, need immediate help"],
|
| 131 |
+
["Received damaged headphones in shipment, request refund"],
|
| 132 |
+
["ordered smartwatch v2 got protab x1 instead order number 76301"]
|
| 133 |
+
]
|
| 134 |
)
|
| 135 |
|
| 136 |
# -------------------- 6. Main --------------------
|