patricebechard commited on
Commit
bfe389c
·
verified ·
1 Parent(s): 9fd8786

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +170 -27
README.md CHANGED
@@ -1,29 +1,172 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: benchmark
5
- dtype: string
6
- - name: task_name
7
- dtype: string
8
- - name: task_seed
9
- dtype: int64
10
- - name: task_config
11
- dtype: string
12
- - name: goal
13
- dtype: string
14
- - name: start_url
15
- dtype: string
16
- - name: validation
17
- dtype: string
18
- splits:
19
- - name: train
20
- num_bytes: 364644
21
- num_examples: 207
22
- download_size: 51656
23
- dataset_size: 364644
24
- configs:
25
- - config_name: default
26
- data_files:
27
- - split: train
28
- path: data/train-*
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-generation
5
+ tags:
6
+ - web-agent
7
+ - evaluation
8
+ - erpnext
9
+ pretty_name: ERPNext Tasks
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
11
+
12
+ # ERPNext Tasks
13
+
14
+ An evaluation dataset for web agents operating on a self-hosted ERPNext instance. Each row contains a task goal, a configuration dict with a SQL validation query, and a standalone Python validation function that scores agent performance by querying the ERPNext database.
15
+
16
+ ## Dataset overview
17
+
18
+ - **207 samples** across **82 task categories**
19
+ - A single shared validator queries a SQL endpoint to verify outcomes
20
+
21
+ | Domain | Categories | Samples | Examples |
22
+ |---|---|---|---|
23
+ | User Management | 7 | 18 | Create users, assign roles, disable accounts, create user groups |
24
+ | Purchasing | 8 | 16 | Create suppliers, purchase orders, manage discounts and confirmations |
25
+ | Sales | 10 | 27 | Create customers, sales orders, sales invoices with tax rates |
26
+ | Inventory | 8 | 18 | Create stock items and entries, edit item properties, manage letterheads |
27
+ | HR | 5 | 14 | Create employees with various detail levels, update departments |
28
+ | Accounting | 10 | 22 | Create journal and payment entries, cancel or assign entries |
29
+ | Projects | 14 | 38 | Create projects and tasks with dependencies, change status, delete |
30
+ | Multi-step | 20 | 54 | Cross-domain workflows combining creation, assignment, and management |
31
+
32
+ ## Schema
33
+
34
+ | Column | Type | Description |
35
+ |---|---|---|
36
+ | `benchmark` | `string` | Benchmark name (`erpnext`) |
37
+ | `task_name` | `string` | Task category (e.g. `erpnext.create_sales_order`) |
38
+ | `task_seed` | `int` | Sample index within the category |
39
+ | `task_config` | `string` | JSON-encoded dict with `sql` (validation query) and `count` (expected result count) |
40
+ | `goal` | `string` | Natural language instruction shown to the agent |
41
+ | `start_url` | `string` | URL where the agent should begin (empty, defaults to ERPNext home) |
42
+ | `validation` | `string` | Python source code of the validator module |
43
+
44
+ ## Validation
45
+
46
+ The validator module exposes a `validate(messages, config)` function:
47
+
48
+ ```python
49
+ def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
50
+ """
51
+ Args:
52
+ messages: Conversation history (list of {"role": ..., "content": ...} dicts).
53
+ config: The task_config dict for this sample, containing:
54
+ - sql: A SQL query to run against the ERPNext database
55
+ - count: The expected results_count value
56
+
57
+ Returns:
58
+ 1 if the task was completed successfully, 0 otherwise.
59
+
60
+ Raises:
61
+ ValueError: If the task configuration is invalid.
62
+ """
63
+ ```
64
+
65
+ The validator calls a SQL query endpoint on the ERPNext instance. The following environment variables must be set:
66
+
67
+ | Variable | Description |
68
+ |---|---|
69
+ | `ERPNEXT_URL` | Base URL of the ERPNext instance (e.g. `https://erpnext.example.com`) |
70
+ | `ERPNEXT_EXTRA_HTTP_HEADERS` | JSON string containing authentication headers (e.g. `{"Authorization": "Bearer <token>"}`) |
71
+
72
+ ### Usage
73
+
74
+ ```python
75
+ import ast
76
+ from datasets import load_dataset
77
+
78
+ ds = load_dataset("servicenow-ai/erpnext-tasks")
79
+
80
+ sample = ds["train"][0]
81
+ config = ast.literal_eval(sample["task_config"])
82
+
83
+ # Load the validator
84
+ exec(sample["validation"], globals())
85
+ score = validate(
86
+ messages=[{"role": "assistant", "content": "Done."}],
87
+ config=config,
88
+ )
89
+ ```
90
+
91
+ ## Task categories
92
+
93
+ ### User Management
94
+ - **assign_role**: Assign a role profile to a user
95
+ - **create_user_email_first_last**: Create a user with email, first name, and last name
96
+ - **create_user_email_first_last_username_phone**: Create a user with full contact details
97
+ - **create_user_with_email_account_dependency_HARD**: Create a user with email account dependency
98
+ - **create_user_group_with_new_users_HARD**: Create a user group with newly created users
99
+ - **disable_user_account**: Disable a user account
100
+ - **create_user_then_cancel_journal_entry**: Create a user then cancel a journal entry
101
+
102
+ ### Purchasing
103
+ - **create_supplier_name_email_phone**: Create a supplier with contact details
104
+ - **create_supplier_name_group_currency_tax_id**: Create a supplier with financial details
105
+ - **create_purchase_order_with_discount** / **without_discount**: Create purchase orders
106
+ - **create_purchase_order_then_manage_supplier**: Create a purchase order then manage the supplier
107
+ - **create_stock_item_with_name_description_then_create_purchase_order**: Create item then order
108
+ - **create_stock_item_without_name_description_then_create_purchase_order**: Create item then order (minimal)
109
+ - **add_date_confirmation_number_to_purchase_order**: Update purchase order confirmation details
110
+ - **add_comment_to_draft_purchase_orders**: Add comments to draft purchase orders
111
+
112
+ ### Sales
113
+ - **create_customer_name_account_manager_group**: Create a customer with manager and group
114
+ - **create_customer_name_type_address**: Create a customer with address details
115
+ - **create_customer_with_account_manager_group_tax_dependencies_HARD**: Complex customer creation
116
+ - **create_customer_with_account_manager_role_profile_group_tax_dependencies_HARD**: Complex customer creation with role profiles
117
+ - **create_sales_order** / **create_sales_order_put_on_hold**: Create and manage sales orders
118
+ - **create_sales_invoice** / **create_sales_invoice_with_custom_tax_rate**: Create invoices
119
+ - **create_sales_invoice_with_date_cost_center**: Create invoice with cost center
120
+ - **create_sales_invoice_with_customer_item_account_dependencies_HARD**: Complex invoice creation
121
+ - **create_sales_invoice_with_customer_item_territory_pricelist_account_dependencies_HARD**: Complex invoice with territory and pricelist
122
+
123
+ ### Inventory
124
+ - **create_stock_item_id_group**: Create a stock item with ID and group
125
+ - **create_stock_item_name_id_group_description**: Create a stock item with full details
126
+ - **create_stock_item_name_id_group_description_shelf_life_warranty**: Create item with shelf life and warranty
127
+ - **create_stock_entry** / **create_stock_entry_with_letterhead**: Create stock entries
128
+ - **edit_stock_item_warranty_weight**: Edit item warranty and weight
129
+ - **edit_stock_item_warranty_weight_material_request_type_tag**: Edit item with additional fields
130
+ - **delete_stock_item** / **disable_stock_item**: Remove or disable stock items
131
+
132
+ ### HR
133
+ - **create_employee_name_gender_dob_status_join_date**: Create employee with basic info
134
+ - **create_employee_name_gender_dob_join_date_salary_phone**: Create employee with salary and phone
135
+ - **create_employee_full_address_HARD**: Create employee with full address details
136
+ - **create_employee_with_emergency_contact_HARD**: Create employee with emergency contact
137
+ - **update_employee_department**: Update an employee's department
138
+
139
+ ### Accounting
140
+ - **create_journal_entry** / **create_journal_entry_with_account_dependency_HARD**: Create journal entries
141
+ - **create_payment_entry_without_cost_center** / **with_cost_center_cheque_date_reference**: Create payment entries
142
+ - **create_payment_entry_with_customer_account_project_dependencies_HARD**: Complex payment entry
143
+ - **create_payment_entry_with_mode_of_payment_account_supplier_cost_center_dependencies_HARD**: Complex payment entry with supplier
144
+ - **cancel_journal_entry** / **cancel_payment_entry** / **cancel_purchase_order**: Cancel accounting documents
145
+ - **assign_journal_entry** / **assign_payment_entry** / **assign_purchase_order**: Assign documents to users
146
+
147
+ ### Projects & Tasks
148
+ - **create_project_with_name_company**: Create a project with name and company
149
+ - **create_project_with_name_company_priority_note**: Create project with priority and notes
150
+ - **create_project_with_name_company_priority_note_dept_cost**: Create project with department and cost center
151
+ - **create_project_with_customer_full_address_HARD**: Create project with customer address
152
+ - **create_project_with_type_dept_dependencies_HARD**: Create project with type and department dependencies
153
+ - **create_project_with_type_dept_cost_center_dependencies_HARD**: Create project with cost center dependencies
154
+ - **create_project_with_type_dept_customer_cost_center_dependencies_HARD**: Create project with full dependencies
155
+ - **create_task_with_subject_project**: Create a task in a project
156
+ - **create_task_with_subject_project_priority_dept**: Create task with priority and department
157
+ - **create_task_with_subject_project_priority_dept_comment**: Create task with comment
158
+ - **create_task_with_project_type_dept_dependencies_HARD**: Create task with dependencies
159
+ - **create_task_with_project_type_parent_dept_dependencies_HARD**: Create task with parent task dependency
160
+ - **change_project_status** / **delete_project** / **delete_task**: Manage project lifecycle
161
+ - **update_task_status** / **assign_task**: Update and assign tasks
162
+
163
+ ### Multi-step & Cross-domain
164
+ - **assign_sales_invoice** / **tag_sales_invoice** / **favorite_sales_invoice**: Manage sales invoice metadata
165
+ - **tag_supplier** / **delete_supplier**: Manage supplier metadata
166
+ - **update_target_warehouse_on_suppliers_purchase_orders**: Update warehouse on purchase orders
167
+ - **create_customer_then_create_sales_invoice**: Create customer then invoice
168
+ - **create_customer_then_create_sales_order**: Create customer then sales order
169
+ - **create_sales_invoice_then_assign_task**: Create invoice then assign a task
170
+ - **create_project_then_cancel_payment_entry**: Create project then cancel payment entry
171
+ - **create_task_then_assign_payment_entry**: Create task then assign payment entry
172
+ - **assign_journal_entry_then_update_task_status**: Assign journal entry then update task