-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
188 lines (164 loc) · 8.21 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
<!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="stylesheet" href="style.css">
<script src="Config/config.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<div class="container">
<h1>PeeKaboo?</h1>
<div class="search-wrapper">
<form id="searchForm">
<div class="search-container">
<input type="text" id="searchInput" name="q" placeholder="Enter your query..." required>
<button type="submit"><i class="fas fa-search"></i></button>
</div>
<div class="control-group">
<label class="checkbox-container">
<input type="checkbox" id="showImagesCheckbox" checked>
<span class="checkmark"></span>
<span>Show Images</span>
</label>
</div>
<div class="suggestions">
<span class="question">Global climate change impact</span>
<span class="question">AI advancements in healthcare</span>
<span class="question">Space exploration milestones</span>
<span class="question">Emerging infectious diseases</span>
</div>
</form>
</div>
<div class="images-container" id="imagesContainer">
<h3>Image Results</h3>
<div class="images-scroll"></div>
</div>
<div id="results" class="results-container">
<h3>News Results</h3>
</div>
<div id="summary" class="summary-container">
<h3>Summary</h3>
</div>
<footer>© 2024 PeeKaboo | Powered by Illuminati</footer>
</div>
<script>
(function() {
const API = {
async checkConnection() {
try {
await fetch('https://www.google.com', { mode: 'no-cors' });
return true;
} catch {
return false;
}
},
async searchTavily(query) {
const response = await fetch('https://api.tavily.com/search', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
api_key: CONFIG.TAVILY_API_KEY,
query: query,
max_results: 10,
search_depth: "news"
})
});
if (!response.ok) throw new Error(`Tavily request failed: ${response.status}`);
const data = await response.json();
return data.results || [];
},
async searchImages(query) {
const response = await fetch(
`https://www.googleapis.com/customsearch/v1?key=${CONFIG.GOOGLE_API_KEY}&cx=${CONFIG.GOOGLE_SEARCH_ENGINE_ID}&q=${query}&searchType=image&num=4`
);
if (!response.ok) throw new Error(`Image search failed: ${response.status}`);
const data = await response.json();
return data.items || [];
},
async getGroqSummary(query, context) {
const response = await fetch("https://api.groq.com/openai/v1/chat/completions", {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${CONFIG.GROQ_API_KEY}`,
},
body: JSON.stringify({
model: "mixtral-8x7b-32768",
messages: [
{ role: "system", content: context },
{ role: "user", content: query }
],
temperature: 0.7,
max_tokens: 3000,
})
});
return response.json();
}
};
function setupUI() {
const searchForm = document.getElementById("searchForm");
const searchInput = document.getElementById("searchInput");
const showImagesCheckbox = document.getElementById("showImagesCheckbox");
document.querySelectorAll('.question').forEach(q => {
q.addEventListener('click', () => searchInput.value = q.textContent);
});
searchForm.addEventListener("submit", handleSearch);
}
async function handleSearch(e) {
e.preventDefault();
const resultsDiv = document.getElementById("results");
const imagesContainer = document.getElementById("imagesContainer");
const summaryDiv = document.getElementById("summary");
const showImages = document.getElementById("showImagesCheckbox").checked;
try {
resultsDiv.innerHTML = '<p class="loading">Processing query...</p>';
imagesContainer.innerHTML = '';
summaryDiv.innerHTML = '';
const isOnline = await API.checkConnection();
if (!isOnline) throw new Error('No internet connection');
const query = searchInput.value + " News";
const [searchResults, imageResults] = await Promise.all([
API.searchTavily(query),
showImages ? API.searchImages(query) : []
]);
if (showImages && imageResults.length > 0) {
imagesContainer.innerHTML = '<h3>Image Results:</h3><div class="images-scroll">' +
imageResults.map(image => `
<div class="image-item">
<img src="${image.link}" alt="News Image" onerror="this.src='placeholder.jpg'">
</div>
`).join('') + '</div>';
}
displayResults(searchResults);
const context = buildGroqContext(searchResults, imageResults);
const summary = await API.getGroqSummary(query, context);
summaryDiv.innerHTML = `<h3>Summary:</h3><p>${summary.choices[0].message.content}</p>`;
} catch (error) {
resultsDiv.innerHTML = `<p class="error">Error: ${error.message}</p>`;
}
}
function displayResults(results) {
const resultsDiv = document.getElementById("results");
resultsDiv.innerHTML = '<h3>News Results:</h3>' + results.map(result => `
<div class="news-result">
<h4><a href="${result.url}" target="_blank">${result.title}</a></h4>
<p>${result.snippet || result.content}</p>
</div>
`).join('');
}
function buildGroqContext(snippets, images) {
const baseContext = `Provide:
1. A detailed, comprehensive answer (300+ words) that is accurate, engaging, and informative.
2. Image Descriptions section describing how each image relates to the topic.`;
const snippetsText = snippets.map((s, i) => `[${i + 1}] ${s.snippet}`).join('\n\n');
const imageContext = images.map((_, i) => `Image ${i + 1}: [Description pending]`).join('\n');
return `${baseContext}\n\n${snippetsText}\n\n${imageContext}`;
}
document.addEventListener("DOMContentLoaded", setupUI);
})();
</script>
</body>
</html>