Spaces:
Build error
Build error
File size: 4,629 Bytes
d483661 |
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 |
{
"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"
}
}
]
}
]
}
|