107 lines
No EOL
4.4 KiB
JavaScript
107 lines
No EOL
4.4 KiB
JavaScript
/*
|
|
* ThunderAI [https://micz.it/thunderbird-addon-thunderai/]
|
|
* Copyright (C) 2024 Mic (m@micz.it)
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*
|
|
*
|
|
* This file contains a modified version of the code from the project at https://github.com/boxabirds/chatgpt-frontend-nobuild
|
|
* The original code has been released under the Apache License, Version 2.0.
|
|
*/
|
|
|
|
import { Ollama } from '../js/api/ollama.js';
|
|
|
|
let ollama_host = null;
|
|
let ollama_model = '';
|
|
let ollama = null;
|
|
|
|
let conversationHistory = [];
|
|
let assistantResponseAccumulator = '';
|
|
|
|
self.onmessage = async function(event) {
|
|
if (event.data.type === 'init') {
|
|
ollama_host = event.data.ollama_host;
|
|
ollama_model = event.data.ollama_model;
|
|
//console.log(">>>>>>>>>>> ollama_host: " + ollama_host);
|
|
ollama = new Ollama(ollama_host, ollama_model, true);
|
|
} else if (event.data.type === 'chatMessage') {
|
|
conversationHistory.push({ role: 'user', content: event.data.message });
|
|
|
|
const response = await ollama.fetchResponse(conversationHistory); //4096);
|
|
postMessage({ type: 'messageSent' });
|
|
|
|
if (!response.ok) {
|
|
let error_message = '';
|
|
let errorDetail = '';
|
|
if(response.is_exception === true){
|
|
error_message = response.error;
|
|
}else{
|
|
const errorJSON = await response.json();
|
|
errorDetail = JSON.stringify(errorJSON);
|
|
error_message = errorJSON.error;
|
|
//console.log(">>>>>>>>>>>>> errorJSON.error.message: " + JSON.stringify(errorJSON.error.message));
|
|
}
|
|
postMessage({ type: 'error', payload: "Ollama API request failed: " + error_message });
|
|
throw new Error("[ThunderAI] Ollama API request failed: " + response.status + " " + response.statusText + ", Detail: " + errorDetail);
|
|
}
|
|
|
|
const reader = response.body.getReader();
|
|
const decoder = new TextDecoder("utf-8");
|
|
|
|
while (true) {
|
|
const { done, value } = await reader.read();
|
|
if (done) {
|
|
conversationHistory.push({ role: 'assistant', content: assistantResponseAccumulator });
|
|
assistantResponseAccumulator = '';
|
|
postMessage({ type: 'tokensDone' });
|
|
break;
|
|
}
|
|
// lots of low-level Ollama response parsing stuff
|
|
const chunk = decoder.decode(value); console.log(">>>>>>>>>>>>> chunk: " + chunk);
|
|
const lines = chunk.split("\n");
|
|
const parsedLines = lines
|
|
.map((line) => line.replace(/^chunk: /, "").trim()) // Remove the "chunk: " prefix
|
|
.filter((line) => line !== "" && line !== "[DONE]") // Remove empty lines and "[DONE]"
|
|
.map((line) => JSON.parse(line)); // Parse the JSON string
|
|
|
|
for (const parsedLine of parsedLines) {
|
|
const { response } = parsedLine;
|
|
// Update the UI with the new content
|
|
if (response) {
|
|
assistantResponseAccumulator += response;
|
|
postMessage({ type: 'newToken', payload: { token: response } });
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
function parsePartialResponse(responseText) {
|
|
// Logica di parsing dei dati parziali
|
|
// Potresti voler spezzare i chunk in linee o altri delimitatori
|
|
const lines = responseText.split("\n");
|
|
|
|
// Filtro le linee valide e faccio il parsing di ogni linea JSON
|
|
return lines
|
|
.filter(line => line.trim().length > 0)
|
|
.map(line => {
|
|
try {
|
|
return JSON.parse(line);
|
|
} catch (e) {
|
|
console.warn('Error parsing line:', line);
|
|
return null;
|
|
}
|
|
})
|
|
.filter(parsed => parsed !== null);
|
|
} |