@Utsav Tulsyan I have checked the implementation of this further in the github repo, according to this it seems to return values based on the response from LUIS app. If it is entity type builtin.datetimeV2 the resolution is returned if there is one or the timex values. This response in turn seems to be from the recognizers library implementation which is an open source repo used by LUIS. From what I see with testing from recognizers text it returns values based on how the utterance is input. For example, I tried this with the recognizers text it extracted the following in the response.
result=recognize_datetime("I'll go back 8pm today", Culture.English)
response:
[
{
"start": 13,
"end": 21,
"resolution": {
"values": [
{
"timex": "2021-01-08T20",
"type": "datetime",
"value": "2021-01-08 20:00:00"
}
]
},
"text": "8pm today",
"type_name": "datetimeV2.datetime"
}
]
I tried these formats: '2020-01-01T00:00:00' and '2020-01-01 00:00:00'. But it did not work.
For this case are you actually passing this format in your utterance or bot?