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! Quarters are not identified properly when written in short form:
"first quarter of 2018" > ok
{ "entity": "snips/datetime", "range": { "end": 21, "start": 0 }, "rawValue": "first quarter of 2018", "slotName": "date-time", "value": { "grain": "Quarter", "kind": "InstantTime", "precision": "Exact", "value": "2018-01-01 00:00:00 +01:00" } }
"1st quarter of 2018" > ok
{ "entity": "snips/datetime", "range": { "end": 19, "start": 0 }, "rawValue": "1st quarter of 2018", "slotName": "date-time", "value": { "grain": "Quarter", "kind": "InstantTime", "precision": "Exact", "value": "2018-01-01 00:00:00 +01:00" } }
"Q1 2018" > not ok
{ "entity": "snips/datetime", "range": { "end": 7, "start": 3 }, "rawValue": "2018", "slotName": "date-time", "value": { "grain": "Year", "kind": "InstantTime", "precision": "Exact", "value": "2018-01-01 00:00:00 +01:00" } }
Best, Joffrey
The text was updated successfully, but these errors were encountered:
Hey, thanks for the feedback, It is a reasonable use case indeed. We will add the support for it as soon as we can. It shouldn't be too hard.
Best, Adrien
Sorry, something went wrong.
No branches or pull requests
Hi!
Quarters are not identified properly when written in short form:
"first quarter of 2018" > ok
"1st quarter of 2018" > ok
"Q1 2018" > not ok
Best,
Joffrey
The text was updated successfully, but these errors were encountered: