File size: 18,502 Bytes
a1a0b7b |
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 379 380 381 382 383 384 385 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChatGPT Clone</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Montserrat', sans-serif;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Typing indicator animation */
@keyframes typing {
0% { opacity: 0.5; }
50% { opacity: 1; }
100% { opacity: 0.5; }
}
.typing-indicator span {
animation: typing 1.5s infinite;
}
.typing-indicator span:nth-child(2) {
animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
animation-delay: 0.4s;
}
/* Message fade-in animation */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.message {
animation: fadeIn 0.3s ease-out;
}
</style>
</head>
<body class="bg-gray-50 h-screen flex flex-col">
<!-- Header -->
<header class="bg-white border-b border-gray-200 py-3 px-4 flex items-center justify-between">
<div class="flex items-center">
<div class="w-8 h-8 rounded-full bg-green-500 flex items-center justify-center text-white font-bold mr-2">AI</div>
<h1 class="text-lg font-semibold">ChatGPT</h1>
</div>
<div class="flex space-x-3">
<button class="text-gray-500 hover:text-gray-700">
<i class="fas fa-sun"></i>
</button>
<button class="text-gray-500 hover:text-gray-700">
<i class="fas fa-cog"></i>
</button>
</div>
</header>
<!-- Chat container -->
<div class="flex-1 overflow-y-auto p-4 space-y-6" id="chat-container">
<!-- Welcome message -->
<div class="message max-w-3xl mx-auto bg-white rounded-lg p-4 shadow-sm">
<div class="flex items-start space-x-3">
<div class="w-8 h-8 rounded-full bg-green-500 flex items-center justify-center text-white font-bold flex-shrink-0">AI</div>
<div>
<h3 class="font-semibold">ChatGPT</h3>
<p class="text-gray-700 mt-1">Hello! I'm ChatGPT, an AI assistant. How can I help you today?</p>
<div class="mt-3 grid grid-cols-1 md:grid-cols-2 gap-2">
<button class="suggestion-btn bg-gray-100 hover:bg-gray-200 text-gray-800 py-2 px-3 rounded-md text-sm text-left transition">
"Explain quantum computing in simple terms"
</button>
<button class="suggestion-btn bg-gray-100 hover:bg-gray-200 text-gray-800 py-2 px-3 rounded-md text-sm text-left transition">
"Give me creative ideas for a 10-year-old's birthday"
</button>
<button class="suggestion-btn bg-gray-100 hover:bg-gray-200 text-gray-800 py-2 px-3 rounded-md text-sm text-left transition">
"How do I make an HTTP request in JavaScript?"
</button>
<button class="suggestion-btn bg-gray-100 hover:bg-gray-200 text-gray-800 py-2 px-3 rounded-md text-sm text-left transition">
"Write a poem about artificial intelligence"
</button>
</div>
</div>
</div>
</div>
</div>
<!-- Recording overlay -->
<div id="recording-overlay" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center hidden z-50">
<div class="bg-white rounded-lg p-6 max-w-sm w-full text-center">
<div class="flex justify-center mb-4">
<div class="w-16 h-16 rounded-full bg-red-500 flex items-center justify-center animate-pulse">
<i class="fas fa-microphone text-white text-2xl"></i>
</div>
</div>
<h3 class="text-lg font-semibold mb-2">Recording...</h3>
<p class="text-gray-600 mb-4">Speak now. Click stop when finished.</p>
<button id="stop-recording" class="bg-red-500 hover:bg-red-600 text-white py-2 px-4 rounded-md">
Stop Recording
</button>
</div>
</div>
<!-- Mic button area -->
<div class="bg-white border-t border-gray-200 p-6 flex flex-col items-center">
<button id="mic-button" class="w-16 h-16 rounded-full bg-green-500 hover:bg-green-600 text-white flex items-center justify-center transition-all transform hover:scale-105">
<i class="fas fa-microphone text-2xl"></i>
</button>
<p id="recording-status" class="text-sm text-gray-500 mt-2 hidden">Listening...</p>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const chatForm = document.getElementById('chat-form');
const messageInput = document.getElementById('message-input');
const chatContainer = document.getElementById('chat-container');
const sendButton = document.getElementById('send-button');
const micButton = document.getElementById('mic-button');
const recordingOverlay = document.getElementById('recording-overlay');
const stopRecordingBtn = document.getElementById('stop-recording');
let isRecording = false;
// Speech recognition setup
const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition;
const recognition = new SpeechRecognition();
recognition.continuous = false;
recognition.interimResults = false;
recognition.lang = 'en-US';
// Handle mic button click
micButton.addEventListener('click', toggleSpeechRecognition);
function toggleSpeechRecognition() {
if (isRecording) {
stopSpeechRecognition();
} else {
startSpeechRecognition();
}
}
function startSpeechRecognition() {
try {
recognition.start();
isRecording = true;
document.getElementById('recording-status').classList.remove('hidden');
recordingOverlay.classList.remove('hidden');
micButton.classList.add('animate-pulse', 'bg-red-500', 'hover:bg-red-600');
micButton.classList.remove('bg-green-500', 'hover:bg-green-600');
// Show visual feedback
micButton.innerHTML = '<i class="fas fa-stop text-2xl"></i>';
} catch (err) {
console.error('Speech recognition error:', err);
addMessageToChat('ai', "Couldn't access microphone. Please check permissions and try again.");
resetMicButton();
}
}
function stopSpeechRecognition() {
try {
recognition.stop();
} catch (e) {
console.log('Recognition already stopped');
}
resetMicButton();
}
function resetMicButton() {
isRecording = false;
document.getElementById('recording-status').classList.add('hidden');
recordingOverlay.classList.add('hidden');
micButton.classList.remove('animate-pulse', 'bg-red-500', 'hover:bg-red-600');
micButton.classList.add('bg-green-500', 'hover:bg-green-600');
micButton.innerHTML = '<i class="fas fa-microphone text-2xl"></i>';
}
recognition.onresult = async (event) => {
const transcript = event.results[0][0].transcript;
stopSpeechRecognition();
// Show processing indicator
showTypingIndicator();
// Add user message to chat
addMessageToChat('user', transcript);
// Generate and play response using the API
await generateAndPlayResponse(transcript);
};
recognition.onerror = (event) => {
console.error('Speech recognition error:', event.error);
let errorMessage = "Sorry, I couldn't understand your speech. Please try again.";
switch(event.error) {
case 'no-speech':
errorMessage = "No speech detected. Please try speaking louder or closer to the microphone.";
break;
case 'audio-capture':
errorMessage = "Couldn't access microphone. Please check your microphone settings.";
break;
case 'not-allowed':
errorMessage = "Microphone access was denied. Please enable microphone permissions.";
break;
}
resetMicButton();
addMessageToChat('ai', errorMessage);
};
recognition.onend = () => {
if (isRecording) {
stopSpeechRecognition();
}
};
stopRecordingBtn.addEventListener('click', function() {
if (mediaRecorder && isRecording) {
mediaRecorder.stop();
isRecording = false;
}
});
// Handle suggestion buttons
document.querySelectorAll('.suggestion-btn').forEach(button => {
button.addEventListener('click', function() {
messageInput.value = this.textContent.trim();
messageInput.focus();
messageInput.dispatchEvent(new Event('input'));
});
});
async function generateAndPlayResponse(message) {
try {
// Generate response
const response = generateResponse(message);
// Remove typing indicator
removeTypingIndicator();
// Add AI response to chat
addMessageToChat('ai', response);
// Call the text-to-speech API
const response = await fetch('https://nihalgazi-text-to-speech-unlimited.hf.space/gradio_api/call/text_to_speech_app', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
data: [
response, // Text to speak
"alloy", // Voice model
"", // Empty string (not sure what this is for)
true, // Streaming
3 // Quality level
]
})
});
const data = await response.json();
const eventId = data.data[0];
// Stream the audio response
const audioStream = await fetch(`https://nihalgazi-text-to-speech-unlimited.hf.space/gradio_api/call/text_to_speech_app/${eventId}`);
const audioBlob = await audioStream.blob();
const audioUrl = URL.createObjectURL(audioBlob);
const audio = new Audio(audioUrl);
audio.play();
// Scroll to bottom
scrollToBottom();
} catch (error) {
console.error('Error generating response:', error);
removeTypingIndicator();
addMessageToChat('ai', "Sorry, I encountered an error processing your request.");
scrollToBottom();
}
}
function addMessageToChat(sender, message) {
const messageDiv = document.createElement('div');
messageDiv.className = 'message max-w-3xl mx-auto bg-white rounded-lg p-4 shadow-sm';
if (sender === 'user') {
messageDiv.innerHTML = `
<div class="flex items-start space-x-3 justify-end">
<div class="text-right">
<p class="text-gray-700">${message}</p>
</div>
<div class="w-8 h-8 rounded-full bg-blue-500 flex items-center justify-center text-white font-bold flex-shrink-0">Y</div>
</div>
`;
} else {
messageDiv.innerHTML = `
<div class="flex items-start space-x-3">
<div class="w-8 h-8 rounded-full bg-green-500 flex items-center justify-center text-white font-bold flex-shrink-0">AI</div>
<div>
<h3 class="font-semibold">ChatGPT</h3>
<p class="text-gray-700 mt-1">${message}</p>
</div>
</div>
`;
}
chatContainer.appendChild(messageDiv);
}
function showTypingIndicator() {
const typingDiv = document.createElement('div');
typingDiv.className = 'message max-w-3xl mx-auto';
typingDiv.id = 'typing-indicator';
typingDiv.innerHTML = `
<div class="flex items-start space-x-3">
<div class="w-8 h-8 rounded-full bg-green-500 flex items-center justify-center text-white font-bold flex-shrink-0">AI</div>
<div class="typing-indicator bg-white rounded-lg p-4 shadow-sm">
<span class="inline-block w-2 h-2 bg-gray-400 rounded-full mx-0.5"></span>
<span class="inline-block w-2 h-2 bg-gray-400 rounded-full mx-0.5"></span>
<span class="inline-block w-2 h-2 bg-gray-400 rounded-full mx-0.5"></span>
</div>
</div>
`;
chatContainer.appendChild(typingDiv);
}
function removeTypingIndicator() {
const typingIndicator = document.getElementById('typing-indicator');
if (typingIndicator) {
typingIndicator.remove();
}
}
function scrollToBottom() {
chatContainer.scrollTop = chatContainer.scrollHeight;
}
function generateResponse(message) {
// Simple response generation - in a real app, this would call an API
const responses = [
"I understand you're asking about: " + message + ". Here's what I can tell you about that topic...",
"That's an interesting question! " + message + " is something that can be explored from multiple perspectives...",
"Regarding " + message + ", I'd be happy to help. The key points to consider are...",
"I've analyzed your query about " + message + " and here's my response...",
message + " is a fascinating subject. Let me break it down for you..."
];
const randomResponse = responses[Math.floor(Math.random() * responses.length)];
// Sometimes add a follow-up question
if (Math.random() > 0.5) {
const followUps = [
" Would you like me to go into more detail about any specific aspect?",
" Did that answer your question or would you like more information?",
" I can provide examples if that would be helpful. Would you like some?",
" Is there anything else related to this you'd like to know?"
];
return randomResponse + followUps[Math.floor(Math.random() * followUps.length)];
}
return randomResponse;
}
// Focus input on page load
messageInput.focus();
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Kamocodes/k" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |