input
stringlengths
52
134
output
stringlengths
15
69
Parse English date, today is Monday, 18 June 2029: hey last week's tue or something
{"add_weeks": -1, "at_weekday": 1}
Parse English date, today is Friday, 14 June 2024: 15 hours later
{"add_hours": 15}
Parse English date, today is Tuesday, 11 June 2024: the coming week
{"add_weeks": 1}
Parse English date, today is Sunday, 1 December 2030: remind me three months and four weeks later
{"add_months": 3, "add_weeks": 4}
Parse English date, today is Saturday, 18 June 2022: ok so after 28 days sounds good
{"add_days": 28}
Parse English date, today is Sunday, 8 February 2026: A Day Before We
{"at_weekday": 1}
Parse English date, today is Tuesday, 14 April 2026: one days after this friday
{"add_weeks": 0, "at_weekday": 4, "add_days": 1}
Parse English date, today is Sunday, 6 June 2027: so day after tomorrow
{"add_days": 2}
Parse English date, today is Tuesday, 5 September 2028: what about on friday
{"at_weekday": 4}
Parse English date, today is Saturday, 12 August 2028: the weekend at 10:00
{"add_weeks": 0, "at_weekday": 5, "at_hour": 10, "at_minute": 0}
Parse English date, today is Sunday, 14 July 2024: Okay Thirty Min Ago
{"add_minutes": -30}
Parse English date, today is Monday, 28 April 2025: I think near 21 o'clock
{"at_hour": 21, "at_minute": 0, "is_approximate": true}
Parse English date, today is Saturday, 24 September 2022: I think on tues if possible
{"at_weekday": 1}
Parse English date, today is Thursday, 13 June 2024: SA THIS AFTERNOON AT 2
{"at_weekday": 5, "at_hour": 14, "at_minute": 0}
Parse English date, today is Sunday, 12 June 2022: tonight
{"add_days": 0, "at_hour": 19, "at_minute": 0}
Parse English date, today is Tuesday, 15 February 2022: LET'S SAY THE END OF THIS MONTH
{"add_months": 0, "end_of_month": true}
Parse English date, today is Saturday, 21 December 2030: hey fri
{"at_weekday": 4}
Parse English date, today is Thursday, 15 February 2029: 3rd January 2022 sounds good
{"at_day": 3, "at_month": 1, "at_year": 2022}
Parse English date, today is Monday, 12 March 2029: schedule for the first monday
{"at_week": 1, "at_weekday": 0}
Parse English date, today is Friday, 26 April 2030: hey eleven ten
{"at_hour": 11, "at_minute": 10}
Parse English date, today is Thursday, 20 June 2024: THIS MONTH'S SECOND TU PROBABLY
{"add_months": 0, "at_week": 2, "at_weekday": 1}
Parse English date, today is Sunday, 26 April 2026: 25 to 11
{"at_hour": 10, "at_minute": 35}
Parse English date, today is Saturday, 19 August 2023: this month's 14th
{"add_months": 0, "at_day": 14}
Parse English date, today is Tuesday, 10 September 2024: WHAT ABOUT YESTERDAY MORNING
{"add_days": -1, "at_hour": 9, "at_minute": 0, "is_ambiguous": true}
Parse English date, today is Tuesday, 4 July 2028: ok so the seventeen of december
{"at_day": 17, "at_month": 12}
Parse English date, today is Sunday, 24 March 2024: in 13 hours
{"add_hours": 13}
Parse English date, today is Saturday, 11 June 2022: 2:30 AROUND NOON I THINK
{"at_hour": 14, "at_minute": 30}
Parse English date, today is Saturday, 3 October 2026: on monday
{"at_weekday": 0}
Parse English date, today is Sunday, 5 January 2025: in three hours if possible
{"add_hours": 3}
Parse English date, today is Friday, 4 December 2026: The Twenty Five Of Dec
{"at_day": 25, "at_month": 12}
Parse English date, today is Saturday, 21 May 2022: 2 years and twelve days later
{"add_years": 2, "add_days": 12}
Parse English date, today is Saturday, 2 March 2030: SCHEDULE FOR THURS NEXT WEEK
{"add_weeks": 1, "at_weekday": 3}
Parse English date, today is Sunday, 7 April 2030: Coming We Probably
{"at_weekday": 2}
Parse English date, today is Monday, 24 April 2028: until the 27th of the month
{"add_months": 0, "at_day": 27, "is_ambiguous": true}
Parse English date, today is Thursday, 13 January 2028: I think about 17
{"at_hour": 17, "at_minute": 0, "is_approximate": true}
Parse English date, today is Friday, 23 January 2026: last month's beginning
{"add_months": -1, "at_day": 1}
Parse English date, today is Wednesday, 4 February 2026: 18 Days Ago Or Something
{"add_days": -18}
Parse English date, today is Tuesday, 15 February 2028: evening at 12:30
{"at_hour": 12, "at_minute": 30}
Parse English date, today is Friday, 10 December 2027: eleven weeks ago
{"add_weeks": -11}
Parse English date, today is Monday, 3 April 2023: a quarter to 1
{"at_hour": 0, "at_minute": 45}
Parse English date, today is Wednesday, 18 May 2022: 19 days ago
{"add_days": -19}
Parse English date, today is Wednesday, 2 February 2022: coming tue
{"at_weekday": 1}
Parse English date, today is Saturday, 13 February 2027: schedule for tmrw in the morning
{"add_days": 1, "at_hour": 9, "at_minute": 0, "is_ambiguous": true}
Parse English date, today is Saturday, 17 August 2030: what about a year, four weeks and seventeen days from now
{"add_years": 1, "add_weeks": 4, "add_days": 17}
Parse English date, today is Monday, 1 May 2023: SCHEDULE FOR SAT OF THE 4TH WEEK OF LAST MONTH I THINK
{"add_months": -1, "at_week": 4, "at_weekday": 5}
Parse English date, today is Monday, 4 December 2023: 2 Oct
{"at_month": 10, "at_day": 2}
Parse English date, today is Wednesday, 2 November 2022: today morning
{"add_days": 0, "at_hour": 9, "at_minute": 0}
Parse English date, today is Tuesday, 23 June 2026: last month's end
{"add_months": -1, "end_of_month": true}
Parse English date, today is Friday, 14 September 2029: How About In The Afternoon Yesterday
{"add_days": -1, "at_hour": 15, "at_minute": 0, "is_ambiguous": true}
Parse English date, today is Friday, 6 January 2023: How About Last Month'S Third Week Mon
{"add_months": -1, "at_week": 3, "at_weekday": 0}
Parse English date, today is Monday, 7 February 2028: day after tomorrow
{"add_days": 2}
Parse English date, today is Wednesday, 23 July 2025: tmrw evening
{"add_days": 1, "at_hour": 19, "at_minute": 0, "is_ambiguous": true}
Parse English date, today is Sunday, 16 April 2028: thurs sounds good
{"at_weekday": 3}
Parse English date, today is Sunday, 7 February 2027: thirteen FEB
{"at_day": 13, "at_month": 2}
Parse English date, today is Sunday, 12 May 2024: okay 2 days after next week's saturday
{"add_weeks": 1, "at_weekday": 5, "add_days": 2}
Parse English date, today is Thursday, 8 December 2022: The 21St Of Next Month
{"add_months": 1, "at_day": 21}
Parse English date, today is Thursday, 8 February 2029: AT SIX FIFTY PLEASE
{"at_hour": 6, "at_minute": 50}
Parse English date, today is Friday, 3 July 2026: WHAT ABOUT JAN 3RD MAYBE
{"at_month": 1, "at_day": 3}
Parse English date, today is Saturday, 1 March 2025: day before yesterday
{"add_days": -2}
Parse English date, today is Friday, 25 September 2026: mo morning at 6
{"at_weekday": 0, "at_hour": 6, "at_minute": 0}
Parse English date, today is Saturday, 3 August 2024: okay tmrw or so
{"add_days": 1}
Parse English date, today is Sunday, 26 April 2026: three weeks later please
{"add_weeks": 3}
Parse English date, today is Monday, 1 April 2030: well friday at 3 at night
{"at_weekday": 4, "at_hour": 3, "at_minute": 0}
Parse English date, today is Sunday, 16 March 2025: well before the 2nd of this month
{"add_months": 0, "at_day": 2, "is_ambiguous": true}
Parse English date, today is Friday, 17 March 2028: let's say the first monday of October sounds good
{"at_month": 10, "at_week": 1, "at_weekday": 0}
Parse English date, today is Thursday, 6 January 2028: two years and 1 month later
{"add_years": 2, "add_months": 1}
Parse English date, today is Thursday, 27 September 2029: I think in five weeks
{"add_weeks": 5}
Parse English date, today is Sunday, 1 April 2029: half past 11 evening
{"at_hour": 11, "at_minute": 30}
Parse English date, today is Saturday, 6 July 2030: hmm 1 week ago
{"add_weeks": -1}
Parse English date, today is Tuesday, 20 September 2022: WELL JANUARY'S 2ND THU
{"at_month": 1, "at_week": 2, "at_weekday": 3}
Parse English date, today is Saturday, 7 January 2023: 30 MIN FROM NOW
{"add_minutes": 30}
Parse English date, today is Wednesday, 22 August 2029: tomorrow
{"add_days": 1}
Parse English date, today is Tuesday, 5 February 2030: WELL FIFTEEN MINUTES FROM NOW
{"add_minutes": 15}
Parse English date, today is Friday, 25 November 2022: the end of next month
{"add_months": 1, "end_of_month": true}
Parse English date, today is Sunday, 19 June 2022: the five of January
{"at_day": 5, "at_month": 1}
Parse English date, today is Saturday, 26 June 2027: the end of jun
{"at_month": 6, "end_of_month": true}
Parse English date, today is Friday, 9 July 2027: twenty-three forty-nine
{"at_hour": 23, "at_minute": 49}
Parse English date, today is Friday, 6 April 2029: in 7 weeks on su
{"add_weeks": 7, "at_weekday": 6}
Parse English date, today is Tuesday, 10 January 2023: the 2nd friday of nov
{"at_month": 11, "at_week": 2, "at_weekday": 4}
Parse English date, today is Thursday, 20 January 2028: how about 15 hours ago
{"add_hours": -15}
Parse English date, today is Friday, 23 November 2029: five days from now
{"add_days": 5}
Parse English date, today is Sunday, 28 April 2024: remind me last month's 1st sun
{"add_months": -1, "at_week": 1, "at_weekday": 6}
Parse English date, today is Sunday, 27 March 2022: in forty min
{"add_minutes": 40}
Parse English date, today is Monday, 16 August 2027: the following tuesday
{"add_weeks": 1, "at_weekday": 1}
Parse English date, today is Monday, 25 December 2023: SEVEN JULY
{"at_day": 7, "at_month": 7}
Parse English date, today is Tuesday, 18 February 2025: TWENTY-ONE FORTY-FIVE
{"at_hour": 21, "at_minute": 45}
Parse English date, today is Sunday, 28 December 2025: well this coming wednesday
{"at_weekday": 2}
Parse English date, today is Thursday, 11 April 2024: Ok So Twenty-Two Days Ago
{"add_days": -22}
Parse English date, today is Sunday, 16 February 2025: Wed In A Week
{"add_weeks": 1, "at_weekday": 2}
Parse English date, today is Sunday, 26 March 2023: fifteen after 1
{"at_hour": 1, "at_minute": 15}
Parse English date, today is Friday, 1 October 2027: ok so su last week
{"add_weeks": -1, "at_weekday": 6}
Parse English date, today is Saturday, 9 March 2024: Jan 18 If Possible
{"at_month": 1, "at_day": 18}
Parse English date, today is Tuesday, 18 February 2025: Night The Day After Tomorrow Or So
{"add_days": 2, "at_hour": 22, "at_minute": 0, "is_ambiguous": true}
Parse English date, today is Friday, 17 September 2027: in twenty-four hours
{"add_hours": 24}
Parse English date, today is Saturday, 15 July 2023: hmm in 15 min sounds good
{"add_minutes": 15}
Parse English date, today is Monday, 6 May 2030: in 2 days
{"add_days": 2}
Parse English date, today is Friday, 26 July 2024: on the weekend at 17
{"add_weeks": 0, "at_weekday": 5, "at_hour": 17, "at_minute": 0}
Parse English date, today is Monday, 13 June 2022: AT TWENTY-THREE FIFTY
{"at_hour": 23, "at_minute": 50}
Parse English date, today is Friday, 5 September 2025: 3 Days Before Next Week Sunday
{"add_weeks": 1, "at_weekday": 6, "add_days": -3}
Parse English date, today is Saturday, 27 May 2028: what about we in three weeks
{"add_weeks": 3, "at_weekday": 2}