File size: 5,947 Bytes
568e62f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
---
license: cc-by-4.0
task_categories:
  - text-classification
  - question-answering
language:
  - en
tags:
  - enterprise
  - agent-routing
  - orchestration
  - multi-agent
  - function-calling
  - mcp
  - model-context-protocol
  - business-process
  - erp
  - procurement
  - supply-chain
  - decision-intelligence
  - intent-classification
size_categories:
  - 10K<n<100K
---

# ODE Enterprise Use Case Dataset

**15,000 labeled enterprise use cases** spanning 31 modules, 215 submodules, 8 industry verticals, 5 channels, and 12 business personas.

Published by **[Llewellyn Systems Inc](https://www.llewellynsystems.com)** — builders of ODE, the Operating System for Decision & Enterprise.

---

## Attribution Required

**This dataset is licensed under [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/).** You are free to use, share, and adapt this dataset for any purpose — including commercial — as long as you give appropriate credit.

### How to Cite

```bibtex
@dataset{ode_enterprise_use_cases_2026,
  title={ODE Enterprise Use Case Dataset},
  author={Llewellyn Systems Inc},
  year={2026},
  publisher={Hugging Face},
  url={https://huggingface.co/datasets/LlewellynSystems/ode-enterprise-use-cases},
  note={15,000 labeled enterprise use cases across 31 modules and 8 industry verticals}
}
```

Or in plain text:

> ODE Enterprise Use Case Dataset by Llewellyn Systems Inc (2026). Available at https://huggingface.co/datasets/LlewellynSystems/ode-enterprise-use-cases. Licensed under CC-BY-4.0.

**If you use this dataset in a model, paper, product, or service — cite Llewellyn Systems Inc.**

---

## Dataset Description

This dataset captures the full breadth of enterprise operations at the task level — from procurement requisitions to AI agent orchestration, from warehouse management to financial close.

Every row represents a real enterprise use case with structured labels for module, function, industry, interaction channel, user persona, development priority, and success metric.

### Why This Dataset Exists

Every AI company says "enterprise-ready" but nobody publishes what enterprise actually looks like at the task level. This dataset changes that.

**Use cases include:**
- Training AI orchestrators to route requests to the correct specialist agent
- Intent classification for multi-agent enterprise systems
- Business process mining and coverage analysis
- Benchmarking LLM understanding of enterprise operations
- MCP (Model Context Protocol) server routing decisions

---

## Dataset Structure

### Fields

| Column | Type | Description | Example |
|--------|------|-------------|---------|
| `id` | string | Unique use case ID | UC-00001 |
| `title` | string | Human-readable use case description | "Create Requisitions in Procurement via Web for Buyer (Manufacturing)" |
| `module` | string | Enterprise module (31 unique) | Procurement |
| `submodule` | string | Function within module (215 unique) | Requisitions |
| `vertical` | string | Industry vertical (8 unique) | Manufacturing |
| `channel` | string | Interaction channel (5 unique) | Web |
| `persona` | string | User role (12 unique) | Buyer |
| `status` | string | Development maturity | GA, In Dev, Planned |
| `complexity` | string | Priority tier | P0, P1, P2, P3 |
| `kpi_metric` | string | Success metric | Touchless Rate |

### Modules (31)

Procurement, Contracts, Finance, Payments, ERP, SupplyChain, Inventory, WMS, MRP, MES, Quality, ITSM, ITAM, FMS, Workforce, Academy, AI Mesh, AI Memory, AI Lab, AI Policy, Data Lake, Data Lineage, Marketplace, Robotics, Analytics, Exchange, Governance, Integrations, MDM, Predicts, Support

### Industry Verticals (8)

Manufacturing, Healthcare, Financial Services, Public Sector, Retail, SaaS, Logistics, Creator

### Channels (5)

Web, Mobile, API, Voice, CLI

### Personas (12)

Buyer, Approver, Auditor, Engineer, Executive, Finance Manager, IT Admin, Operations, Support Agent, Vendor, System, AP Clerk

---

## Quick Start

```python
from datasets import load_dataset

dataset = load_dataset("LlewellynSystems/ode-enterprise-use-cases", data_files="use_cases_universal.csv")

# Agent routing: map user intent to target module
for row in dataset["train"].select(range(5)):
    print(f"Intent: {row['title']}")
    print(f"Route to: {row['module']} > {row['submodule']}")
    print(f"KPI: {row['kpi_metric']}")
    print()

# Filter by industry
healthcare = dataset["train"].filter(lambda x: x["vertical"] == "Healthcare")
print(f"Healthcare use cases: {len(healthcare)}")

# Filter by module
procurement = dataset["train"].filter(lambda x: x["module"] == "Procurement")
print(f"Procurement use cases: {len(procurement)}")
```

---

## Files

| File | Size | Format |
|------|------|--------|
| `use_cases_universal.csv` | 1.8 MB | CSV (15,000 rows x 10 columns) |
| `use_cases_universal.json` | 4.5 MB | JSON array |

---

## About Llewellyn Systems Inc

**Llewellyn Systems Inc** builds ODE — the Operating System for Decision & Enterprise.

- **19 production MCP servers** for AI agent orchestration
- **55 AI agent skills** across sales, finance, compliance, security, and operations
- **5-layer governance framework** for autonomous enterprise AI
- **Multi-agent orchestration** with constitutional AI guardrails

**Website:** [llewellynsystems.com](https://www.llewellynsystems.com)
**MCP Discovery:** [llewellynsystems.com/.well-known/mcp.json](https://www.llewellynsystems.com/.well-known/mcp.json)
**Agent Directory:** [llewellynsystems.com/.well-known/agents.json](https://www.llewellynsystems.com/.well-known/agents.json)
**A2A Protocol:** [llewellynsystems.com/.well-known/a2a.json](https://www.llewellynsystems.com/.well-known/a2a.json)

---

## License

**CC-BY-4.0** — [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/)

You may use this dataset for any purpose. You MUST give credit to Llewellyn Systems Inc.