-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
378 lines (345 loc) · 13.4 KB
/
index.html
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PeeKaboo?</title>
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<style>
/* General reset */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/* Font Import */
@font-face {
font-family: 'VT323';
src: url('https://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2isfFJU.woff2') format('woff2');
}
/* Body styling */
body {
font-family: 'VT323', 'Courier New', monospace;
background-color: #000;
background-size: 800px 449px; /* Adjust the size to zoom in while repeating */
background-repeat: repeat; /* Keep the image repeating */
background-attachment: scroll;
background-position: top left;
color: #FFDA44;
display: flex;
flex-direction: column;
padding: 20px;
line-height: 1.6;
min-height: 100vh;
overflow: auto;
}
/* Container styling */
.container {
position: relative;
z-index: 1;
background-color: rgba(0, 0, 0, 0.8);
border: 1px solid #FFDA44;
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
max-width: 1000px;
width: 100%;
margin: 0 auto;
overflow-y: auto;
}
/* Header styling */
h1 {
text-align: center;
color: #FFDA44;
font-size: 2.5em;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(255, 140, 0, 0.5);
}
/* Form styling */
#searchForm {
display: flex;
margin-bottom: 15px;
}
/* Input, button, and select styling */
input, button, select {
background-color: #000;
color: #FFDA44;
border: 1px solid #FFDA44;
font-family: inherit;
font-size: 1em;
padding: 10px;
}
input {
flex: 1;
margin-right: 10px;
border-radius: 5px 0 0 5px;
}
select {
margin-right: 10px;
}
button {
border-radius: 0 5px 5px 0;
cursor: pointer;
transition: all 0.3s ease;
}
input:focus, button:focus, select:focus {
outline: none;
box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
}
button:hover {
background-color: #FFDA44;
color: #000;
}
/* Suggestions styling */
#suggestions {
margin-bottom: 15px;
display: flex;
flex-wrap: wrap;
gap: 5px;
}
.question {
display: inline-block;
margin: 2px;
padding: 3px 8px;
background-color: #1A1A1A;
color: #FFDA44;
border: 1px solid #FFDA44;
border-radius: 12px;
cursor: pointer;
font-size: 0.9em;
transition: all 0.3s ease;
}
.question:hover {
background-color: #FFDA44;
color: #000;
}
/* Results and images styling */
#results {
background-color: #0A0A0A;
border: 1px solid #FFDA44;
border-radius: 5px;
padding: 15px;
display: flex;
overflow-x: auto;
white-space: nowrap;
height: 200px;
}
#results img {
flex: 0 0 200px;
height: 100%;
object-fit: cover;
margin-right: 5px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}
/* Summary styling */
#summary {
font-size: 1em;
line-height: 1.6;
padding: 10px 0;
white-space: normal;
}
/* Metadata and footer styling */
#metadata {
margin-top: 15px;
font-size: 0.8em;
color: #666;
}
footer {
text-align: center;
margin-top: 20px;
font-size: 0.8em;
color: #666;
}
</style>
<script src="Config/config.js"></script>
</head>
<body>
<div class="container">
<h1>PeeKaboo?</h1>
<form id="searchForm">
<input type="text" id="searchInput" name="q" placeholder="Enter your query..." required>
<button type="submit">EXECUTE</button>
</form>
<div id="suggestions"></div>
<div id="results"></div>
<div id="summary"></div>
<div id="metadata"></div>
<footer>
© 2024 PeeKaboo | Powered by Illuminati
</footer>
</div>
<script>
function typeWriterFromJSON(jsonData, element, speed = 5) {
const content = jsonData.choices[0].message.content;
const sentences = content.split('\n\n');
element.innerHTML = '';
let i = 0;
let j = 0;
let currentSentence = '';
let isTyping = false;
function type() {
if (i < sentences.length) {
if (!isTyping) {
currentSentence = sentences[i];
isTyping = true;
// Create a new paragraph element
const p = document.createElement('p');
element.appendChild(p);
}
const p = element.lastElementChild;
const char = currentSentence.charAt(j);
p.innerHTML += char;
j++;
if (j >= currentSentence.length) {
j = 0;
i++;
isTyping = false;
setTimeout(type, speed * 2);
} else {
requestAnimationFrame(type);
}
} else {
const images = jsonData.images;
if (images && images.length) {
images.forEach((img, index) => {
const imgElement = document.createElement('img');
imgElement.src = img.url;
imgElement.alt = `Image ${index + 1}`;
imgElement.style.display = 'block';
imgElement.style.marginTop = '10px';
element.appendChild(imgElement);
});
}
}
}
type();
}
document.getElementById('searchForm').addEventListener('submit', function(e) {
e.preventDefault();
const query = document.getElementById('searchInput').value;
const results = document.getElementById('results');
const summary = document.getElementById('summary');
const metadata = document.getElementById('metadata');
results.innerHTML = 'Processing query...';
summary.textContent = '';
metadata.textContent = '';
function searchWithGoogle(query, numSources = 15) {
const url = `https://www.googleapis.com/customsearch/v1?key=${CONFIG.GOOGLE_API_KEY}&cx=${CONFIG.GOOGLE_SEARCH_ENGINE_ID}&q=${encodeURIComponent(query)}&num=${numSources}`;
return fetch(url)
.then(response => response.json())
.then(data => {
if (data.items) {
return data.items.map(item => ({
url: item.link,
snippet: item.snippet || '',
}));
}
return [];
});
}
function searchImagesWithGoogle(query, numImages = 4) {
const url = `https://www.googleapis.com/customsearch/v1?key=${CONFIG.GOOGLE_API_KEY}&cx=${CONFIG.GOOGLE_SEARCH_ENGINE_ID}&q=${encodeURIComponent(query)}&num=${numImages}&searchType=image`;
return fetch(url)
.then(response => response.json())
.then(data => {
if (data.items) {
return data.items.map(item => ({
url: item.link,
}));
}
return [];
});
}
function getSnippetsForPrompt(snippets) {
return snippets.map((s, i) => `[citation:${i + 1}] ${s.snippet}`).join('\n\n');
}
function setupGetAnswerPrompt(snippets, images) {
const startingContext = `Answer all this
1. A detailed, paragraphed, comprehensive answer to the question. It must be accurate, high-quality, and expertly written in a positive, interesting, and engaging manner. The answer should be informative and in the same language as the user question. Aim for at least 300 words in your response.
2. After your main answer, provide a section titled "Image Descriptions" where you describe how each of the provided images relates to the topic. Use the format: "Image X: [Brief description and relevance to the topic]"
For all parts of your response, you will be provided with a set of citations to the question. Each will start with a reference number like [citation:x], where x is a number. Always use the related citations and cite the citation at the end of each sentence in the format [citation:x]. If a sentence comes from multiple citations, please list all applicable citations, like [citation:2][citation:3].
Here are the provided citations:`;
const imageContext = "\nHere are descriptions of relevant images:\n" +
images.map((_, index) => `Image ${index + 1}: [Brief description and relevance to the topic]`).join('\n');
const finalContext = "Use the provided information to create a comprehensive and engaging response.";
return `${startingContext}\n\n${getSnippetsForPrompt(snippets)}\n\n${imageContext}\n\n${finalContext}`;
}
function requestGroq(query, context, maxTokens = 3000, model = "mixtral-8x7b-32768", temperature = 0.7) {
const GROQ_ENDPOINT = "https://api.groq.com/openai/v1/chat/completions";
const requestBody = {
model: model,
messages: [
{ role: "system", content: context },
{ role: "user", content: query }
],
temperature: temperature,
max_tokens: maxTokens,
};
return fetch(GROQ_ENDPOINT, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${CONFIG.GROQ_API_KEY}`,
},
body: JSON.stringify(requestBody),
})
.then(response => response.json());
}
Promise.all([searchWithGoogle(query), searchImagesWithGoogle(query)])
.then(([snippets, images]) => {
results.innerHTML = '';
if (images.length > 0) {
images.forEach(image => {
const img = document.createElement('img');
img.src = image.url;
img.alt = 'Image';
img.style.width = 'auto';
img.style.flex = '1 1 auto';
results.appendChild(img);
});
} else {
results.textContent = 'No images found.';
}
const answerPromptContext = setupGetAnswerPrompt(snippets, images);
return requestGroq(query, answerPromptContext);
})
.then(data => {
console.log('Raw data:', data);
summary.innerHTML = `<h2>${query}</h2>`;
const summaryContent = document.createElement('div');
summary.appendChild(summaryContent);
let content = '';
if (data.choices && data.choices[0] && data.choices[0].message) {
content = data.choices[0].message.content;
} else if (data.error) {
content = `Error: ${data.error.message}`;
} else {
content = 'No summary available.';
}
typeWriterFromJSON({ choices: [{ message: { content: content } }] }, summaryContent);
metadata.innerHTML = '<h2>Metadata</h2>';
metadata.innerHTML += `<p>Query: ${query}</p>`;
metadata.innerHTML += `<p>Model: mixtral-8x7b-32768</p>`;
})
.catch(error => {
console.error('Error:', error);
results.textContent = `An error occurred while processing your query: ${error.message}`;
});
});
const questions = [
"What is today's breaking news?",
"Trends in computer science technology",
"Software Testing Methods",
"Why is interstellar the best movie?"
];
const suggestionsHtml = questions.map(q => `<span class="question">${q}</span>`).join('');
document.getElementById('suggestions').innerHTML = suggestionsHtml;
document.querySelectorAll('.question').forEach(q => {
q.addEventListener('click', function() {
document.getElementById('searchInput').value = this.textContent;
});
});
</script>
</body>
</html>