私はボット フレームワーク テクノロジに取り組んでいます。現在のプロジェクトの 1 つで、ユーザーが「ivr」または「IVR」と入力した場合にのみ許可したいと考えています。それ以外の場合は、ユーザーに何らかのフィードバックが表示されます。
そのために、以下のコード行を書きましたが、このコードはユーザーに間違った出力を示します。ユーザーが ivr または IVR を入力しても、最初はユーザーにフィードバックが表示されますが、2 回目以降は正しく機能します。
[Serializable]
class Customer
{
//Create Account Template
[Prompt("Please send any of these commands like **IVR** (or) **ivr**.")]
public string StartingWord;
public static IForm<Customer> BuildForm()
{
OnCompletionAsyncDelegate<Customer> accountStatus = async (context, state) =>
{
await Task.Delay(TimeSpan.FromSeconds(5));
await context.PostAsync("We are currently processing your account details. We will message you the status.");
};
var builder = new FormBuilder<Customer>();
return builder
//.Message("Welcome to the BankIVR bot! To start an conversation with this bot send **ivr** or **IVR** command.\r \n if you need help, send the **Help** command")
.Field(nameof(Customer.StartingWord), validate: async (state, response) =>
{
var result = new ValidateResult { IsValid = true, Value = response };
string str = (response as string);
if (str.ToLower() != "ivr")
{
result.Feedback = "I'm sorry. I didn't understand you.";
result.IsValid = false;
return result;
}
else if (str.ToLower() == "ivr")
{
result.IsValid = true;
return result;
}
else
{
return result;
}
})
.OnCompletion(accountStatus)
.Build();
}
};
フォーム フローの概念を使用してこの問題を解決する方法を教えてください。
-プラディープ