Знаете ли вы, бот Либре также предоставляет бесплатное размещение форумов для вашего собственного сайта или мобильное приложение?
Bot Libre Forum

how to teach the bot to answer after two (or more) non-understandable questions?

по nafergo опубликовано Apr 5 2018, 6:26

Hi

I'm trying to teach my bot to do the following:

user: sjkldfh sdkhfjk

bot: I'm sorry but I don't understand that. Can you please reformulate that?

user: lksdfj osdjm sdfj

bot: I still don't understand. Please, let me know in which respect I can improve.

I only want the second bot answer if there are two non-understandable talks from user. I mean, the first bot answer is correct but I want the bot to answer the second only after two (or more) non-understandable questions.

Can someone explain how can I achieve this or point me in the right direction?


by admin posted Apr 5 2018, 12:36
You should be able to use an "on repeat" for this.

default: I'm sorry but I don't understand that. Can you please reformulate that?
on repeat: I still don't understand. Please, let me know in which respect I can improve.

You can also use a "previous",

default: I'm sorry but I don't understand that. Can you please reformulate that?

default: I still don't understand. Please, let me know in which respect I can improve.
require previous: I'm sorry but I don't understand that. Can you please reformulate that?

You can also do more advanced things with "think", "condition" and some Self code,

condition: conversation.didNotUnderstand == null
default: I'm sorry but I don't understand that. Can you please reformulate that?
think: conversation.didNotUnderstand = 1;

condition: conversation.didNotUnderstand > 0
default: I still don't understand. Please, let me know in which respect I can improve.
think: conversation.didNotUnderstand = conversation.didNotUnderstand + 1;

Thumbs up: 0, thumbs down: 0, stars: 0.0
Views: 1874, today: 0, week: 1, month: 9

Идентификатор: 21525474
Теги: training
Опубликовано: Apr 5 2018, 6:26
Обновлено: Apr 5 2018, 12:32
Ответы: 1
Вид: 2308, сегодня: 1, неделю: 2, месяц: 11
0 0 0.0/5