Spaces:
Sleeping
Sleeping
Add openenv tag and full README content
Browse files
README.md
CHANGED
|
@@ -4,9 +4,29 @@ emoji: 🎫
|
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: green
|
| 6 |
sdk: docker
|
|
|
|
|
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
# Customer Support Ticket Resolution Environment
|
| 11 |
|
| 12 |
-
A real-world OpenEnv environment
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: green
|
| 6 |
sdk: docker
|
| 7 |
+
tags:
|
| 8 |
+
- openenv
|
| 9 |
pinned: false
|
| 10 |
---
|
| 11 |
|
| 12 |
# Customer Support Ticket Resolution Environment
|
| 13 |
|
| 14 |
+
A real-world OpenEnv environment where an AI agent learns to handle customer support tickets.
|
| 15 |
+
|
| 16 |
+
## Tasks
|
| 17 |
+
- Task 1 (Easy): Classify ticket into correct category
|
| 18 |
+
- Task 2 (Medium): Classify then choose correct action
|
| 19 |
+
- Task 3 (Hard): Resolve a full queue of 3 tickets
|
| 20 |
+
|
| 21 |
+
## Action Space
|
| 22 |
+
- action_type: classify / reply / escalate / close
|
| 23 |
+
- category: billing / technical / account / general / refund
|
| 24 |
+
- reply_text: free text
|
| 25 |
+
|
| 26 |
+
## Observation Space
|
| 27 |
+
- ticket_id, ticket_text, task_id, current_category, resolved, step_count, feedback, score
|
| 28 |
+
|
| 29 |
+
## Baseline Scores
|
| 30 |
+
- Task 1: 0.87
|
| 31 |
+
- Task 2: 0.71
|
| 32 |
+
- Task 3: 0.58
|