Voice-Enabled-ERP-Assistant / nlu_dataset.json
Shariar00's picture
initial commit
d483661 verified
{
"data": [
{
"intent": "request_money",
"utterances": [
{
"text": "I need to request money for project 223 to buy some tools, the amount I need is 500 riyals",
"slots": {
"project_id": "223",
"reason": "buy some tools",
"amount": "500 riyals"
}
},
{
"text": "Please add a money request for the project Abha University for 300 riyals",
"slots": {
"project_name": "Abha University",
"reason": "not specified",
"amount": "300 riyals"
}
},
{
"text": "I need 1000 riyals for project 445 to purchase some equipment",
"slots": {
"project_id": "445",
"reason": "purchase some equipment",
"amount": "1000 riyals"
}
},
{
"text": "Can you initiate a money request for project 678 with an amount of 250 riyals for team activities?",
"slots": {
"project_id": "678",
"reason": "team activities",
"amount": "250 riyals"
}
},
{
"text": "Requesting 800 riyals for the project Green Energy for office supplies",
"slots": {
"project_name": "Green Energy",
"reason": "office supplies",
"amount": "800 riyals"
}
}
]
},
{
"intent": "submit_task",
"utterances": [
{
"text": "I have completed the task 1025, please mark it as done",
"slots": {
"task_id": "1025",
"status": "completed"
}
},
{
"text": "Mark task 3054 as finished in the system",
"slots": {
"task_id": "3054",
"status": "finished"
}
},
{
"text": "Task 8899 has been completed, update its status",
"slots": {
"task_id": "8899",
"status": "completed"
}
},
{
"text": "Please mark task 1122 as done, I just finished it",
"slots": {
"task_id": "1122",
"status": "done"
}
},
{
"text": "Set the status of task 4500 to finished",
"slots": {
"task_id": "4500",
"status": "finished"
}
}
]
},
{
"intent": "get_project_status",
"utterances": [
{
"text": "Can you tell me the status of project 223?",
"slots": {
"project_id": "223"
}
},
{
"text": "What is the current progress on project Abha University?",
"slots": {
"project_name": "Abha University"
}
},
{
"text": "I need an update on project 445. What is its status?",
"slots": {
"project_id": "445"
}
},
{
"text": "Could you check and let me know the status of the Smart City project?",
"slots": {
"project_name": "Smart City"
}
},
{
"text": "What’s the progress on the renewable energy project?",
"slots": {
"project_name": "renewable energy"
}
}
]
}
]
}