gpt4 book ai didi

javascript - 聊天机器人应答/响应时间 js 中的代码

转载 作者:行者123 更新时间:2023-11-28 05:37:27 28 4
gpt4 key购买 nike

抱歉我的英语不好,但我尽力了:)我有一些问题,希望我能在这里找到答案。我想在 html/css/js 中创建一个离线聊天机器人并使用 Intel XDK 程序。

  1. 我不知道,如何给聊天机器人一个特殊的命令?所以,他回答特殊的单词/主题。这是一个例子:“我:嘿”“机器人:嘿/嗨”

2.下一个问题是,针对特殊单词/主题创建响应时间。举个例子:如果我说“嘿”,那么Chatbot的响应时间一定是“1分钟”。

我使用这个index.js代码

var $messages = $('.messages-content'),
d, h, m,
i = 0;

$(window).load(function() {
$messages.mCustomScrollbar();
setTimeout(function() {
fakeMessage();
}, 100);
});

function updateScrollbar() {
$messages.mCustomScrollbar("update").mCustomScrollbar('scrollTo', 'bottom', {
scrollInertia: 10,
timeout: 0
});
}

function setDate(){
d = new Date()
if (m != d.getMinutes()) {
m = d.getMinutes();
$('<div class="timestamp">' + d.getHours() + ':' + m + '</div>').appendTo($('.message:last'));
}
}

function insertMessage() {
msg = $('.message-input').val();
if ($.trim(msg) == '') {
return false;
}
$('<div class="message message-personal">' + msg + '</div>').appendTo($('.mCSB_container')).addClass('new');
setDate();
$('.message-input').val(null);
updateScrollbar();
setTimeout(function() {
fakeMessage();
}, 1000 + (Math.random() * 20) * 100);
}

$('.message-submit').click(function() {
insertMessage();
});

$(window).on('keydown', function(e) {
if (e.which == 13) {
insertMessage();
return false;
}
})

var Fake = [
'Hi there, I\'m Fabio and you?',
'Nice to meet you',
'How are you?',
'Not too bad, thanks',
'What do you do?',
'That\'s awesome',
'Codepen is a nice place to stay',
'I think you\'re a nice person',
'Why do you think that?',
'Can you explain?',
'Anyway I\'ve gotta go now',
'It was a pleasure chat with you',
'Time to make a new codepen',
'Bye',
':)'
]

function fakeMessage() {
if ($('.message-input').val() != '') {
return false;
}

最佳答案

实现此目的的最简单方法是设置一个包含消息、响应和超时的关联数组。喜欢:

var Fake = {
"Hi": ['Hi there, I\'m Fabio and you?', 6000]
}

然后在 fakeMessage 中获取您的消息,例如

var msg = Fake[$('.message-input').val()];

作为上述代码的改进,您可以在 Fake 数组和 .indexOf 消息中的每个键上使用 $.each 循环来很好地回应“你好”或“你好法比奥”等消息

关于javascript - 聊天机器人应答/响应时间 js 中的代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39238341/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com