mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 18:00:15 +01:00
Update TextChat.jsx
This commit is contained in:
parent
c7b586ba4c
commit
1af6751d9b
1 changed files with 90 additions and 0 deletions
|
|
@ -29,6 +29,70 @@ export default function TextChat({ isSearchView = false }) {
|
|||
const isNotAppendable = latestMessage?.unfinished & !isSubmitting || latestMessage?.error;
|
||||
const { conversationId, jailbreak } = conversation || {};
|
||||
|
||||
const [isSpeechSupported, setIsSpeechSupported] = useState(false);
|
||||
const [isListening, setIsListening] = useState(false);
|
||||
|
||||
useEffect(() => {
|
||||
if ('SpeechRecognition' in window || 'webkitSpeechRecognition' in window) {
|
||||
setIsSpeechSupported(true);
|
||||
} else {
|
||||
console.log("Browser does not support SpeechRecognition");
|
||||
setIsSpeechSupported(false);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!('SpeechRecognition' in window) && !('webkitSpeechRecognition' in window)) {
|
||||
console.log("Browser does not support SpeechRecognition");
|
||||
return;
|
||||
}
|
||||
|
||||
const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition;
|
||||
const recognition = new SpeechRecognition();
|
||||
|
||||
recognition.onstart = () => {
|
||||
console.log("Speech recognition started");
|
||||
};
|
||||
|
||||
recognition.interimResults = true;
|
||||
|
||||
recognition.onresult = (event) => {
|
||||
let transcript = '';
|
||||
|
||||
for (let i = 0; i < event.results.length; i++) {
|
||||
const result = event.results[i];
|
||||
transcript += result[0].transcript;
|
||||
|
||||
if (result.isFinal) {
|
||||
setText(transcript);
|
||||
ask({ text: transcript });
|
||||
}
|
||||
}
|
||||
|
||||
// Set the text with both interim and final results
|
||||
setText(transcript);
|
||||
};
|
||||
|
||||
recognition.onend = () => {
|
||||
setIsListening(false);
|
||||
setText('');
|
||||
};
|
||||
|
||||
if (isListening) {
|
||||
recognition.start();
|
||||
} else {
|
||||
recognition.stop();
|
||||
}
|
||||
|
||||
return () => {
|
||||
recognition.stop();
|
||||
};
|
||||
}, [isListening]);
|
||||
|
||||
const toggleListening = (e) => {
|
||||
e.preventDefault();
|
||||
setIsListening((prevState) => !prevState);
|
||||
};
|
||||
|
||||
// auto focus to input, when enter a conversation.
|
||||
useEffect(() => {
|
||||
if (!conversationId) {
|
||||
|
|
@ -177,6 +241,32 @@ export default function TextChat({ isSearchView = false }) {
|
|||
disabled={disabled || isNotAppendable}
|
||||
className="m-0 flex h-auto max-h-52 flex-1 resize-none overflow-auto border-0 bg-transparent p-0 pl-2 pr-12 leading-6 placeholder:text-sm placeholder:text-gray-600 focus:outline-none focus:ring-0 focus-visible:ring-0 dark:bg-transparent dark:placeholder:text-gray-500 md:pl-2"
|
||||
/>
|
||||
{isSpeechSupported && (
|
||||
<button onClick={toggleListening} class="group absolute bottom-0 right-8 z-[101] flex h-[100%] w-[50px] items-center justify-center bg-transparent p-1 text-gray-500">
|
||||
<div class="m-1 ml-0 mr-0 rounded-md pb-[9px] pl-[9.5px] pr-[7px] pt-[11px] group-hover:bg-gray-100 group-disabled:hover:bg-transparent dark:group-hover:bg-gray-900 dark:group-hover:text-gray-400 dark:group-disabled:hover:bg-transparent">
|
||||
<svg
|
||||
stroke="currentColor"
|
||||
fill="none"
|
||||
strokeWidth="2"
|
||||
viewBox="0 0 24 24"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
className="mr-1 h-4 w-4"
|
||||
height="1em"
|
||||
width="1em"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<rect x="8" y="4" width="8" height="12" stroke="currentColor" fill="currentColor" />
|
||||
<circle cx="12" cy="4" r="4" stroke="currentColor" fill="currentColor" />
|
||||
<rect x="10" y="16" width="4" height="6" stroke="currentColor" fill="currentColor" />
|
||||
<line x1="4" y1="22" x2="20" y2="22" stroke="currentColor" />
|
||||
{isListening && (
|
||||
<circle cx="18" cy="18" r="6" fill="red" />
|
||||
)}
|
||||
</svg>
|
||||
</div>
|
||||
</button>
|
||||
)}
|
||||
<SubmitButton
|
||||
submitMessage={submitMessage}
|
||||
handleStopGenerating={handleStopGenerating}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue