|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"use strict"; |
|
const VERS = "0.1.63"; |
|
|
|
var xlog = console.log; |
|
var xerror = console.error; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const cancelRequest = () => { |
|
const ok = confirm("Confermi Cancellazione Richeista ?"); |
|
if (!ok) return; |
|
HfRequest.cancelRequest(); |
|
hideSpinner(); |
|
}; |
|
|
|
const showSpinner = () => { |
|
const spinner = document.getElementById("spinner"); |
|
spinner.classList.add("show-spinner"); |
|
spinner.addEventListener("click", cancelRequest); |
|
}; |
|
|
|
const hideSpinner = () => { |
|
const spinner = document.getElementById("spinner"); |
|
spinner.classList.remove("show-spinner"); |
|
spinner.removeEventListener("click", cancelRequest); |
|
}; |
|
|
|
var tm; |
|
|
|
function openApp() { |
|
setTimeout(() => { |
|
tm = umgm(); |
|
wnds.init(); |
|
Menu.init(); |
|
TextInput.init(); |
|
TextOutput.init(); |
|
Rag.init(); |
|
document.querySelector(".menu-btn").checked = false; |
|
release(); |
|
showHistory(); |
|
getTheme(); |
|
}, 10); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function showHistory() { |
|
const txt = ThreadMgr.getThread(); |
|
setOutText(txt); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
function release() { |
|
document.querySelector(".release").innerHTML = VERS; |
|
} |
|
|
|
|
|
const op0 = async function (e) { |
|
const text = await requestGet("./help1.html"); |
|
wnds.wdiv.show(text); |
|
}; |
|
|
|
|
|
function showQuery(e) { |
|
const txt = `\n${Rag.ragQuery}`; |
|
wnds.wpre.show(txt); |
|
|
|
} |
|
|
|
|
|
function showRagResponse(e) { |
|
const txt = `\n${Rag.ragAnswer}`; |
|
wnds.wpre.show(txt); |
|
} |
|
|
|
|
|
function showThread(e) { |
|
const txt = ThreadMgr.getThread(); |
|
wnds.wpre.show(txt); |
|
} |
|
|
|
|
|
function elencoRisposte(e) { |
|
let rs = [...Rag.answers]; |
|
if (rs.length == 0) { |
|
rs = UaDb.readArray(ID_RESPONSES); |
|
} |
|
if (rs.length == 0) return; |
|
const text = rs |
|
.map((x, i) => { |
|
|
|
return `\n[${i + 1}]\n ${x.trim()}`; |
|
}) |
|
.join("\n"); |
|
wnds.wpre.show(text); |
|
} |
|
|
|
|
|
function showContesto(e) { |
|
const txt = `${Rag.ragContext}`; |
|
wnds.wpre.show(txt); |
|
} |
|
|
|
|
|
function elencoDati(e) { |
|
const ids = UaDb.getAllIds(); |
|
const arr = []; |
|
for (const id of ids) { |
|
const s = UaDb.read(id); |
|
const l = s.length; |
|
arr.push(`${id} (${l})`); |
|
} |
|
let msg = arr.join("\n "); |
|
wnds.wpre.show(msg); |
|
} |
|
|
|
|
|
const showT = (n) => { |
|
const arr = DataMgr.docs; |
|
const s = arr[n]; |
|
wnds.wpre.show(s); |
|
}; |
|
|
|
|
|
function elencoDocs() { |
|
DataMgr.readDbDocs(); |
|
DataMgr.readDbDocNames(); |
|
const arr = DataMgr.doc_names; |
|
const fh = (x, i) => ` |
|
<li><a href="#" onCLick="showT(${i});">${i + 1}.${x}</a></li> |
|
`; |
|
const jfh = UaJtfh(); |
|
let i = 0; |
|
jfh.append("<ul>"); |
|
for (const x of arr) jfh.append(fh(x, i++)); |
|
jfh.append("</ul>"); |
|
const t = jfh.html(); |
|
wnds.wdiv.show(`<br><br>${t}`); |
|
} |
|
|
|
|
|
function calcQuery() { |
|
const calc = () => { |
|
const arr = []; |
|
let nptot = 0; |
|
let i = 0; |
|
arr.push(`Documento Num.Parti`); |
|
arr.push("=================="); |
|
for (const doc of DataMgr.docs) { |
|
const name = DataMgr.doc_names[i]; |
|
i += 1; |
|
const dl = doc.length; |
|
const np = Math.ceil(dl / MAX_PROMPT_LENGTH); |
|
nptot += np; |
|
arr.push(`${name} [${np}]`); |
|
} |
|
arr.push("=================="); |
|
arr.push(`Totale num. Parti: ${nptot}`); |
|
const s = arr.join("\n"); |
|
return s; |
|
}; |
|
DataMgr.readDbDocs(); |
|
DataMgr.readDbDocNames(); |
|
const s = calc(); |
|
wnds.wpre.show(s); |
|
} |
|
|
|
|
|
function deleteDati(e) { |
|
const ok = confirm("Confermi cancellazione dati?"); |
|
if (ok) { |
|
DataMgr.deleteJsonDati(); |
|
wnds.wdiv.close(); |
|
wnds.wpre.close(); |
|
TextOutput.clear(); |
|
} |
|
} |
|
|
|
|
|
function deleteSttorage(e) { |
|
const ok = confirm("Confermi cancellazione documenti & dati?"); |
|
if (ok) { |
|
DataMgr.deleteJsonDati(); |
|
localStorage.clear(); |
|
wnds.wdiv.close(); |
|
wnds.wpre.close(); |
|
TextOutput.clear(); |
|
DataMgr.docs = []; |
|
DataMgr.doc_names = []; |
|
} |
|
} |
|
|
|
|
|
async function help1(e) { |
|
const text = await requestGet("./data/help_test.html"); |
|
wnds.wdiv.show(text); |
|
} |
|
|
|
|
|
function loadTestoEsempio(name) { |
|
const link = `data/${name}`; |
|
DataMgr.loadDoc(link); |
|
wnds.wdiv.close(); |
|
} |
|
|
|
|
|
async function help2(e) { |
|
const text = await requestGet("./help2.html"); |
|
wnds.wdiv.show(text); |
|
} |
|
|
|
const themeKey = "theme"; |
|
|
|
function getTheme() { |
|
const t = localStorage.getItem(themeKey); |
|
if (!!t && t == "light") { |
|
document.body.classList.add("theme-light"); |
|
document.documentElement.classList.toggle("invert"); |
|
} else { |
|
document.body.classList.add("theme-dark"); |
|
} |
|
} |
|
|
|
function setLight() { |
|
document.documentElement.classList.toggle("invert"); |
|
document.body.classList.remove("theme-dark"); |
|
document.body.classList.add("theme-light"); |
|
localStorage.setItem(themeKey, "light"); |
|
} |
|
|
|
function setDark() { |
|
document.documentElement.classList.toggle("invert"); |
|
document.body.classList.remove("theme-light"); |
|
document.body.classList.add("theme-dark"); |
|
localStorage.setItem(themeKey, "dark"); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
function showPrompts(e) { |
|
if (Rag.prompts.length == 0) return; |
|
const text = Rag.prompts |
|
.map((x, i) => { |
|
return `[${i + 1}]${x}\n`; |
|
}) |
|
.join("\n"); |
|
wnds.wpre.show(text); |
|
} |
|
|