File size: 6,965 Bytes
c0bb696 d287a0a c0bb696 0fbb0a0 60ada88 c0bb696 63657af d287a0a 63657af c0bb696 b570a90 c0bb696 b570a90 c0bb696 60ada88 c0bb696 b570a90 92d5c53 b570a90 c0bb696 b570a90 60ada88 c0bb696 98b4260 c0bb696 60ada88 988e84f c0bb696 63657af c0bb696 b570a90 c0bb696 b570a90 c0bb696 0fbb0a0 c0bb696 63657af 0fbb0a0 c0bb696 b570a90 c0bb696 b570a90 c0bb696 b570a90 c0bb696 b570a90 c0bb696 b570a90 c0bb696 b570a90 d287a0a c0bb696 b570a90 c0bb696 b570a90 c0bb696 |
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 289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
/** @format */
/**
* @license
* rag_rqs
* Copyright (C) 2024 [Il tuo nome]
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
"use strict";
const VERS = "0.1.58 (02-12-2024)";
var xlog = console.log;
var xerror = console.error;
// let T0 = {};
// var start_performance = function (k) {
// T0.k = performance.now();
// };
// var log_performance = function (k, msg = "") {
// const t1 = performance.now();
// const d = t1 - T0.k;
// console.log(msg, d);
// T0.k = t1;
// return d;
// };
// function showMessage(message, duraction = 5000) {
// const popup = document.createElement("div");
// popup.className = "msg";
// popup.innerText = message;
// document.body.appendChild(popup);
// setTimeout(function () {
// document.body.removeChild(popup);
// }, duraction);
// }
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();
}, 10);
}
// function openApp() {
// tm = umgm();
// wnds.init();
// Menu.init();
// TextInput.init();
// TextOutput.init();
// Rag.init();
// document.querySelector(".menu-btn").checked = false;
// release();
// showHistory();
// }
// Visualizza la storia della conversazione
function showHistory() {
const txt = ThreadMgr.getThread();
setOutText(txt);
// const p = document.querySelector("#id-text-out .pre-text");
// p.textContent = txt;
// setTimeout(() => {
// p.scrollTop = p.scrollHeight;
// }, 0);
}
function release() {
document.querySelector(".release").innerHTML = VERS;
}
// README
const op0 = async function (e) {
const text = await requestGet("./help1.html");
wnds.wdiv.show(text);
};
//query iniziale
function showQuery(e) {
const txt = `\n${Rag.ragQuery}`;
wnds.wpre.show(txt);
// Menu.close();
}
//Risposta Rsg
function showRagResponse(e) {
const txt = `\n${Rag.ragAnswer}`;
wnds.wpre.show(txt);
}
//conversazione
function showThread(e) {
const txt = ThreadMgr.getThread();
wnds.wpre.show(txt);
}
//elenco risposte
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) => {
// x = subResponseDOcTag(x);
return `\n[${i + 1}]\n ${x.trim()}`;
})
.join("\n");
wnds.wpre.show(text);
}
//contesto
function showContesto(e) {
const txt = `${Rag.ragContext}`;
wnds.wpre.show(txt);
}
//elemco dati
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);
}
//visualizza docuemnto
const showT = (n) => {
const arr = DataMgr.docs;
const s = arr[n];
wnds.wpre.show(s);
};
// elenco e visualizzazione documenti
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}`);
}
//calcolo query
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);
}
//cancella dati
function deleteDati(e) {
const ok = confirm("Confermi cancellazione dati?");
if (ok) {
DataMgr.deleteJsonDati();
wnds.wdiv.close();
wnds.wpre.close();
TextOutput.clear();
}
}
//cancella localstrage
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 = [];
}
}
//documenti di esempio nella dir ./data
async function help1(e) {
const text = await requestGet("./data/help_test.html");
wnds.wdiv.show(text);
}
//lettura files di esempio invocata dalla pagina ./data/help_test.html
function loadTestoEsempio(name) {
const link = `data/${name}`;
DataMgr.loadDoc(link);
wnds.wdiv.close();
}
//domande di esempio
async function help2(e) {
const text = await requestGet("./help2.html");
wnds.wdiv.show(text);
}
function getTheme() {
const t = localStorage.getItem("theme");
if (!!t && t == "dark") setDark();
}
function setLight() {
document.documentElement.classList.toggle("invert");
document.body.classList.remove("theme-dark");
document.body.classList.add("theme-light");
localStorage.setItem("theme", "ligth");
}
function setDark() {
document.documentElement.classList.toggle("invert");
document.body.classList.remove("theme-light");
document.body.classList.add("theme-dark");
localStorage.setItem("theme", "dark");
}
////////////////////////////////
// Solo Sviluppo
//prompts
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);
}
|