I am working with the Oscova tutorials and I have a question. I have the following in a dialog class:
[Fallback]
public void GlobalFallback(Context context, Result result)
{
result.SendResponse("Could you please rephrase that for me?");
}
[Expression("Hello")]
public void Hello(Context context, Result result)
{
result.SendResponse("Hello to you too.");
}
Entering "Hello" gets the expected result of "Hello to you too".
Entering a short unmapped phrase, such as "What" results in "Could you please rephrase that for me?"
Entering a long nonsense phrase unexpectedly results in the "Hello to you too" answer.
I believe this is because of how the the intents are being scored. I also believe that I need to set the MaxIntentScore setting (found in ScoreConfiguration) to something other than the default. If this is so, could you please point me to documentation about interacting with the configuration functionality? I am a beginner at C# programming, and I don't know how to get from the class definition (http://developer.syn.co.in/api/Syn.Bot. ... ation.html) to actually finding and setting the MaxIntenScore setting.
Thank you,
Geebro