-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask_01.js
80 lines (64 loc) · 2.25 KB
/
task_01.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import fetch from 'node-fetch';
import OpenAI from 'openai';
import dotenv from 'dotenv';
dotenv.config();
const openai = new OpenAI({
apiKey: process.env.OPENAI_API_KEY
});
async function askAI(question) {
try {
const completion = await openai.chat.completions.create({
model: "gpt-3.5-turbo",
messages: [
{
role: "system",
content: "Jesteś pomocnym asystentem. Odpowiadaj konkretnie i krótko bez zbędnych znaków'."
},
{
role: "user",
content: question
}
],
temperature: 0.1 // Niska temperatura dla bardziej precyzyjnych odpowiedzi
});
return completion.choices[0].message.content.trim();
} catch (error) {
console.error("Błąd podczas pytania AI:", error);
return null;
}
}
async function main() {
try {
// 1. Pobierz pytanie ze strony
const response = await fetch("https://xyz.ag3nts.org/");
const pageContent = await response.text();
// Wyciągnij pytanie z HTML
const questionMatch = pageContent.match(/id="human-question">Question:<br \/>(.*?)<\/p>/);
if (!questionMatch) {
console.error("Nie udało się znaleźć pytania na stronie");
return;
}
const questionText = questionMatch[1];
console.log("Pytanie:", questionText);
// 2. Zapytaj AI o odpowiedź
const answer = await askAI(questionText);
if (!answer) {
console.error("Nie otrzymano odpowiedzi od AI");
return;
}
console.log("Odpowiedź AI:", answer);
// 3. Wyślij odpowiedź
const post_response = await fetch("https://xyz.ag3nts.org/", {
method: "POST",
headers: {
"content-type": "application/x-www-form-urlencoded",
},
body: `username=tester&password=574e112a&answer=${encodeURIComponent(answer)}`
});
const result = await post_response.text();
console.log("Odpowiedź serwera:", result);
} catch (error) {
console.error("Wystąpił błąd:", error);
}
}
main();