mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-09-19 01:05:09 +02:00
updated lite (+1 squashed commits)
Squashed commits: [375c5768b] updated lite
This commit is contained in:
+19
-4
@@ -14372,17 +14372,32 @@ Current version indicated by LITEVER below.
|
||||
document.getElementById("addimgcontainer").classList.add("hidden");
|
||||
document.getElementById("webcamcontainer").classList.remove("hidden");
|
||||
const video = document.getElementById('webcamvideo');
|
||||
if(webcamStream)
|
||||
{
|
||||
|
||||
if (webcamStream) {
|
||||
stop_webcam();
|
||||
}
|
||||
navigator.mediaDevices.getUserMedia({ video: true })
|
||||
|
||||
navigator.mediaDevices.getUserMedia({
|
||||
video: {
|
||||
facingMode: { exact: "environment" } // Request back camera
|
||||
}
|
||||
})
|
||||
.then(stream => {
|
||||
webcamStream = stream;
|
||||
video.srcObject = stream;
|
||||
})
|
||||
.catch(err => {
|
||||
console.error('Error accessing webcam:', err);
|
||||
|
||||
// Fallback: try default camera if back camera not available
|
||||
navigator.mediaDevices.getUserMedia({ video: true })
|
||||
.then(fallbackStream => {
|
||||
webcamStream = fallbackStream;
|
||||
video.srcObject = fallbackStream;
|
||||
})
|
||||
.catch(fallbackErr => {
|
||||
console.error('Fallback error accessing webcam:', fallbackErr);
|
||||
});
|
||||
});
|
||||
}
|
||||
function stop_webcam()
|
||||
@@ -19355,7 +19370,7 @@ Current version indicated by LITEVER below.
|
||||
{
|
||||
let curr = instruct_turns[i];
|
||||
let currmsg = curr.msg;
|
||||
if(localsettings.instruct_has_markdown && (synchro_pending_stream==""||(i+1)<instruct_turns.length))
|
||||
if(localsettings.instruct_has_markdown && (localsettings.render_streaming_markdown||synchro_pending_stream==""||(i+1)<instruct_turns.length))
|
||||
{
|
||||
//if a list has a starttag on the same line, add a newline before it
|
||||
currmsg = currmsg.replace(/(\n[-*] .+?)(%SpcStg%)/g, "$1\n$2");
|
||||
|
||||
Reference in New Issue
Block a user