-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
60 lines (54 loc) · 1.86 KB
/
background.js
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
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
console.log('Mensaje recibido:', request);
if (request.action === "copyText") {
chrome.tabs.query({active: true, currentWindow: true}, tabs => {
chrome.scripting.executeScript({
target: {tabId: tabs[0].id},
function: functionToGetSelectedText
}, (results) => {
if (results && results[0]) {
console.log('Texto copiado:', results[0].result);
sendResponse({texto: results[0].result});
} else {
console.error('No se pudo ejecutar el script');
}
});
});
}
return true; // Devuelve true para indicar que responderás de forma asíncrona
});
function functionToGetSelectedText() {
return window.getSelection().toString();
}
// background.js
const API_KEY = "API_KEY_HERE";
async function getCompletion(texto) {
const respuesta = await fetch(`https://api.openai.com/v1/chat/completions`, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${API_KEY}`,
},
body: JSON.stringify({
model: "gpt-3.5-turbo",
"messages": [
{ "role": "system",
"content": "You are a information verifier."
},
{
"role": "user",
"content": "Verifica la siguiente afirmación: " + texto + ". Indica si es verdadera o falsa y adjunta una fuente de respaldo. No añadas ninguna explicación.",
}
]
}),
});
return respuesta.json();
}
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
if (request.action == "getCompletion") {
getCompletion(request.texto).then(data => {
sendResponse({ message: data });
});
}
return true; // Devuelve true para indicar que responderás de forma asíncrona
});