2024-05-21 17:18:47 +08:00
|
|
|
var rebuildRules = undefined;
|
|
|
|
if (typeof chrome !== "undefined" && chrome.runtime && chrome.runtime.id) {
|
|
|
|
rebuildRules = async function (domain) {
|
|
|
|
const domains = [domain];
|
|
|
|
/** @type {chrome.declarativeNetRequest.Rule[]} */
|
|
|
|
const rules = [{
|
|
|
|
id: 1,
|
|
|
|
condition: {
|
|
|
|
requestDomains: domains
|
|
|
|
},
|
|
|
|
action: {
|
|
|
|
type: 'modifyHeaders',
|
|
|
|
requestHeaders: [{
|
|
|
|
header: 'origin',
|
|
|
|
operation: 'set',
|
|
|
|
value: `http://${domain}`,
|
|
|
|
}],
|
|
|
|
},
|
|
|
|
}];
|
|
|
|
await chrome.declarativeNetRequest.updateDynamicRules({
|
|
|
|
removeRuleIds: rules.map(r => r.id),
|
|
|
|
addRules: rules,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var ollama_host = localStorage.getItem("host-address");
|
|
|
|
if (!ollama_host){
|
|
|
|
ollama_host = 'http://localhost:11434'
|
|
|
|
} else {
|
|
|
|
document.getElementById("host-address").value = ollama_host;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ollama_system_prompt = localStorage.getItem("system-prompt");
|
|
|
|
if (ollama_system_prompt){
|
|
|
|
document.getElementById("system-prompt").value = ollama_system_prompt;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rebuildRules){
|
|
|
|
rebuildRules(ollama_host);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setHostAddress(){
|
|
|
|
ollama_host = document.getElementById("host-address").value;
|
|
|
|
localStorage.setItem("host-address", ollama_host);
|
|
|
|
populateModels();
|
|
|
|
if (rebuildRules){
|
|
|
|
rebuildRules(ollama_host);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function setSystemPrompt(){
|
|
|
|
const systemPrompt = document.getElementById("system-prompt").value;
|
|
|
|
localStorage.setItem("system-prompt", systemPrompt);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async function getModels(){
|
2024-05-21 18:31:32 +08:00
|
|
|
// const response = await fetch(`${ollama_host}/api/tags`);
|
|
|
|
// const data = await response.json();
|
|
|
|
// return data;
|
|
|
|
return undefined;
|
2024-05-21 17:18:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Function to send a POST request to the API
|
|
|
|
function postRequest(data, signal) {
|
|
|
|
// const URL = `${ollama_host}/api/generate`;
|
|
|
|
const URL = `https://openrouter.ai/api/v1/chat/completions`;
|
2024-05-21 18:31:32 +08:00
|
|
|
const body = JSON.stringify({model: "google/gemma-7b-it:free", messages: [{role: "user", content: data.prompt}]});
|
|
|
|
// alert(body)
|
2024-05-21 17:18:47 +08:00
|
|
|
return fetch(URL, {
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
'Authorization': 'Bearer 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'
|
|
|
|
},
|
|
|
|
// body: JSON.stringify(data),
|
|
|
|
body: body,
|
|
|
|
signal: signal
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Function to stream the response from the server
|
|
|
|
async function getResponse(response, callback) {
|
|
|
|
const reader = response.body.getReader();
|
|
|
|
let partialLine = '';
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
const { done, value } = await reader.read();
|
|
|
|
if (done) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Decode the received value and split by lines
|
|
|
|
const textChunk = new TextDecoder().decode(value);
|
|
|
|
const lines = (partialLine + textChunk).split('\n');
|
|
|
|
partialLine = lines.pop(); // The last line might be incomplete
|
|
|
|
|
|
|
|
for (const line of lines) {
|
|
|
|
if (line.trim() === '') continue;
|
|
|
|
const parsedResponse = JSON.parse(line);
|
|
|
|
callback(parsedResponse); // Process each response word
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle any remaining line
|
|
|
|
if (partialLine.trim() !== '') {
|
|
|
|
const parsedResponse = JSON.parse(partialLine);
|
|
|
|
callback(parsedResponse);
|
|
|
|
}
|
|
|
|
}
|