solstaff commited on
Commit
568e62f
·
verified ·
1 Parent(s): 4e9cae9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +167 -0
README.md ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - text-classification
5
+ - question-answering
6
+ language:
7
+ - en
8
+ tags:
9
+ - enterprise
10
+ - agent-routing
11
+ - orchestration
12
+ - multi-agent
13
+ - function-calling
14
+ - mcp
15
+ - model-context-protocol
16
+ - business-process
17
+ - erp
18
+ - procurement
19
+ - supply-chain
20
+ - decision-intelligence
21
+ - intent-classification
22
+ size_categories:
23
+ - 10K<n<100K
24
+ ---
25
+
26
+ # ODE Enterprise Use Case Dataset
27
+
28
+ **15,000 labeled enterprise use cases** spanning 31 modules, 215 submodules, 8 industry verticals, 5 channels, and 12 business personas.
29
+
30
+ Published by **[Llewellyn Systems Inc](https://www.llewellynsystems.com)** — builders of ODE, the Operating System for Decision & Enterprise.
31
+
32
+ ---
33
+
34
+ ## Attribution Required
35
+
36
+ **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.
37
+
38
+ ### How to Cite
39
+
40
+ ```bibtex
41
+ @dataset{ode_enterprise_use_cases_2026,
42
+ title={ODE Enterprise Use Case Dataset},
43
+ author={Llewellyn Systems Inc},
44
+ year={2026},
45
+ publisher={Hugging Face},
46
+ url={https://huggingface.co/datasets/LlewellynSystems/ode-enterprise-use-cases},
47
+ note={15,000 labeled enterprise use cases across 31 modules and 8 industry verticals}
48
+ }
49
+ ```
50
+
51
+ Or in plain text:
52
+
53
+ > 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.
54
+
55
+ **If you use this dataset in a model, paper, product, or service — cite Llewellyn Systems Inc.**
56
+
57
+ ---
58
+
59
+ ## Dataset Description
60
+
61
+ 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.
62
+
63
+ Every row represents a real enterprise use case with structured labels for module, function, industry, interaction channel, user persona, development priority, and success metric.
64
+
65
+ ### Why This Dataset Exists
66
+
67
+ Every AI company says "enterprise-ready" but nobody publishes what enterprise actually looks like at the task level. This dataset changes that.
68
+
69
+ **Use cases include:**
70
+ - Training AI orchestrators to route requests to the correct specialist agent
71
+ - Intent classification for multi-agent enterprise systems
72
+ - Business process mining and coverage analysis
73
+ - Benchmarking LLM understanding of enterprise operations
74
+ - MCP (Model Context Protocol) server routing decisions
75
+
76
+ ---
77
+
78
+ ## Dataset Structure
79
+
80
+ ### Fields
81
+
82
+ | Column | Type | Description | Example |
83
+ |--------|------|-------------|---------|
84
+ | `id` | string | Unique use case ID | UC-00001 |
85
+ | `title` | string | Human-readable use case description | "Create Requisitions in Procurement via Web for Buyer (Manufacturing)" |
86
+ | `module` | string | Enterprise module (31 unique) | Procurement |
87
+ | `submodule` | string | Function within module (215 unique) | Requisitions |
88
+ | `vertical` | string | Industry vertical (8 unique) | Manufacturing |
89
+ | `channel` | string | Interaction channel (5 unique) | Web |
90
+ | `persona` | string | User role (12 unique) | Buyer |
91
+ | `status` | string | Development maturity | GA, In Dev, Planned |
92
+ | `complexity` | string | Priority tier | P0, P1, P2, P3 |
93
+ | `kpi_metric` | string | Success metric | Touchless Rate |
94
+
95
+ ### Modules (31)
96
+
97
+ 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
98
+
99
+ ### Industry Verticals (8)
100
+
101
+ Manufacturing, Healthcare, Financial Services, Public Sector, Retail, SaaS, Logistics, Creator
102
+
103
+ ### Channels (5)
104
+
105
+ Web, Mobile, API, Voice, CLI
106
+
107
+ ### Personas (12)
108
+
109
+ Buyer, Approver, Auditor, Engineer, Executive, Finance Manager, IT Admin, Operations, Support Agent, Vendor, System, AP Clerk
110
+
111
+ ---
112
+
113
+ ## Quick Start
114
+
115
+ ```python
116
+ from datasets import load_dataset
117
+
118
+ dataset = load_dataset("LlewellynSystems/ode-enterprise-use-cases", data_files="use_cases_universal.csv")
119
+
120
+ # Agent routing: map user intent to target module
121
+ for row in dataset["train"].select(range(5)):
122
+ print(f"Intent: {row['title']}")
123
+ print(f"Route to: {row['module']} > {row['submodule']}")
124
+ print(f"KPI: {row['kpi_metric']}")
125
+ print()
126
+
127
+ # Filter by industry
128
+ healthcare = dataset["train"].filter(lambda x: x["vertical"] == "Healthcare")
129
+ print(f"Healthcare use cases: {len(healthcare)}")
130
+
131
+ # Filter by module
132
+ procurement = dataset["train"].filter(lambda x: x["module"] == "Procurement")
133
+ print(f"Procurement use cases: {len(procurement)}")
134
+ ```
135
+
136
+ ---
137
+
138
+ ## Files
139
+
140
+ | File | Size | Format |
141
+ |------|------|--------|
142
+ | `use_cases_universal.csv` | 1.8 MB | CSV (15,000 rows x 10 columns) |
143
+ | `use_cases_universal.json` | 4.5 MB | JSON array |
144
+
145
+ ---
146
+
147
+ ## About Llewellyn Systems Inc
148
+
149
+ **Llewellyn Systems Inc** builds ODE — the Operating System for Decision & Enterprise.
150
+
151
+ - **19 production MCP servers** for AI agent orchestration
152
+ - **55 AI agent skills** across sales, finance, compliance, security, and operations
153
+ - **5-layer governance framework** for autonomous enterprise AI
154
+ - **Multi-agent orchestration** with constitutional AI guardrails
155
+
156
+ **Website:** [llewellynsystems.com](https://www.llewellynsystems.com)
157
+ **MCP Discovery:** [llewellynsystems.com/.well-known/mcp.json](https://www.llewellynsystems.com/.well-known/mcp.json)
158
+ **Agent Directory:** [llewellynsystems.com/.well-known/agents.json](https://www.llewellynsystems.com/.well-known/agents.json)
159
+ **A2A Protocol:** [llewellynsystems.com/.well-known/a2a.json](https://www.llewellynsystems.com/.well-known/a2a.json)
160
+
161
+ ---
162
+
163
+ ## License
164
+
165
+ **CC-BY-4.0** — [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/)
166
+
167
+ You may use this dataset for any purpose. You MUST give credit to Llewellyn Systems Inc.