I've created a LUIS app in german (de-de) culture.
I wanted to use the the build-in entity datetime (datetimeV2 is not yet available in german culture) to extract the date information from the utterances.
Up to now, I had no luck in getting any date information. Or when luis detects datetime information, it's completly wrong:
The german word 'rhetorik' is detected as datetime
The month 'august' is not marked as datetime entity
Is this because datetime is marked as deprecated? (https://learn.microsoft.com/en-us/azure/cognitive-services/luis/luis-reference-prebuilt-deprecated).
What should I do in my scenario? I read that the datetime is extraced using the https://github.com/Microsoft/Recognizers-Text project.
Should I parse the utterance with this library on my own after getting the luis results in my bot?
Or has somebody better experiance with datetime support in german culture with LUIS?