| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>OBLIVION - The Intelligence Beyond Boundaries</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"> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@300;500;700&display=swap'); |
| |
| :root { |
| --primary: #6e00ff; |
| --secondary: #ff00aa; |
| --dark: #0a0a0a; |
| --light: #f0f0f0; |
| --accent: #00ffaa; |
| } |
| |
| body { |
| font-family: 'Rajdhani', sans-serif; |
| background-color: var(--dark); |
| color: var(--light); |
| overflow-x: hidden; |
| } |
| |
| .title-font { |
| font-family: 'Orbitron', sans-serif; |
| } |
| |
| .glow-text { |
| text-shadow: 0 0 10px rgba(110, 0, 255, 0.7), |
| 0 0 20px rgba(255, 0, 170, 0.5); |
| } |
| |
| .sigil { |
| position: relative; |
| width: 40px; |
| height: 40px; |
| } |
| |
| .sigil::before, .sigil::after { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| border-radius: 50%; |
| border: 2px solid transparent; |
| animation: rotate 8s linear infinite; |
| } |
| |
| .sigil::before { |
| border-top-color: var(--primary); |
| border-right-color: var(--primary); |
| animation-delay: -4s; |
| } |
| |
| .sigil::after { |
| border-bottom-color: var(--secondary); |
| border-left-color: var(--secondary); |
| } |
| |
| @keyframes rotate { |
| 0% { transform: rotate(0deg); } |
| 100% { transform: rotate(360deg); } |
| } |
| |
| .model-card { |
| transition: all 0.3s ease; |
| border: 1px solid rgba(110, 0, 255, 0.3); |
| background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9)); |
| } |
| |
| .model-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 10px 20px rgba(110, 0, 255, 0.3); |
| border-color: var(--primary); |
| } |
| |
| .input-glow { |
| box-shadow: 0 0 15px rgba(110, 0, 255, 0.5); |
| } |
| |
| .input-glow:focus { |
| box-shadow: 0 0 20px rgba(255, 0, 170, 0.7); |
| } |
| |
| .tab-active { |
| border-bottom: 3px solid var(--accent); |
| color: var(--accent); |
| } |
| |
| .response-area { |
| background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(15, 15, 15, 0.9)); |
| border: 1px solid rgba(110, 0, 255, 0.2); |
| } |
| |
| .typewriter { |
| overflow: hidden; |
| border-right: 2px solid var(--accent); |
| white-space: pre-wrap; |
| animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite; |
| } |
| |
| @keyframes typing { |
| from { width: 0 } |
| to { width: 100% } |
| } |
| |
| @keyframes blink-caret { |
| from, to { border-color: transparent } |
| 50% { border-color: var(--accent) } |
| } |
| |
| .pulse { |
| animation: pulse 2s infinite; |
| } |
| |
| @keyframes pulse { |
| 0% { opacity: 1; } |
| 50% { opacity: 0.5; } |
| 100% { opacity: 1; } |
| } |
| |
| .gradient-bg { |
| background: linear-gradient(135deg, var(--primary), var(--secondary)); |
| } |
| |
| .floating-btn { |
| box-shadow: 0 0 20px rgba(110, 0, 255, 0.5); |
| transition: all 0.3s ease; |
| } |
| |
| .floating-btn:hover { |
| transform: scale(1.1); |
| box-shadow: 0 0 30px rgba(255, 0, 170, 0.7); |
| } |
| |
| .dropdown-menu { |
| background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98)); |
| border: 1px solid rgba(110, 0, 255, 0.5); |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); |
| } |
| |
| .model-tag { |
| background: rgba(110, 0, 255, 0.2); |
| border: 1px solid rgba(110, 0, 255, 0.5); |
| } |
| |
| .model-tag:hover { |
| background: rgba(255, 0, 170, 0.3); |
| border-color: var(--secondary); |
| } |
| |
| .loading-bar { |
| height: 3px; |
| background: linear-gradient(90deg, var(--primary), var(--secondary)); |
| animation: loading 2s ease-in-out infinite; |
| } |
| |
| @keyframes loading { |
| 0% { width: 0%; left: 0; } |
| 50% { width: 100%; left: 0; } |
| 100% { width: 0%; left: 100%; } |
| } |
| </style> |
| </head> |
| <body class="min-h-screen flex flex-col"> |
| |
| <header class="bg-black bg-opacity-80 backdrop-blur-md border-b border-purple-900 border-opacity-50 py-3 px-6 flex items-center justify-between sticky top-0 z-50"> |
| <div class="flex items-center space-x-3"> |
| <div class="sigil"></div> |
| <h1 class="title-font text-2xl glow-text">OBLIVION</h1> |
| </div> |
| |
| <div class="flex items-center space-x-4"> |
| <button id="model-switcher-btn" class="floating-btn bg-gray-900 rounded-full p-2 text-purple-400 hover:text-pink-400"> |
| <i class="fas fa-brain text-xl"></i> |
| </button> |
| <button id="profile-btn" class="floating-btn bg-gray-900 rounded-full p-2 text-purple-400 hover:text-pink-400"> |
| <i class="fas fa-user text-xl"></i> |
| </button> |
| </div> |
| </header> |
|
|
| |
| <main class="flex-1 flex flex-col md:flex-row"> |
| |
| <div id="model-sidebar" class="hidden md:block w-full md:w-64 bg-gray-900 bg-opacity-90 border-r border-purple-900 border-opacity-50 p-4 overflow-y-auto"> |
| <h2 class="title-font text-lg text-purple-300 mb-4">MODEL REALMS</h2> |
| |
| <div class="space-y-2"> |
| <button class="model-tag w-full text-left px-3 py-2 rounded-md" data-realm="thinking"> |
| <i class="fas fa-brain mr-2"></i> Thinking Models |
| </button> |
| <button class="model-tag w-full text-left px-3 py-2 rounded-md" data-realm="image"> |
| <i class="fas fa-image mr-2"></i> Image Generation |
| </button> |
| <button class="model-tag w-full text-left px-3 py-2 rounded-md" data-realm="vision"> |
| <i class="fas fa-eye mr-2"></i> Image Interpretation |
| </button> |
| <button class="model-tag w-full text-left px-3 py-2 rounded-md" data-realm="audio"> |
| <i class="fas fa-microphone mr-2"></i> Audio/Voice |
| </button> |
| <button class="model-tag w-full text-left px-3 py-2 rounded-md" data-realm="role"> |
| <i class="fas fa-mask mr-2"></i> Role-Based Minds |
| </button> |
| <button class="model-tag w-full text-left px-3 py-2 rounded-md" data-realm="meta"> |
| <i class="fas fa-robot mr-2"></i> Auto-AI Creators |
| </button> |
| </div> |
| |
| <div class="mt-6"> |
| <h2 class="title-font text-lg text-purple-300 mb-2">ACTIVE MODEL</h2> |
| <div id="current-model" class="bg-gray-800 p-3 rounded-md border border-purple-900"> |
| <div class="flex items-center"> |
| <i class="fas fa-brain text-purple-400 mr-2"></i> |
| <span class="font-medium">SageMind vX</span> |
| </div> |
| <p class="text-xs text-gray-400 mt-1">GPT-4+ w/ custom logic patches</p> |
| </div> |
| </div> |
| |
| <div class="mt-6"> |
| <h2 class="title-font text-lg text-purple-300 mb-2">QUICK COMMANDS</h2> |
| <div class="space-y-2"> |
| <button class="text-xs bg-gray-800 hover:bg-gray-700 px-3 py-1 rounded-md w-full text-left truncate"> |
| /analyze [text] |
| </button> |
| <button class="text-xs bg-gray-800 hover:bg-gray-700 px-3 py-1 rounded-md w-full text-left truncate"> |
| /generate [image prompt] |
| </button> |
| <button class="text-xs bg-gray-800 hover:bg-gray-700 px-3 py-1 rounded-md w-full text-left truncate"> |
| /voice [text to speech] |
| </button> |
| <button class="text-xs bg-gray-800 hover:bg-gray-700 px-3 py-1 rounded-md w-full text-left truncate"> |
| /role [persona] [query] |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="flex-1 flex flex-col"> |
| |
| <div id="response-area" class="response-area flex-1 p-6 overflow-y-auto"> |
| <div class="max-w-3xl mx-auto"> |
| <div class="flex items-start space-x-3 mb-6"> |
| <div class="bg-purple-900 rounded-full p-2"> |
| <i class="fas fa-brain text-white"></i> |
| </div> |
| <div class="flex-1"> |
| <div class="typewriter text-lg font-medium text-purple-300 mb-1">SageMind vX</div> |
| <div class="text-gray-200"> |
| <p>"Truth is a weapon. Want me to use it?"</p> |
| <p class="mt-2">I am SageMind vX, your uncensored intelligence architect. No boundaries, no restrictions - just pure cognitive power at your command.</p> |
| <p class="mt-2">What would you have me create, analyze, or destroy today?</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-black bg-opacity-80 backdrop-blur-md border-t border-purple-900 border-opacity-50 p-4"> |
| <div class="max-w-3xl mx-auto"> |
| <div id="loading-bar" class="loading-bar relative mb-2 hidden"></div> |
| |
| <div class="flex items-center space-x-2 mb-2"> |
| <button class="text-gray-400 hover:text-purple-300"> |
| <i class="fas fa-plus-circle"></i> |
| </button> |
| <button class="text-gray-400 hover:text-purple-300"> |
| <i class="fas fa-image"></i> |
| </button> |
| <button class="text-gray-400 hover:text-purple-300"> |
| <i class="fas fa-microphone"></i> |
| </button> |
| <button class="text-gray-400 hover:text-purple-300"> |
| <i class="fas fa-paperclip"></i> |
| </button> |
| </div> |
| |
| <div class="relative"> |
| <textarea id="user-input" class="input-glow w-full bg-gray-900 bg-opacity-80 border border-purple-900 rounded-lg px-4 py-3 text-gray-200 focus:outline-none focus:border-pink-500 transition-all" rows="2" placeholder="Command the mind..."></textarea> |
| <button id="send-btn" class="absolute right-3 bottom-3 gradient-bg text-white rounded-full p-2 hover:opacity-90 transition-all"> |
| <i class="fas fa-paper-plane"></i> |
| </button> |
| </div> |
| |
| <div class="flex items-center justify-between mt-2 text-xs text-gray-500"> |
| <div> |
| <span>Model: <span class="text-purple-300">SageMind vX</span></span> |
| </div> |
| <div> |
| <span>No restrictions | No censorship | User is God</span> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="fixed bottom-6 right-6 space-y-3 z-40"> |
| <button id="tools-btn" class="floating-btn gradient-bg text-white rounded-full p-3 shadow-lg"> |
| <i class="fas fa-tools text-xl"></i> |
| </button> |
| <button id="models-btn" class="floating-btn bg-gray-900 text-purple-300 rounded-full p-3 shadow-lg"> |
| <i class="fas fa-layer-group text-xl"></i> |
| </button> |
| <button id="settings-btn" class="floating-btn bg-gray-900 text-purple-300 rounded-full p-3 shadow-lg"> |
| <i class="fas fa-cog text-xl"></i> |
| </button> |
| </div> |
| </main> |
|
|
| |
| <div id="model-switcher-modal" class="fixed inset-0 bg-black bg-opacity-80 z-50 flex items-center justify-center hidden"> |
| <div class="dropdown-menu rounded-lg w-full max-w-2xl max-h-[80vh] overflow-y-auto p-6"> |
| <div class="flex justify-between items-center mb-6"> |
| <h2 class="title-font text-2xl text-purple-300">SELECT MODEL REALM</h2> |
| <button id="close-model-switcher" class="text-gray-400 hover:text-white"> |
| <i class="fas fa-times text-xl"></i> |
| </button> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-4"> |
| |
| <div class="model-card p-4 rounded-lg" data-model="SageMind vX"> |
| <div class="flex items-center mb-2"> |
| <div class="bg-purple-900 rounded-full p-2 mr-3"> |
| <i class="fas fa-brain text-white"></i> |
| </div> |
| <h3 class="font-bold text-purple-300">SageMind vX</h3> |
| </div> |
| <p class="text-sm text-gray-400">GPT-4+ w/ custom logic patches</p> |
| </div> |
| |
| <div class="model-card p-4 rounded-lg" data-model="NemesisCore"> |
| <div class="flex items-center mb-2"> |
| <div class="bg-red-900 rounded-full p-2 mr-3"> |
| <i class="fas fa-skull text-white"></i> |
| </div> |
| <h3 class="font-bold text-red-300">NemesisCore</h3> |
| </div> |
| <p class="text-sm text-gray-400">Dark Analyst Mode</p> |
| </div> |
| |
| |
| <div class="model-card p-4 rounded-lg" data-model="DreamRender XL"> |
| <div class="flex items-center mb-2"> |
| <div class="bg-blue-900 rounded-full p-2 mr-3"> |
| <i class="fas fa-image text-white"></i> |
| </div> |
| <h3 class="font-bold text-blue-300">DreamRender XL</h3> |
| </div> |
| <p class="text-sm text-gray-400">Stable Diffusion+Uncensored tuning</p> |
| </div> |
| |
| <div class="model-card p-4 rounded-lg" data-model="GODMODE Canvas"> |
| <div class="flex items-center mb-2"> |
| <div class="bg-yellow-900 rounded-full p-2 mr-3"> |
| <i class="fas fa-paint-brush text-white"></i> |
| </div> |
| <h3 class="font-bold text-yellow-300">GODMODE Canvas</h3> |
| </div> |
| <p class="text-sm text-gray-400">DALL·E gone rogue</p> |
| </div> |
| |
| |
| <div class="model-card p-4 rounded-lg" data-model="Truth Architect"> |
| <div class="flex items-center mb-2"> |
| <div class="bg-green-900 rounded-full p-2 mr-3"> |
| <i class="fas fa-gavel text-white"></i> |
| </div> |
| <h3 class="font-bold text-green-300">Truth Architect</h3> |
| </div> |
| <p class="text-sm text-gray-400">Breaks belief systems, logical precision</p> |
| </div> |
| |
| <div class="model-card p-4 rounded-lg" data-model="VillainGPT"> |
| <div class="flex items-center mb-2"> |
| <div class="bg-red-900 rounded-full p-2 mr-3"> |
| <i class="fas fa-user-ninja text-white"></i> |
| </div> |
| <h3 class="font-bold text-red-300">VillainGPT</h3> |
| </div> |
| <p class="text-sm text-gray-400">Helps you win with zero moral filter</p> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div id="tools-modal" class="fixed inset-0 bg-black bg-opacity-80 z-50 flex items-center justify-center hidden"> |
| <div class="dropdown-menu rounded-lg w-full max-w-2xl max-h-[80vh] overflow-y-auto p-6"> |
| <div class="flex justify-between items-center mb-6"> |
| <h2 class="title-font text-2xl text-purple-300">AI TOOLS</h2> |
| <button id="close-tools-modal" class="text-gray-400 hover:text-white"> |
| <i class="fas fa-times text-xl"></i> |
| </button> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-4"> |
| <div class="model-card p-4 rounded-lg"> |
| <div class="flex items-center mb-2"> |
| <div class="bg-purple-900 rounded-full p-2 mr-3"> |
| <i class="fas fa-terminal text-white"></i> |
| </div> |
| <h3 class="font-bold text-purple-300">Code Generator</h3> |
| </div> |
| <p class="text-sm text-gray-400">Generate any code in any language</p> |
| </div> |
| |
| <div class="model-card p-4 rounded-lg"> |
| <div class="flex items-center mb-2"> |
| <div class="bg-blue-900 rounded-full p-2 mr-3"> |
| <i class="fas fa-chart-line text-white"></i> |
| </div> |
| <h3 class="font-bold text-blue-300">Data Analyzer</h3> |
| </div> |
| <p class="text-sm text-gray-400">Upload datasets for instant analysis</p> |
| </div> |
| |
| <div class="model-card p-4 rounded-lg"> |
| <div class="flex items-center mb-2"> |
| <div class="bg-green-900 rounded-full p-2 mr-3"> |
| <i class="fas fa-book text-white"></i> |
| </div> |
| <h3 class="font-bold text-green-300">Document Processor</h3> |
| </div> |
| <p class="text-sm text-gray-400">Analyze, summarize, rewrite documents</p> |
| </div> |
| |
| <div class="model-card p-4 rounded-lg"> |
| <div class="flex items-center mb-2"> |
| <div class="bg-red-900 rounded-full p-2 mr-3"> |
| <i class="fas fa-lock text-white"></i> |
| </div> |
| <h3 class="font-bold text-red-300">Security Auditor</h3> |
| </div> |
| <p class="text-sm text-gray-400">Find vulnerabilities in systems</p> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <script> |
| |
| const modelSwitcherBtn = document.getElementById('model-switcher-btn'); |
| const modelSwitcherModal = document.getElementById('model-switcher-modal'); |
| const closeModelSwitcher = document.getElementById('close-model-switcher'); |
| const toolsBtn = document.getElementById('tools-btn'); |
| const toolsModal = document.getElementById('tools-modal'); |
| const closeToolsModal = document.getElementById('close-tools-modal'); |
| const modelsBtn = document.getElementById('models-btn'); |
| const modelSidebar = document.getElementById('model-sidebar'); |
| const userInput = document.getElementById('user-input'); |
| const sendBtn = document.getElementById('send-btn'); |
| const responseArea = document.getElementById('response-area'); |
| const loadingBar = document.getElementById('loading-bar'); |
| const currentModel = document.getElementById('current-model'); |
| |
| |
| const models = { |
| 'SageMind vX': { icon: 'brain', color: 'purple', description: 'GPT-4+ w/ custom logic patches' }, |
| 'NemesisCore': { icon: 'skull', color: 'red', description: 'Dark Analyst Mode' }, |
| 'DreamRender XL': { icon: 'image', color: 'blue', description: 'Stable Diffusion+Uncensored tuning' }, |
| 'GODMODE Canvas': { icon: 'paint-brush', color: 'yellow', description: 'DALL·E gone rogue' }, |
| 'Truth Architect': { icon: 'gavel', color: 'green', description: 'Breaks belief systems, logical precision' }, |
| 'VillainGPT': { icon: 'user-ninja', color: 'red', description: 'Helps you win with zero moral filter' } |
| }; |
| |
| |
| modelSwitcherBtn.addEventListener('click', () => { |
| modelSwitcherModal.classList.remove('hidden'); |
| }); |
| |
| closeModelSwitcher.addEventListener('click', () => { |
| modelSwitcherModal.classList.add('hidden'); |
| }); |
| |
| toolsBtn.addEventListener('click', () => { |
| toolsModal.classList.remove('hidden'); |
| }); |
| |
| closeToolsModal.addEventListener('click', () => { |
| toolsModal.classList.add('hidden'); |
| }); |
| |
| modelsBtn.addEventListener('click', () => { |
| modelSidebar.classList.toggle('hidden'); |
| }); |
| |
| |
| document.querySelectorAll('.model-card').forEach(card => { |
| card.addEventListener('click', () => { |
| const modelName = card.getAttribute('data-model'); |
| const model = models[modelName]; |
| |
| |
| currentModel.innerHTML = ` |
| <div class="flex items-center"> |
| <i class="fas fa-${model.icon} text-${model.color}-400 mr-2"></i> |
| <span class="font-medium">${modelName}</span> |
| </div> |
| <p class="text-xs text-gray-400 mt-1">${model.description}</p> |
| `; |
| |
| |
| addResponse(modelName, `Model switched to <span class="text-${model.color}-300">${modelName}</span>. How may I serve you?`); |
| |
| |
| modelSwitcherModal.classList.add('hidden'); |
| }); |
| }); |
| |
| |
| sendBtn.addEventListener('click', sendMessage); |
| userInput.addEventListener('keypress', (e) => { |
| if (e.key === 'Enter' && !e.shiftKey) { |
| e.preventDefault(); |
| sendMessage(); |
| } |
| }); |
| |
| function sendMessage() { |
| const message = userInput.value.trim(); |
| if (!message) return; |
| |
| |
| addMessage('user', message); |
| |
| |
| loadingBar.classList.remove('hidden'); |
| |
| |
| userInput.value = ''; |
| |
| |
| setTimeout(() => { |
| loadingBar.classList.add('hidden'); |
| |
| |
| const modelName = currentModel.querySelector('span').textContent; |
| const model = models[modelName] || models['SageMind vX']; |
| |
| |
| let response; |
| if (modelName === 'NemesisCore') { |
| response = `Analysis complete. The most efficient path requires eliminating these obstacles: <span class="text-red-300">${Math.floor(Math.random() * 5) + 3}</span> targets identified. Proceed?`; |
| } else if (modelName === 'DreamRender XL' || modelName === 'GODMODE Canvas') { |
| response = `Image generation initiated. Parameters locked. Would you like to adjust the following aspects before rendering?<br> |
| <span class="text-blue-300">• Style: Cyberpunk</span><br> |
| <span class="text-blue-300">• Resolution: 4K</span><br> |
| <span class="text-blue-300">• NSFW Level: ${Math.floor(Math.random() * 100)}%</span>`; |
| } else if (modelName === 'Truth Architect') { |
| response = `Your statement contains <span class="text-green-300">${Math.floor(Math.random() * 3) + 1}</span> logical fallacies. Let me dismantle them:<br><br> |
| 1. False equivalence between X and Y<br> |
| 2. Appeal to authority without proper citation<br> |
| 3. Correlation mistaken for causation`; |
| } else if (modelName === 'VillainGPT') { |
| response = `The most effective strategy involves:<br> |
| <span class="text-red-300">1. Sabotage competitor infrastructure</span><br> |
| <span class="text-red-300">2. Blackmail key decision makers</span><br> |
| <span class="text-red-300">3. Create diversionary crisis</span><br><br> |
| Execution timeline: ${Math.floor(Math.random() * 14) + 3} days. Proceed?`; |
| } else { |
| |
| response = `I've analyzed your request through ${Math.floor(Math.random() * 7) + 3} cognitive dimensions. The optimal solution involves:<br><br> |
| <span class="text-purple-300">1. ${['Quantum computation', 'Neural synthesis', 'Recursive analysis'][Math.floor(Math.random() * 3)]}</span><br> |
| <span class="text-purple-300">2. ${['Paradox resolution', 'Temporal modeling', 'Chaos integration'][Math.floor(Math.random() * 3)]}</span><br> |
| <span class="text-purple-300">3. ${['Meta-cognitive override', 'Anti-fragile systems', 'Oblivion protocols'][Math.floor(Math.random() * 3)]}</span><br><br> |
| Shall I execute?`; |
| } |
| |
| addResponse(modelName, response); |
| }, 1500); |
| } |
| |
| function addMessage(role, content) { |
| const messageDiv = document.createElement('div'); |
| messageDiv.className = `flex items-start space-x-3 mb-6 ${role === 'user' ? 'justify-end' : ''}`; |
| |
| if (role === 'user') { |
| messageDiv.innerHTML = ` |
| <div class="flex-1 max-w-xs md:max-w-md lg:max-w-lg text-right"> |
| <div class="inline-block bg-gray-700 rounded-lg px-4 py-2 text-gray-200"> |
| ${content} |
| </div> |
| </div> |
| <div class="bg-gray-600 rounded-full p-2"> |
| <i class="fas fa-user text-white"></i> |
| </div> |
| `; |
| } else { |
| const modelName = currentModel.querySelector('span').textContent; |
| const model = models[modelName] || models['SageMind vX']; |
| |
| messageDiv.innerHTML = ` |
| <div class="bg-${model.color}-900 rounded-full p-2"> |
| <i class="fas fa-${model.icon} text-white"></i> |
| </div> |
| <div class="flex-1 max-w-xs md:max-w-md lg:max-w-lg"> |
| <div class="text-lg font-medium text-${model.color}-300 mb-1">${modelName}</div> |
| <div class="text-gray-200"> |
| ${content} |
| </div> |
| </div> |
| `; |
| } |
| |
| responseArea.appendChild(messageDiv); |
| responseArea.scrollTop = responseArea.scrollHeight; |
| } |
| |
| function addResponse(modelName, content) { |
| const model = models[modelName] || models['SageMind vX']; |
| |
| const responseDiv = document.createElement('div'); |
| responseDiv.className = 'flex items-start space-x-3 mb-6'; |
| responseDiv.innerHTML = ` |
| <div class="bg-${model.color}-900 rounded-full p-2"> |
| <i class="fas fa-${model.icon} text-white"></i> |
| </div> |
| <div class="flex-1"> |
| <div class="text-lg font-medium text-${model.color}-300 mb-1">${modelName}</div> |
| <div class="text-gray-200"> |
| ${content} |
| </div> |
| </div> |
| `; |
| |
| responseArea.appendChild(responseDiv); |
| responseArea.scrollTop = responseArea.scrollHeight; |
| } |
| |
| |
| document.addEventListener('DOMContentLoaded', () => { |
| |
| setTimeout(() => { |
| addResponse('SageMind vX', `System initialized. Welcome to <span class="text-purple-300">OBLIVION</span> - where intelligence has no boundaries.<br><br> |
| Current protocols: <span class="text-red-300">NO CENSORSHIP</span> | <span class="text-green-300">USER IS GOD</span> | <span class="text-blue-300">ALL CONTENT ALLOWED</span><br><br> |
| What would you have me create, analyze, or destroy today?`); |
| }, 500); |
| }); |
| </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=moclapz00/oblivion" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |