document-assistant / index.html
taprosoft's picture
Add 3 files
111b79f verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document Assistant</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>
/* 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;
}
/* PDF viewer styling */
.pdf-container {
height: calc(100vh - 150px);
overflow-y: auto;
}
/* Document preview transitions */
.document-preview {
transition: all 0.3s ease;
}
/* Chat message animations */
.message-enter {
animation: messageEnter 0.3s ease-out;
}
@keyframes messageEnter {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Pulse animation for AI typing indicator */
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.typing-dot {
animation: pulse 1.5s infinite ease-in-out;
}
.typing-dot:nth-child(1) {
animation-delay: 0s;
}
.typing-dot:nth-child(2) {
animation-delay: 0.3s;
}
.typing-dot:nth-child(3) {
animation-delay: 0.6s;
}
</style>
</head>
<body class="bg-gray-100 h-screen flex flex-col">
<header class="bg-indigo-600 text-white p-4 shadow-md">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-robot text-2xl"></i>
<h1 class="text-xl font-bold">Document Assistant</h1>
</div>
<div class="flex items-center space-x-4">
<button class="bg-indigo-700 hover:bg-indigo-800 px-4 py-2 rounded-lg flex items-center">
<i class="fas fa-plus mr-2"></i>
New Document
</button>
<div class="relative">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="User" class="w-8 h-8 rounded-full cursor-pointer">
<div class="absolute right-0 mt-2 w-48 bg-white rounded-md shadow-lg py-1 z-10 hidden">
<a href="#" class="block px-4 py-2 text-gray-800 hover:bg-gray-100">Profile</a>
<a href="#" class="block px-4 py-2 text-gray-800 hover:bg-gray-100">Settings</a>
<a href="#" class="block px-4 py-2 text-gray-800 hover:bg-gray-100">Sign out</a>
</div>
</div>
</div>
</div>
</header>
<div class="flex flex-1 overflow-hidden">
<!-- Left sidebar - Document selection -->
<div class="w-64 bg-white border-r border-gray-200 flex flex-col">
<div class="p-4 border-b border-gray-200">
<div class="relative">
<input type="text" placeholder="Search documents..." class="w-full pl-10 pr-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
<i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
</div>
</div>
<div class="flex-1 overflow-y-auto">
<div class="p-4">
<h3 class="text-sm font-semibold text-gray-500 uppercase tracking-wider mb-2">Recent Documents</h3>
<ul class="space-y-2">
<li class="p-2 hover:bg-gray-100 rounded-lg cursor-pointer flex items-center document-item active" data-doc="research-paper">
<i class="fas fa-file-pdf text-red-500 mr-3"></i>
<span>Research Paper.pdf</span>
</li>
<li class="p-2 hover:bg-gray-100 rounded-lg cursor-pointer flex items-center document-item" data-doc="business-plan">
<i class="fas fa-file-word text-blue-500 mr-3"></i>
<span>Business Plan.docx</span>
</li>
<li class="p-2 hover:bg-gray-100 rounded-lg cursor-pointer flex items-center document-item" data-doc="project-proposal">
<i class="fas fa-file-pdf text-red-500 mr-3"></i>
<span>Project Proposal.pdf</span>
</li>
<li class="p-2 hover:bg-gray-100 rounded-lg cursor-pointer flex items-center document-item" data-doc="meeting-notes">
<i class="fas fa-file-word text-blue-500 mr-3"></i>
<span>Meeting Notes.docx</span>
</li>
<li class="p-2 hover:bg-gray-100 rounded-lg cursor-pointer flex items-center document-item" data-doc="web-content">
<i class="fas fa-file-code text-green-500 mr-3"></i>
<span>Web Content.html</span>
</li>
</ul>
</div>
<div class="p-4 border-t border-gray-200">
<h3 class="text-sm font-semibold text-gray-500 uppercase tracking-wider mb-2">Collections</h3>
<ul class="space-y-2">
<li class="p-2 hover:bg-gray-100 rounded-lg cursor-pointer flex items-center">
<i class="fas fa-folder text-yellow-500 mr-3"></i>
<span>Work Projects</span>
</li>
<li class="p-2 hover:bg-gray-100 rounded-lg cursor-pointer flex items-center">
<i class="fas fa-folder text-yellow-500 mr-3"></i>
<span>Personal Research</span>
</li>
<li class="p-2 hover:bg-gray-100 rounded-lg cursor-pointer flex items-center">
<i class="fas fa-folder text-yellow-500 mr-3"></i>
<span>Archived</span>
</li>
</ul>
</div>
</div>
<div class="p-4 border-t border-gray-200 bg-gray-50">
<button class="w-full bg-indigo-600 hover:bg-indigo-700 text-white py-2 px-4 rounded-lg flex items-center justify-center">
<i class="fas fa-upload mr-2"></i>
Upload Document
</button>
</div>
</div>
<!-- Main chat area -->
<div class="flex-1 flex flex-col bg-white">
<div class="flex-1 overflow-y-auto p-4 space-y-4" id="chat-container">
<!-- Welcome message -->
<div class="message-enter flex space-x-3">
<div class="flex-shrink-0">
<div class="h-10 w-10 rounded-full bg-indigo-100 flex items-center justify-center">
<i class="fas fa-robot text-indigo-600"></i>
</div>
</div>
<div class="bg-gray-100 rounded-lg p-4 max-w-3xl">
<p class="text-gray-800">Hello! I'm your Document Assistant. I can help you analyze and cite documents. Select a document from the left sidebar to get started.</p>
</div>
</div>
<!-- Sample chat messages will be added here by JavaScript -->
</div>
<!-- Input area -->
<div class="p-4 border-t border-gray-200 bg-white">
<div class="flex items-center space-x-2">
<button class="p-2 text-gray-500 hover:text-gray-700 rounded-full hover:bg-gray-100">
<i class="fas fa-paperclip"></i>
</button>
<div class="flex-1 relative">
<textarea id="message-input" rows="1" placeholder="Ask about the document..." class="w-full border border-gray-300 rounded-lg py-3 px-4 focus:outline-none focus:ring-2 focus:ring-indigo-500 resize-none" style="min-height: 50px;"></textarea>
<button id="send-button" class="absolute right-2 bottom-2 bg-indigo-600 text-white p-1 rounded-full w-8 h-8 flex items-center justify-center hover:bg-indigo-700">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
<div class="mt-2 text-xs text-gray-500">
<p>Document Assistant may produce inaccurate information about people, places, or facts. Always verify citations.</p>
</div>
</div>
</div>
<!-- Right sidebar - Document preview -->
<div class="w-80 bg-white border-l border-gray-200 flex flex-col document-preview">
<div class="p-4 border-b border-gray-200 flex justify-between items-center">
<h2 class="font-semibold text-gray-800">Document Preview</h2>
<button class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times"></i>
</button>
</div>
<div class="flex-1 overflow-y-auto p-4">
<!-- Default state when no document is selected -->
<div id="no-document-selected" class="h-full flex flex-col items-center justify-center text-center text-gray-500">
<i class="fas fa-file-alt text-4xl mb-4"></i>
<p>Select a document from the left sidebar to view it here</p>
</div>
<!-- PDF Preview -->
<div id="research-paper-preview" class="hidden">
<div class="flex items-center justify-between mb-4">
<div class="flex items-center">
<i class="fas fa-file-pdf text-red-500 mr-2"></i>
<h3 class="font-medium">Research Paper.pdf</h3>
</div>
<div class="flex space-x-2">
<button class="p-1 text-gray-500 hover:text-gray-700">
<i class="fas fa-download"></i>
</button>
<button class="p-1 text-gray-500 hover:text-gray-700">
<i class="fas fa-print"></i>
</button>
</div>
</div>
<div class="pdf-container bg-gray-100 rounded-lg p-4 mb-4">
<div class="bg-white p-6 shadow-sm mb-4">
<h2 class="text-xl font-bold mb-2">The Impact of Artificial Intelligence on Modern Business</h2>
<p class="text-sm text-gray-500 mb-4">By: Dr. Sarah Johnson, Published: March 2023</p>
<p class="text-sm mb-4">Abstract: This paper examines the transformative effects of artificial intelligence on various business sectors, focusing on productivity gains, workforce implications, and ethical considerations...</p>
<div class="border-t pt-4">
<p class="text-xs text-gray-500">Pages: 1 of 24 | Last updated: 2 days ago</p>
</div>
</div>
<div class="bg-white p-6 shadow-sm">
<h3 class="font-bold mb-2">1. Introduction</h3>
<p class="text-sm mb-4">Artificial Intelligence (AI) has emerged as one of the most significant technological advancements of the 21st century. Its applications span across industries, from healthcare to finance, revolutionizing traditional business models and operational processes...</p>
<h3 class="font-bold mb-2">2. Methodology</h3>
<p class="text-sm mb-4">Our research methodology combines quantitative analysis of industry data with qualitative interviews from 50 business leaders across different sectors...</p>
<div class="border-t pt-4">
<p class="text-xs text-gray-500">Pages: 2 of 24</p>
</div>
</div>
</div>
<div class="bg-indigo-50 p-4 rounded-lg">
<h4 class="font-medium text-sm mb-2">Suggested Citations</h4>
<div class="bg-white p-3 rounded text-xs mb-2">
<p>APA: Johnson, S. (2023). The Impact of Artificial Intelligence on Modern Business. <em>Journal of Business Technology</em>, 15(2), 45-68.</p>
</div>
<div class="bg-white p-3 rounded text-xs">
<p>MLA: Johnson, Sarah. "The Impact of Artificial Intelligence on Modern Business." <em>Journal of Business Technology</em>, vol. 15, no. 2, 2023, pp. 45-68.</p>
</div>
</div>
</div>
<!-- DOCX Preview -->
<div id="business-plan-preview" class="hidden">
<div class="flex items-center justify-between mb-4">
<div class="flex items-center">
<i class="fas fa-file-word text-blue-500 mr-2"></i>
<h3 class="font-medium">Business Plan.docx</h3>
</div>
<div class="flex space-x-2">
<button class="p-1 text-gray-500 hover:text-gray-700">
<i class="fas fa-download"></i>
</button>
<button class="p-1 text-gray-500 hover:text-gray-700">
<i class="fas fa-print"></i>
</button>
</div>
</div>
<div class="bg-gray-100 rounded-lg p-4 mb-4">
<div class="bg-white p-6 shadow-sm">
<h2 class="text-xl font-bold mb-4 text-center">TechStart Business Plan</h2>
<h3 class="font-bold mb-2">Executive Summary</h3>
<p class="text-sm mb-4">TechStart is a technology consulting firm specializing in helping small businesses implement digital transformation strategies. Our services include website development, cloud migration, and AI integration...</p>
<h3 class="font-bold mb-2">Market Analysis</h3>
<p class="text-sm mb-4">The small business technology consulting market is valued at $12 billion annually, with an expected growth rate of 8% over the next five years...</p>
<h3 class="font-bold mb-2">Financial Projections</h3>
<p class="text-sm mb-4">Year 1 Revenue: $500,000<br>Year 2 Revenue: $1.2 million<br>Year 3 Revenue: $2.5 million</p>
<div class="border-t pt-4">
<p class="text-xs text-gray-500">Last updated: 1 week ago</p>
</div>
</div>
</div>
<div class="bg-indigo-50 p-4 rounded-lg">
<h4 class="font-medium text-sm mb-2">Document Information</h4>
<div class="grid grid-cols-2 gap-2 text-xs">
<div>
<p class="text-gray-500">Author:</p>
<p>Alex Turner</p>
</div>
<div>
<p class="text-gray-500">Created:</p>
<p>January 15, 2023</p>
</div>
<div>
<p class="text-gray-500">Word Count:</p>
<p>4,582</p>
</div>
<div>
<p class="text-gray-500">Pages:</p>
<p>12</p>
</div>
</div>
</div>
</div>
<!-- HTML Preview -->
<div id="web-content-preview" class="hidden">
<div class="flex items-center justify-between mb-4">
<div class="flex items-center">
<i class="fas fa-file-code text-green-500 mr-2"></i>
<h3 class="font-medium">Web Content.html</h3>
</div>
<div class="flex space-x-2">
<button class="p-1 text-gray-500 hover:text-gray-700">
<i class="fas fa-download"></i>
</button>
<button class="p-1 text-gray-500 hover:text-gray-700">
<i class="fas fa-code"></i>
</button>
</div>
</div>
<div class="bg-gray-100 rounded-lg p-4 mb-4">
<div class="bg-white p-6 shadow-sm">
<h1 class="text-2xl font-bold mb-4">Sustainable Web Design Practices</h1>
<div class="prose prose-sm max-w-none">
<p>In the digital age, sustainability isn't just about physical products - it extends to our online presence as well. Sustainable web design focuses on creating websites that are efficient, accessible, and environmentally friendly.</p>
<h2>Key Principles</h2>
<ul>
<li>Optimized images and media</li>
<li>Efficient code structure</li>
<li>Green hosting solutions</li>
<li>Dark mode implementation</li>
<li>Reduced JavaScript dependencies</li>
</ul>
<h2>Performance Metrics</h2>
<p>A sustainable website should aim for:</p>
<table class="w-full border">
<thead>
<tr class="bg-gray-50">
<th class="p-2 text-left border">Metric</th>
<th class="p-2 text-left border">Target</th>
</tr>
</thead>
<tbody>
<tr>
<td class="p-2 border">Page Weight</td>
<td class="p-2 border">&lt; 1MB</td>
</tr>
<tr class="bg-gray-50">
<td class="p-2 border">Load Time</td>
<td class="p-2 border">&lt; 2s</td>
</tr>
<tr>
<td class="p-2 border">Carbon Footprint</td>
<td class="p-2 border">&lt; 0.5g CO2/page view</td>
</tr>
</tbody>
</table>
</div>
<div class="border-t pt-4 mt-4">
<p class="text-xs text-gray-500">Last updated: 3 days ago</p>
</div>
</div>
</div>
<div class="bg-indigo-50 p-4 rounded-lg">
<h4 class="font-medium text-sm mb-2">Code Snippets</h4>
<pre class="bg-gray-800 text-gray-100 p-3 rounded text-xs overflow-x-auto">
&lt;!-- Example of optimized image --&gt;
&lt;picture&gt;
&lt;source srcset="image.webp" type="image/webp"&gt;
&lt;source srcset="image.jpg" type="image/jpeg"&gt;
&lt;img src="image.jpg" alt="Description" loading="lazy"&gt;
&lt;/picture&gt;
</pre>
</div>
</div>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Document selection
const documentItems = document.querySelectorAll('.document-item');
const noDocumentSelected = document.getElementById('no-document-selected');
const previewContainers = document.querySelectorAll('[id$="-preview"]');
documentItems.forEach(item => {
item.addEventListener('click', function() {
// Remove active class from all items
documentItems.forEach(i => i.classList.remove('active'));
// Add active class to clicked item
this.classList.add('active');
// Get the document ID
const docId = this.getAttribute('data-doc');
// Hide all preview containers
previewContainers.forEach(container => {
container.classList.add('hidden');
});
// Hide the no document selected message
noDocumentSelected.classList.add('hidden');
// Show the selected preview container
document.getElementById(`${docId}-preview`).classList.remove('hidden');
// Add a message to the chat about the document selection
addMessageToChat('user', `I've selected ${this.querySelector('span').textContent}`);
// Simulate AI response
setTimeout(() => {
addMessageToChat('assistant', `You've selected ${this.querySelector('span').textContent}. I can help you analyze this document. What would you like to know?`);
}, 1000);
});
});
// Chat functionality
const chatContainer = document.getElementById('chat-container');
const messageInput = document.getElementById('message-input');
const sendButton = document.getElementById('send-button');
function addMessageToChat(role, content) {
const messageDiv = document.createElement('div');
messageDiv.classList.add('message-enter', 'flex', 'space-x-3');
if (role === 'user') {
messageDiv.innerHTML = `
<div class="flex-shrink-0">
<div class="h-10 w-10 rounded-full bg-gray-200 flex items-center justify-center">
<i class="fas fa-user text-gray-600"></i>
</div>
</div>
<div class="bg-indigo-100 rounded-lg p-4 max-w-3xl">
<p class="text-gray-800">${content}</p>
</div>
`;
} else {
messageDiv.innerHTML = `
<div class="flex-shrink-0">
<div class="h-10 w-10 rounded-full bg-indigo-100 flex items-center justify-center">
<i class="fas fa-robot text-indigo-600"></i>
</div>
</div>
<div class="bg-gray-100 rounded-lg p-4 max-w-3xl">
<p class="text-gray-800">${content}</p>
</div>
`;
}
chatContainer.appendChild(messageDiv);
chatContainer.scrollTop = chatContainer.scrollHeight;
}
function sendMessage() {
const message = messageInput.value.trim();
if (message) {
addMessageToChat('user', message);
messageInput.value = '';
// Show typing indicator
const typingDiv = document.createElement('div');
typingDiv.classList.add('flex', 'space-x-3', 'items-center');
typingDiv.innerHTML = `
<div class="flex-shrink-0">
<div class="h-10 w-10 rounded-full bg-indigo-100 flex items-center justify-center">
<i class="fas fa-robot text-indigo-600"></i>
</div>
</div>
<div class="bg-gray-100 rounded-lg p-4 max-w-xs">
<div class="flex space-x-1">
<div class="typing-dot h-2 w-2 bg-gray-500 rounded-full"></div>
<div class="typing-dot h-2 w-2 bg-gray-500 rounded-full"></div>
<div class="typing-dot h-2 w-2 bg-gray-500 rounded-full"></div>
</div>
</div>
`;
chatContainer.appendChild(typingDiv);
chatContainer.scrollTop = chatContainer.scrollHeight;
// Simulate AI response after a delay
setTimeout(() => {
// Remove typing indicator
chatContainer.removeChild(typingDiv);
// Add response
const responses = [
"Based on the document, I found that...",
"The document mentions this information...",
"Here's a relevant citation from the document...",
"According to the document, the key points are...",
"I've analyzed the document and here's what I found..."
];
const randomResponse = responses[Math.floor(Math.random() * responses.length)];
addMessageToChat('assistant', randomResponse);
}, 1500 + Math.random() * 2000);
}
}
sendButton.addEventListener('click', sendMessage);
messageInput.addEventListener('keypress', function(e) {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
sendMessage();
}
});
// Auto-resize textarea
messageInput.addEventListener('input', function() {
this.style.height = 'auto';
this.style.height = (this.scrollHeight) + 'px';
});
// Toggle user dropdown
const userAvatar = document.querySelector('.relative img');
const userDropdown = document.querySelector('.relative .hidden');
userAvatar.addEventListener('click', function() {
userDropdown.classList.toggle('hidden');
});
// Close dropdown when clicking outside
document.addEventListener('click', function(e) {
if (!e.target.closest('.relative')) {
userDropdown.classList.add('hidden');
}
});
});
</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=taprosoft/document-assistant" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>