We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi again,
Sometimes, when the year is only written once for a month-based time interval, the "from" is totally wrong.
Joffrey
"Between May and October 2018" > wrong (see 2007 in the "from")
{ "entity": "snips/datetime", "range": { "end": 28, "start": 0 }, "rawValue": "Between May and October 2018", "slotName": "date-time", "value": { "from": "2007-05-01 00:00:00 +02:00", "kind": "TimeInterval", "to": "2018-11-01 00:00:00 +01:00" } }
"Between May and October 2017" > ok
{ "entity": "snips/datetime", "range": { "end": 28, "start": 0 }, "rawValue": "Between May and October 2017", "slotName": "date-time", "value": { "from": "2017-05-01 00:00:00 +02:00", "kind": "TimeInterval", "to": "2017-11-01 00:00:00 +01:00" } }
"Between May 2018 and October 2018" > ok
{ "entity": "snips/datetime", "range": { "end": 33, "start": 0 }, "rawValue": "Between May 2018 and October 2018", "slotName": "date-time", "value": { "from": "2018-05-01 00:00:00 +02:00", "kind": "TimeInterval", "to": "2018-11-01 00:00:00 +01:00" } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi again,
Sometimes, when the year is only written once for a month-based time interval, the "from" is totally wrong.
Joffrey
"Between May and October 2018" > wrong (see 2007 in the "from")
"Between May and October 2017" > ok
"Between May 2018 and October 2018" > ok
The text was updated successfully, but these errors were encountered: