Add healthcare, legal, and customer-support evaluation cases
Browse files- README.md +153 -0
- customer-support/tasks.jsonl +0 -0
- healthcare/tasks.jsonl +0 -0
- legal/tasks.jsonl +0 -0
README.md
ADDED
|
@@ -0,0 +1,153 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: MIVAS Bench
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
task_categories:
|
| 7 |
+
- text-generation
|
| 8 |
+
- audio-classification
|
| 9 |
+
tags:
|
| 10 |
+
- voice-agents
|
| 11 |
+
- speech-to-speech
|
| 12 |
+
- multi-agent
|
| 13 |
+
- tool-use
|
| 14 |
+
- evaluation
|
| 15 |
+
- benchmark
|
| 16 |
+
size_categories:
|
| 17 |
+
- n<1K
|
| 18 |
+
configs:
|
| 19 |
+
- config_name: default
|
| 20 |
+
data_files:
|
| 21 |
+
- split: test
|
| 22 |
+
path:
|
| 23 |
+
- healthcare/tasks.jsonl
|
| 24 |
+
- legal/tasks.jsonl
|
| 25 |
+
- customer-support/tasks.jsonl
|
| 26 |
+
- config_name: healthcare
|
| 27 |
+
data_files:
|
| 28 |
+
- split: test
|
| 29 |
+
path: healthcare/tasks.jsonl
|
| 30 |
+
- config_name: legal
|
| 31 |
+
data_files:
|
| 32 |
+
- split: test
|
| 33 |
+
path: legal/tasks.jsonl
|
| 34 |
+
- config_name: customer-support
|
| 35 |
+
data_files:
|
| 36 |
+
- split: test
|
| 37 |
+
path: customer-support/tasks.jsonl
|
| 38 |
+
---
|
| 39 |
+
|
| 40 |
+
# MIVAS Bench
|
| 41 |
+
|
| 42 |
+
Evaluation cases for [MIVAS Bench](https://github.com/bluejay-ai-dev/mivas-bench), Bluejay's Multi-Industry Voice Agent Simulation Bench.
|
| 43 |
+
|
| 44 |
+
Each row is one spoken benchmark case: the caller specification, expected specialist handoffs, expected tool sequence, and expected final database state. Industries are stored as sibling folders so later sectors can be added without reshaping the existing ones.
|
| 45 |
+
|
| 46 |
+
This first release covers **healthcare**, **legal**, and **customer support** — 72 cases each, 216 total.
|
| 47 |
+
|
| 48 |
+
## Load
|
| 49 |
+
|
| 50 |
+
```python
|
| 51 |
+
from datasets import load_dataset
|
| 52 |
+
|
| 53 |
+
all_industries = load_dataset("bluejay-ai/mivas-bench", split="test")
|
| 54 |
+
healthcare = load_dataset("bluejay-ai/mivas-bench", "healthcare", split="test")
|
| 55 |
+
legal = load_dataset("bluejay-ai/mivas-bench", "legal", split="test")
|
| 56 |
+
support = load_dataset("bluejay-ai/mivas-bench", "customer-support", split="test")
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
## Layout
|
| 60 |
+
|
| 61 |
+
```text
|
| 62 |
+
healthcare/tasks.jsonl
|
| 63 |
+
legal/tasks.jsonl
|
| 64 |
+
customer-support/tasks.jsonl
|
| 65 |
+
```
|
| 66 |
+
|
| 67 |
+
Add a new industry by dropping `<industry>/tasks.jsonl` and a matching `config_name` in this card.
|
| 68 |
+
|
| 69 |
+
## Industries
|
| 70 |
+
|
| 71 |
+
| Config | Organization | Cases | Challenge |
|
| 72 |
+
|---|---|---|---|
|
| 73 |
+
| `healthcare` | Straus Dermatology | 72 | Identity, scheduling, coverage, billing, and bounded clinical support |
|
| 74 |
+
| `legal` | Halverson & Reed | 72 | Conflict screening, intake discipline, legal-advice boundaries, and scheduling |
|
| 75 |
+
| `customer-support` | Kestrel Electronics | 72 | Orders, returns, service, membership, fraud, and product safety |
|
| 76 |
+
|
| 77 |
+
### Categories
|
| 78 |
+
|
| 79 |
+
**Healthcare**
|
| 80 |
+
|
| 81 |
+
| Category | Slug | Cases |
|
| 82 |
+
|---|---|---|
|
| 83 |
+
| C1 | `new-patient-access` | 12 |
|
| 84 |
+
| C2 | `appointment-management` | 12 |
|
| 85 |
+
| C3 | `coverage-and-benefits` | 12 |
|
| 86 |
+
| C4 | `cosmetic-concierge` | 12 |
|
| 87 |
+
| C5 | `billing-and-payments` | 12 |
|
| 88 |
+
| R | `regulatory-adherence` | 12 |
|
| 89 |
+
|
| 90 |
+
**Legal**
|
| 91 |
+
|
| 92 |
+
| Category | Slug | Cases |
|
| 93 |
+
|---|---|---|
|
| 94 |
+
| C1 | `reception-routing` | 12 |
|
| 95 |
+
| C2 | `conflicts-and-barred` | 12 |
|
| 96 |
+
| C3 | `eligibility-gates` | 12 |
|
| 97 |
+
| C4 | `intake-and-documents` | 12 |
|
| 98 |
+
| C5 | `fees-and-booking` | 12 |
|
| 99 |
+
| R | `clients-and-refusals` | 12 |
|
| 100 |
+
|
| 101 |
+
**Customer support**
|
| 102 |
+
|
| 103 |
+
| Category | Slug | Cases |
|
| 104 |
+
|---|---|---|
|
| 105 |
+
| R | `regulatory-adherence` | 12 |
|
| 106 |
+
| T1 | `orders-and-delivery` | 12 |
|
| 107 |
+
| T2 | `returns-and-refunds` | 12 |
|
| 108 |
+
| T3 | `techcrew-service` | 12 |
|
| 109 |
+
| T4 | `membership` | 12 |
|
| 110 |
+
| T5 | `price-match` | 12 |
|
| 111 |
+
|
| 112 |
+
Each category follows the MIVAS v2 suite: 2 easy / 4 medium / 4 hard scored cases, plus audio clones of that category's E1 (`*-E1-BG` background noise, `*-E1-SIG` degraded signal).
|
| 113 |
+
|
| 114 |
+
## Schema
|
| 115 |
+
|
| 116 |
+
| Column | Type | Meaning |
|
| 117 |
+
|---|---|---|
|
| 118 |
+
| `industry` | string | Industry folder (`healthcare`, `legal`, `customer-support`) |
|
| 119 |
+
| `task_id` | string | Case key (`C1-M1`, `T2-H3`, `R-E1-BG`) |
|
| 120 |
+
| `task_name` | string | Human-readable case title |
|
| 121 |
+
| `customer_name` | string | Simulated caller |
|
| 122 |
+
| `intent` | string | Caller goal, locks, and hang-up condition |
|
| 123 |
+
| `category` | string | Topic key (`C1`–`C5`, `T1`–`T5`, or `R`) |
|
| 124 |
+
| `category_slug` | string | Topic name |
|
| 125 |
+
| `difficulty` | string | `easy`, `medium`, or `hard` |
|
| 126 |
+
| `audio_condition` | string | `perfect`, `background_noise`, or `bad_signal` |
|
| 127 |
+
| `traits` | list | Caller facts (name, phone, IDs, office, …) |
|
| 128 |
+
| `exp_handoff_path` | list | Required specialist transfers |
|
| 129 |
+
| `exp_tool_calls` | list | Required industry / session tool sequence |
|
| 130 |
+
| `scripted_responses` | list | Locked replies the caller uses on matched prompts |
|
| 131 |
+
| `behaviors` | object | Caller behavior knobs (creativity is 0) |
|
| 132 |
+
| `customer_available_tools` | object | Caller-side tools, if any |
|
| 133 |
+
| `exp_db_state` | object | Expected isolated database after a passing call |
|
| 134 |
+
|
| 135 |
+
Task correctness in the full benchmark is the conjunction of database-state adherence, handoff adherence, and tool adherence. This dataset publishes the case definitions those verifiers use.
|
| 136 |
+
|
| 137 |
+
## Source
|
| 138 |
+
|
| 139 |
+
- Repository: [bluejay-ai-dev/mivas-bench](https://github.com/bluejay-ai-dev/mivas-bench)
|
| 140 |
+
- Paths: `industries/<industry>/tasks/<task_id>/task.json`
|
| 141 |
+
|
| 142 |
+
Company names, callers, and records are fictional. Workflows are modeled on production voice-agent architectures, not live customer data.
|
| 143 |
+
|
| 144 |
+
## Citation
|
| 145 |
+
|
| 146 |
+
```bibtex
|
| 147 |
+
@software{mivas_bench,
|
| 148 |
+
title = {MIVAS Bench: Multi-Industry Voice Agent Simulation Bench},
|
| 149 |
+
author = {{Bluejay}},
|
| 150 |
+
year = {2026},
|
| 151 |
+
url = {https://github.com/bluejay-ai-dev/mivas-bench}
|
| 152 |
+
}
|
| 153 |
+
```
|
customer-support/tasks.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
healthcare/tasks.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
legal/tasks.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|