I am building an api.ai agent, but I'm struggling to get unbounded date-period
parameters understood correctly.
For example:
before 2000
is interpreted as["2000-01-01/2000-12-31"]
after 1999
is interpreted as["1999-01-01/1999-12-31"]
after January 2007
is interpreted as["2007-01-01/2007-01-31"]
This makes me think only the date (2000
/January 2007
) is used for calculating the date-range, ignoring the adverb (before
/after
).