Spaces:
Runtime error
Runtime error
File size: 9,463 Bytes
b1ff431 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
let lightMode = true;
let recording = false;
let voiceOption = "default";
let sttLanguage = "en-US";
const responses = [];
const botRepeatButtonIDToIndexMap = {};
const userRepeatButtonIDToRecordingMap = {};
const baseUrl = window.location.origin;
//webkitURL is deprecated but nevertheless
URL = window.URL || window.webkitURL;
var gumStream; //stream from getUserMedia()
var recorder; //WebAudioRecorder object
var input; //MediaStreamAudioSourceNode we'll be recording
var encodingType = "wav"; //holds selected encoding for resulting audio (file)
var encodeAfterRecord = true; // when to encode
// shim for AudioContext when it's not avb.
var AudioContext = window.AudioContext || window.webkitAudioContext;
var audioContext; //new audio context to help us record
async function showBotLoadingAnimation() {
await sleep(500);
$(".loading-animation")[1].style.display = "inline-block";
}
function hideBotLoadingAnimation() {
$(".loading-animation")[1].style.display = "none";
}
async function showUserLoadingAnimation() {
await sleep(100);
$(".loading-animation")[0].style.display = "flex";
}
function hideUserLoadingAnimation() {
$(".loading-animation")[0].style.display = "none";
}
const getSpeechToText = async (userRecording) => {
const formData = new FormData();
formData.append("audio", userRecording.audioBlob, "recording.wav");
formData.append("language", sttLanguage);
let response = await fetch(baseUrl + "/speech-to-text", {
method: "POST",
body: formData,
});
console.log(response);
response = await response.json();
console.log(response);
return response.text;
};
const processUserMessage = async (userMessage) => {
let response = await fetch(baseUrl + "/process-message", {
method: "POST",
headers: { Accept: "application/json", "Content-Type": "application/json" },
body: JSON.stringify({ userMessage: userMessage, voice: voiceOption }),
});
response = await response.json();
console.log(response);
return response;
};
const cleanTextInput = (value) => {
return value
.trim() // remove starting and ending spaces
.replace(/[\n\t]/g, "") // remove newlines and tabs
.replace(/<[^>]*>/g, "") // remove HTML tags
.replace(/[<>&;]/g, ""); // sanitize inputs
};
function startRecording() {
console.log("startRecording() called");
var constraints = {
audio: true,
video: false,
};
navigator.mediaDevices
.getUserMedia(constraints)
.then(function (stream) {
console.log(
"getUserMedia() success, stream created, initializing WebAudioRecorder..."
);
audioContext = new AudioContext();
//assign to gumStream for later use
gumStream = stream;
/* use the stream */
input = audioContext.createMediaStreamSource(stream);
recorder = new WebAudioRecorder(input, {
workerDir: "static/js/", // must end with slash
encoding: encodingType,
numChannels: 2, //2 is the default, mp3 encoding supports only 2
onEncoderLoading: function (recorder, encoding) {
// show "loading encoder..." display
console.log("Loading " + encoding + " encoder...");
},
onEncoderLoaded: function (recorder, encoding) {
// hide "loading encoder..." display
console.log(encoding + " encoder loaded");
},
});
recorder.onComplete = function (recorder, blob) {
console.log("Encoding complete");
const audioUrl = URL.createObjectURL(blob);
const audio = new Audio(audioUrl);
const play = () => audio.play();
const userRecording = { audioBlob: blob, audioUrl, play };
getSpeechToText(userRecording).then((userMessage) => {
populateUserMessage(userMessage, userRecording);
populateBotResponse(userMessage);
});
};
recorder.setOptions({
timeLimit: 120,
encodeAfterRecord: encodeAfterRecord,
ogg: {
quality: 0.5,
},
mp3: {
bitRate: 160,
},
});
//start the recording process
recorder.startRecording();
console.log("Recording started");
})
.catch(function (err) {
//enable the record button if getUSerMedia() fails
recording = false;
$(".fa-microphone").css("color", "#125ee5");
});
}
function stopRecording() {
console.log("stopRecording() called");
//stop microphone access
gumStream.getAudioTracks()[0].stop();
//tell the recorder to finish the recording (stop recording + encode the recorded audio)
recorder.finishRecording();
console.log("Recording stopped");
}
const sleep = (time) => new Promise((resolve) => setTimeout(resolve, time));
const playResponseAudio = (function () {
const df = document.createDocumentFragment();
return function Sound(src) {
const snd = new Audio(src);
df.appendChild(snd); // keep in fragment until finished playing
snd.addEventListener("ended", function () {
df.removeChild(snd);
});
snd.play();
return snd;
};
})();
const getRandomID = () => {
return Date.now().toString(36) + Math.random().toString(36).substr(2);
};
const scrollToBottom = () => {
// Scroll the chat window to the bottom
$("#chat-window").animate({
scrollTop: $("#chat-window")[0].scrollHeight,
});
};
const populateUserMessage = (userMessage, userRecording) => {
// Clear the input field
$("#message-input").val("");
// Append the user's message to the message list
if (userRecording) {
const userRepeatButtonID = getRandomID();
userRepeatButtonIDToRecordingMap[userRepeatButtonID] = userRecording;
hideUserLoadingAnimation();
$("#message-list").append(
`<div class='message-line my-text'><div class='message-box my-text${
!lightMode ? " dark" : ""
}'><div class='me'>${userMessage}</div></div>
<button id='${userRepeatButtonID}' class='btn volume repeat-button' onclick='userRepeatButtonIDToRecordingMap[this.id].play()'><i class='fa fa-volume-up'></i></button>
</div>`
);
} else {
$("#message-list").append(
`<div class='message-line my-text'><div class='message-box my-text${
!lightMode ? " dark" : ""
}'><div class='me'>${userMessage}</div></div></div>`
);
}
scrollToBottom();
};
const populateBotResponse = async (userMessage) => {
await showBotLoadingAnimation();
const response = await processUserMessage(userMessage);
responses.push(response);
const repeatButtonID = getRandomID();
botRepeatButtonIDToIndexMap[repeatButtonID] = responses.length - 1;
hideBotLoadingAnimation();
// Append the random message to the message list
const messageBox = $(`<div class='message-line'><div class='message-box${
!lightMode ? " dark" : ""
}'></div></div>`);
messageBox.find('.message-box').html(response.openaiResponseText);
$("#message-list").append(messageBox);
playResponseAudio("data:audio/wav;base64," + response.openaiResponseSpeech);
scrollToBottom();
};
$(document).ready(function () {
// Listen for the "Enter" key being pressed in the input field
$("#message-input").keyup(function (event) {
let inputVal = cleanTextInput($("#message-input").val());
if (event.keyCode === 13 && inputVal != "") {
const message = inputVal;
populateUserMessage(message, null);
populateBotResponse(message);
}
inputVal = $("#message-input").val();
if (inputVal == "" || inputVal == null) {
$("#send-button")
.removeClass("send")
.addClass("microphone")
.html("<i class='fa fa-microphone'></i>");
} else {
$("#send-button")
.removeClass("microphone")
.addClass("send")
.html("<i class='fa fa-paper-plane'></i>");
}
});
// When the user clicks the "Send" button
$("#send-button").click(async function () {
if ($("#send-button").hasClass("microphone") && !recording) {
startRecording();
$(".fa-microphone").css("color", "#f3685eff");
console.log("start recording");
recording = true;
} else if (recording) {
stopRecording();
await showUserLoadingAnimation();
$(".fa-microphone").css("color", "#477de2");
console.log("stop recording");
recording = false;
} else {
// Get the message the user typed in
const message = cleanTextInput($("#message-input").val());
populateUserMessage(message, null);
populateBotResponse(message);
$("#send-button")
.removeClass("send")
.addClass("microphone")
.html("<i class='fa fa-microphone'></i>");
}
});
// handle the event of switching light-dark mode
$("#light-dark-mode-switch").change(function () {
$("body").toggleClass("dark-mode");
$(".message-box").toggleClass("dark");
$(".loading-dots").toggleClass("dark");
$(".dot").toggleClass("dark-dot");
lightMode = !lightMode;
});
$("#voice-options").change(function () {
voiceOption = $(this).val();
console.log(voiceOption);
});
$("#stt-language-options").change(function () {
sttLanguage = $(this).val();
console.log(sttLanguage);
});
}); |