EtashGuha commited on
Commit
3626ab2
·
verified ·
1 Parent(s): 1fecdbc

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. taskmaster2-0011/environment/Dockerfile +5 -0
  2. taskmaster2-0021/instruction.md +21 -0
  3. taskmaster2-0026/instruction.md +20 -0
  4. taskmaster2-0027/environment/Dockerfile +5 -0
  5. taskmaster2-0028/instruction.md +19 -0
  6. taskmaster2-0044/environment/Dockerfile +5 -0
  7. taskmaster2-0072/environment/Dockerfile +5 -0
  8. taskmaster2-0075/environment/Dockerfile +5 -0
  9. taskmaster2-0075/instruction.md +33 -0
  10. taskmaster2-0086/environment/Dockerfile +5 -0
  11. taskmaster2-0213/instruction.md +25 -0
  12. taskmaster2-0214/instruction.md +20 -0
  13. taskmaster2-0222/environment/Dockerfile +5 -0
  14. taskmaster2-0222/instruction.md +23 -0
  15. taskmaster2-0240/instruction.md +18 -0
  16. taskmaster2-0248/environment/Dockerfile +5 -0
  17. taskmaster2-0249/environment/Dockerfile +5 -0
  18. taskmaster2-0271/environment/Dockerfile +5 -0
  19. taskmaster2-0271/instruction.md +25 -0
  20. taskmaster2-0276/environment/Dockerfile +5 -0
  21. taskmaster2-0278/environment/Dockerfile +5 -0
  22. taskmaster2-0278/instruction.md +20 -0
  23. taskmaster2-0283/environment/Dockerfile +5 -0
  24. taskmaster2-0411/environment/Dockerfile +5 -0
  25. taskmaster2-0411/instruction.md +22 -0
  26. taskmaster2-0416/environment/Dockerfile +5 -0
  27. taskmaster2-0421/environment/Dockerfile +5 -0
  28. taskmaster2-0427/environment/Dockerfile +5 -0
  29. taskmaster2-0427/instruction.md +19 -0
  30. taskmaster2-0443/environment/Dockerfile +5 -0
  31. taskmaster2-0474/environment/Dockerfile +5 -0
  32. taskmaster2-0474/instruction.md +20 -0
  33. taskmaster2-0475/environment/Dockerfile +5 -0
  34. taskmaster2-0612/environment/Dockerfile +5 -0
  35. taskmaster2-0613/environment/Dockerfile +5 -0
  36. taskmaster2-0615/environment/Dockerfile +5 -0
  37. taskmaster2-0615/instruction.md +20 -0
  38. taskmaster2-0624/environment/Dockerfile +5 -0
  39. taskmaster2-0646/environment/Dockerfile +5 -0
  40. taskmaster2-0646/instruction.md +24 -0
  41. taskmaster2-0647/environment/Dockerfile +5 -0
  42. taskmaster2-0648/instruction.md +44 -0
  43. taskmaster2-0649/environment/Dockerfile +5 -0
  44. taskmaster2-0671/environment/Dockerfile +5 -0
  45. taskmaster2-0683/instruction.md +23 -0
  46. taskmaster2-0685/environment/Dockerfile +5 -0
  47. taskmaster2-0814/instruction.md +16 -0
  48. taskmaster2-0823/environment/Dockerfile +5 -0
  49. taskmaster2-0825/instruction.md +23 -0
  50. taskmaster2-0840/environment/Dockerfile +5 -0
taskmaster2-0011/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0021/instruction.md ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-020b769d-4904-4070-94de-60f7ce617348
5
+ - **Instruction ID**: flight-12
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. I'd like to book a round-trip flight from Sacramento to Chicago, leaving today and returning in 4 days. I'd like evening departure times. Also, I would prefer cheapest and business class.
10
+ 2. 4 days from today. The 14th, I believe.
11
+ 3. What is the status?
12
+ 4. What's the price?
13
+ 5. That's the cheapest business class ticket?
14
+ 6. Okay, book that. What do we have for returning flights?
15
+ 7. What do we have for returning flight?
16
+ 8. That sounds great.
17
+ 9. Yes, please.
18
+ 10. Thank you.
19
+
20
+ ## Task
21
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0026/instruction.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-02d3cc76-c1bb-4b86-9c08-48b01dbeaaf2
5
+ - **Instruction ID**: flight-10
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. I need a flight from LA to Miami.
10
+ 2. I want to leave today latest time possible and I want to come back in 4 days.
11
+ 3. This time, it's just me.
12
+ 4. Business class would be great, but alternately I need the cheapest.
13
+ 5. I want the fastest route.
14
+ 6. Alright, that sounds pretty good, I can do that.
15
+ 7. Okay, that's perfect.
16
+ 8. Yeah, please. Thank you.
17
+ 9. Perfect. Thank you.
18
+
19
+ ## Task
20
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0027/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0028/instruction.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-02dafcc7-b934-409c-a658-585e4fe988ef
5
+ - **Instruction ID**: flight-12
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. I'd like help getting a flight from Los Angeles to Chicago.
10
+ 2. I would like to leave today and return in 5 days.
11
+ 3. I would like for my departure and return to be in the evening.
12
+ 4. I would like a nonstop flight.
13
+ 5. Sounds good.
14
+ 6. Yes.
15
+ 7. Yes, book it.
16
+ 8. Thank you.
17
+
18
+ ## Task
19
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0044/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0072/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0075/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0075/instruction.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-080f2514-7741-4887-a9a8-74b988981dff
5
+ - **Instruction ID**: flight-6
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. Hi. I need help finding a flight.
10
+ 2. I would like to fly to New York.
11
+ 3. Laguardia Airport.
12
+ 4. I would like to fly out on a Friday and return on a Monday.
13
+ 5. Friday the 17th through Monday the 20th of February.
14
+ 6. 20th of February.
15
+ 7. I would like to fly first class.
16
+ 8. I would like to fly out in the morning and return in the evening.
17
+ 9. I would like a nonstop flight below $1,000 roundtrip.
18
+ 10. Okay. I'll take a flight with a layover.
19
+ 11. Okay. I will pay more than $1,000.
20
+ 12. $5,000.
21
+ 13. Those are all my requirements.
22
+ 14. United.
23
+ 15. Okay.
24
+ 16. That works for me.
25
+ 17. Okay.
26
+ 18. Okay.
27
+ 19. Okay.
28
+ 20. Okay.
29
+ 21. Okay.
30
+ 22. Okay. Thank you.
31
+
32
+ ## Task
33
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0086/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0213/instruction.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-16278e35-9875-4cb4-a0bf-2e30c60a8a0d
5
+ - **Instruction ID**: flight-6
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. Hey. I'd like to book a flight.
10
+ 2. I'm flying from San Francisco.
11
+ 3. I'll be going to Atlanta.
12
+ 4. It's roundtrip.
13
+ 5. I'll be leaving on March 19th.
14
+ 6. March 25th.
15
+ 7. I'd like for it to be coach.
16
+ 8. I'd like a flight that leaves in the morning.
17
+ 9. I'd like a flight that offers Wi-Fi on board.
18
+ 10. Yes.
19
+ 11. Okay. That sounds good.
20
+ 12. Please.
21
+ 13. Yeah, that sounds good.
22
+ 14. Bye.
23
+
24
+ ## Task
25
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0214/instruction.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-1631c272-612b-475e-be33-9569d6d84d9c
5
+ - **Instruction ID**: flight-12
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. Hello. I need to find a flight from Sacramento to Houston.
10
+ 2. November 17th through November 21st.
11
+ 3. And I need to leave as late as possible.
12
+ 4. A nonstop flight, please.
13
+ 5. That sounds great.
14
+ 6. I need a nonstop flight.
15
+ 7. That sounds fine. Can you go ahead and make a reservation for me?
16
+ 8. Thank you.
17
+ 9. Nope, that's it.
18
+
19
+ ## Task
20
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0222/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0222/instruction.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-16c7e16d-9009-4af7-beeb-b2b23310ff38
5
+ - **Instruction ID**: flight-4
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. I would like help in finding a flight to London, England.
10
+ 2. I'd like to leave on May 7th and return on May 17th.
11
+ 3. Okay. Is it nonstop?
12
+ 4. Well, I'd rather have coach, but if economy is available, that's fine.
13
+ 5. No price point.
14
+ 6. But, the cheapest and Non-Stop.
15
+ 7. Okay. What time does it arrive?
16
+ 8. Okay. And the return flight on May 17th?
17
+ 9. Okay. And how much does that flight cost?
18
+ 10. Okay. That sounds good. Let's book that one.
19
+ 11. Thank you.
20
+ 12. Bye.
21
+
22
+ ## Task
23
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0240/instruction.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-19846bca-cd88-4e36-8ffa-1bdbfbd4658e
5
+ - **Instruction ID**: flight-12
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. Hi. I need a flight from San Francisco to Houston.
10
+ 2. I want to leave today and I want to come back in 5 days.
11
+ 3. I would prefer to fly the cheapest.
12
+ 4. Okay. I'll take it.
13
+ 5. I also need the cheapest one for that one, as well.
14
+ 6. Yeah. That sounds perfect.
15
+ 7. Thank you.
16
+
17
+ ## Task
18
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0248/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0249/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0271/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0271/instruction.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-1bf18a83-ddd5-488d-b838-6c58b36a1706
5
+ - **Instruction ID**: flight-5
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. I'd like to take a trip to Paris.
10
+ 2. Alright, what are the cheapest flights around March 3rd?
11
+ 3. Alright.
12
+ 4. No, I need a return date March 8th.
13
+ 5. I know I need to return.
14
+ 6. And is that nonstop? A monster.
15
+ 7. Alright, what seating class is that? Is that a economy?
16
+ 8. Alright, do they have any amenities there on that flight?
17
+ 9. Alright, what time will that flight be taking off? From Houston.
18
+ 10. Alright, what about my return date?
19
+ 11. Is there a flight on the return somewhere I can have it at night time?
20
+ 12. Alright, I'll go with that.
21
+ 13. Thank you.
22
+ 14. You're welcome.
23
+
24
+ ## Task
25
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0276/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0278/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0278/instruction.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-1cf7c0a8-3cd2-450e-9d42-df9e5f009045
5
+ - **Instruction ID**: flight-11
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. I'd like help getting a flight from Houston to Madrid.
10
+ 2. I would like to leave this Sunday and return 5 days later.
11
+ 3. September 3rd to September 8th.
12
+ 4. I would like to have a nonstop flight.
13
+ 5. I would like to fly economy class.
14
+ 6. Okay. I'll choose that.
15
+ 7. Same preferences.
16
+ 8. Okay. Book it.
17
+ 9. Thank you.
18
+
19
+ ## Task
20
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0283/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0411/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0411/instruction.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-2972b13f-40bf-427b-90e0-5dbdbccd0b35
5
+ - **Instruction ID**: flight-4
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. I need help finding a flight to Paris, France.
10
+ 2. I would like to travel on June 2nd returning on June 7th.
11
+ 3. Just economy-class.
12
+ 4. I would like a window seat preferred and no stops, if possible.
13
+ 5. Great.
14
+ 6. That sounds good.
15
+ 7. Okay.
16
+ 8. Price not too bad.
17
+ 9. That's okay. I don't mind.
18
+ 10. Yes, please.
19
+ 11. Thank you so much.
20
+
21
+ ## Task
22
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0416/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0421/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0427/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0427/instruction.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-2bf0b569-f250-44a2-bb6f-7d09ddbfaf39
5
+ - **Instruction ID**: flight-13
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. I need help finding a flight from New York City to The Bahamas.
10
+ 2. I need to fly out tomorrow as late as possible and return on July 19th.
11
+ 3. And I need to know the total travel time.
12
+ 4. That sounds good to me. Can you send me the details?
13
+ 5. Thank you.
14
+ 6. That sounds perfect.
15
+ 7. Thank you.
16
+ 8. Bye.
17
+
18
+ ## Task
19
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0443/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0474/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0474/instruction.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-310758af-8015-4c9f-b1ba-b30176d802a1
5
+ - **Instruction ID**: flight-12
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. Hi, I need help booking a round trip flight, Please.
10
+ 2. I'll be flying from Seattle, Washington and I'll be going to Chicago, Illinois.
11
+ 3. I want to leave today this evening and I want to return in 2 days.
12
+ 4. I would like business class, Please and Wi-Fi if available.
13
+ 5. Non-stop. Yes.
14
+ 6. The Delta flight seems plausible. Can you book that for me, Please?
15
+ 7. Do you have anything in the evening for that return flight?
16
+ 8. Right. Can I book that flight too, Please?
17
+ 9. Thank you very much for your help. I appreciate it.
18
+
19
+ ## Task
20
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0475/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0612/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0613/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0615/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0615/instruction.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-41663c6c-4e5c-4cfb-8f07-b98bd9e40c7c
5
+ - **Instruction ID**: flight-4
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. I would like help finding a flight to London, England. I really need to meet up with some friends and acquaintances in London.
10
+ 2. I want the dates to be between July 8th and July 15th.
11
+ 3. Departing at 3:00 pm or later, please.
12
+ 4. Economy class and non-stop flight, please.
13
+ 5. Yeah, between $1,000 and $1,400.
14
+ 6. British Airways, okay. Tell me about it.
15
+ 7. What will be the price, please?
16
+ 8. Alright, sounds good, such a fair price.
17
+ 9. No, that will be all. Thank you.
18
+
19
+ ## Task
20
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0624/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0646/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0646/instruction.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-4569d68d-8d8d-4d43-ab4c-47a9a1080b89
5
+ - **Instruction ID**: flight-7
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. I'm looking for a flight, please.
10
+ 2. I'm leaving from LaGuardia Airport, and I'm flying from March 20th to April 2nd.
11
+ 3. I have one passenger, and I need a business class, please.
12
+ 4. I have one pass and I need a business class, please. I need a ticket to Seattle Oregon. Oops, Washington.
13
+ 5. Yes, please. My budget is $2,000.
14
+ 6. That's correct. I'd like my departure and arrival my tickets to both be to leave after midnight.
15
+ 7. Yes, please.
16
+ 8. Okay, great. Do you know what the layover is?
17
+ 9. Okay, great. That sounds perfect. What's the price?
18
+ 10. Perfect. Do they have free Wi-Fi?
19
+ 11. That's perfect. I'll book that.
20
+ 12. Thank you so much. Have a great day.
21
+ 13. Thank you so much, have a great day.
22
+
23
+ ## Task
24
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0647/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0648/instruction.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-45774653-96c9-4ee5-9549-7816b9d14ac8
5
+ - **Instruction ID**: flight-6
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. Hi, I would like to find a commercial airline flight to Maine.
10
+ 2. I would like a flight to Maine.
11
+ 3. Yes.
12
+ 4. Augusta the capital.
13
+ 5. Yep.
14
+ 6. Okay. So, I'd like for the flight to be on March 23rd. And I'd like to get back on March 28th. I'm trying to visit a friend.
15
+ 7. And I'd like to get back on March 28th.
16
+ 8. I'm trying to visit a friend.
17
+ 9. I'd like the flight to be less than $2,000.
18
+ 10. I'd like trying to pick a flight last night and Western in 2000.
19
+ 11. That's it.
20
+ 12. No layover, Please.
21
+ 13. All right, Then. Layover is fine.
22
+ 14. I need good rating, Please.
23
+ 15. 3 or higher.
24
+ 16. Yes.
25
+ 17. That's it.
26
+ 18. 5:00 P.M.
27
+ 19. 23rd of this month.
28
+ 20. Yes.
29
+ 21. Okay. Whatever time is fine.
30
+ 22. That's fine. Whatever time, From 12:00 P.M. to 5:00 P.M.
31
+ 23. Okay.
32
+ 24. Okay. That's fine.
33
+ 25. That's fine.
34
+ 26. Okay.
35
+ 27. Okay.
36
+ 28. Okay.
37
+ 29. Okay.
38
+ 30. Sounds good.
39
+ 31. Okay. Thank you.
40
+ 32. Thank you.
41
+ 33. Goodbye.
42
+
43
+ ## Task
44
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0649/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0671/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0683/instruction.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-4964883c-ee54-4906-8d3e-a0fa2556e3d7
5
+ - **Instruction ID**: flight-5
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. Hi. I'm looking to book a flight on July 10th to London, England. I'm going to see a friend.
10
+ 2. July 21st.
11
+ 3. I would like to sit in first class if at all possible. I want to be comfortable on this trip.
12
+ 4. I have a $3,000 budget.
13
+ 5. I have $3,000 to spend on the flight.
14
+ 6. That's correct.
15
+ 7. That would work really well.
16
+ 8. That would work really well.
17
+ 9. What will be the economy charge?
18
+ 10. You know, let's do the economy charge.
19
+ 11. Wonderful. That's the one I would like.
20
+ 12. That's all.
21
+
22
+ ## Task
23
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0685/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0814/instruction.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-574af6f6-a3e9-4d21-a7c8-332ca02326ca
5
+ - **Instruction ID**: flight-4
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. I would like you to help me finding a flight to London.
10
+ 2. I'm leaving on March 10th, And I am returning on March 20th.
11
+ 3. I would like the cheapest flight.
12
+ 4. Is this Non-stop flight?
13
+ 5. Okay. Thank you.
14
+
15
+ ## Task
16
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0823/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
taskmaster2-0825/instruction.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Taskmaster2 Conversation: Flights Domain
2
+
3
+ ## Conversation Details
4
+ - **Conversation ID**: dlg-5879b16c-0b44-4847-b83c-52d58ec96f0d
5
+ - **Instruction ID**: flight-7
6
+ - **Domain**: flights
7
+
8
+ ## User Utterances
9
+ 1. I need your help finding a flight.
10
+ 2. Yes. I want to fly out of LaGuardia, preferably United Airlines.
11
+ 3. San Francisco and I'd like to go visit my cousin August on 16th through the 21st.
12
+ 4. Frontier.
13
+ 5. Delta.
14
+ 6. I prefer economy class. I'd prefer to leave in the morning before 10:00 a.m.
15
+ 7. Is Wi-Fi available?
16
+ 8. Can you repeat the available ticket?
17
+ 9. What is the return flight?
18
+ 10. I would prefer the 9:25 p.m.
19
+ 11. That sounds good.
20
+ 12. Thank you.Bye.
21
+
22
+ ## Task
23
+ Do whatever the user asked you to do and use the dialogue history to do it.
taskmaster2-0840/environment/Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ubuntu:24.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*