I am creating a bot to provide simple answers and perform some light-weight actions on commonly asked questions via the e-mail channel.
Different from the other channels, the e-mail channel tends to get longer messages fed to the bot (including user's email signature, some intro, thread history, ...). I am trying to use LUIS to guess the intent for the messages, to then execute the right action. This is working fine when the messages are very short, but it is failing when messages get larger as LUIS is limited to 500 chars.
What are best practices to get around this problem when using the e-mail channel with bot framework? Is there common ways to strip out the thread history, email signature, introduction parts of the e-mail body so that only the real question can get sent to Luis? Are there ways to split the message up in different phrases and then correlate the LUIS intents somehow?
I'm looking to see what others are doing here as the e-mail channel is a bit different from all other 'chat'-oriented channels.
Thanks a lot,
Bart