Я тестирую и обучаю нового бота QnA для своего веб-приложения и хочу распечатать правильный формат ответа, когда он встречает escape-последовательности. Как я могу реализовать такой подход, чтобы бот распознавал добавленные мной escape-последовательности? Эмулятор бота добавляет дополнительный '\' в начале '\ n \ n'
Я использую эмулятор Bot Framework для sdvk 3 и веб-сайта QnA Maker.
Мой ответ таков:
\n\n 1. Visit the heroes Portal website.\n\n 2. Select the create button.\n\n 3. Click “choose class” under the classes \n your heroes section.\n\n 4. Follow the instructions provided.\n If you require further assistance, please email us \n at ###@$$$.com\n
using Microsoft.Bot.Builder.CognitiveServices.QnAMaker;
using System;
namespace heroes.ChatBot.Dialogs.QnA
{
[Serializable]
[QnAMaker("####", "###",
"Sorry I could not find an answer to your question", 0.5, 1, "website" )]
public class QnAHeroesDialog : QnAMakerDialog
{
}
}
1.Visit the heroes Portal website.
2.Select the create button.
3.Click “choose class” under the classes \n your heroes section.
4.Follow the instructions provided.\n
If you require further assistance,\n
please follow instruction.