From 5c8a3446ce3da868843a4408b8937400e6f13b73 Mon Sep 17 00:00:00 2001
From: 0xthecableguy <0xthecableguy@proton.me>
Date: Thu, 14 Nov 2024 00:01:44 +0300
Subject: [PATCH] update
---
index.html | 4 ++--
script.js | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/index.html b/index.html
index ae164dc..960ca83 100644
--- a/index.html
+++ b/index.html
@@ -2,7 +2,7 @@
- Чат с ботом
+ The coolest chat-interface ever!
@@ -13,7 +13,7 @@ Чат с ботом
-
+
diff --git a/script.js b/script.js
index 1b59599..c95d05a 100644
--- a/script.js
+++ b/script.js
@@ -6,7 +6,7 @@ document.getElementById("sendButton").addEventListener("click", function() {
// Имитируем ответ бота
setTimeout(() => {
- const botResponse = "Это ответ бота на ваш запрос: " + userMessage;
+ const botResponse = "Ответ: " + userMessage;
addMessageToChat("bot", botResponse);
}, 1000);
}