ScholarCopilot / index.html
ubowang's picture
Update index.html
418e105 verified
<!-- <!DOCTYPE html>
<html lang="en" style="height: 100%; margin: 0;">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scholar Copilot</title>
<style>
body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
#gradioIframe {
width: 100%;
height: 100%;
border: none;
display: block;
}
</style>
<script>
document.addEventListener("DOMContentLoaded", function() {
var gradioURL = "https://f3556dbb058816d6b9.gradio.live";
var iframe = document.getElementById("gradioIframe");
var link = document.getElementById("gradioLink");
if (iframe) iframe.src = gradioURL;
if (link) link.href = gradioURL;
});
</script>
</head>
<body>
<iframe id="gradioIframe">
Your browser does not support iframes. Please click this <a id="gradioLink">url</a>.
</iframe>
</body>
</html> -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scholar Copilot Demo</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}
h1 {
margin-bottom: 1.5rem;
color: #2c3e50;
line-height: 1.3;
}
.description {
margin: 2rem 0;
text-align: left;
}
.links {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
margin-top: 2rem;
}
.button {
display: inline-block;
padding: 0.8rem 1.5rem;
background-color: #24292e;
color: white;
text-decoration: none;
border-radius: 4px;
font-weight: 600;
transition: background-color 0.3s;
width: 260px;
}
.button:hover {
background-color: #1c2024;
}
.github {
background-color: #24292e;
}
.youtube {
background-color: #4a6fa5; /* Changed from bright red to a calmer blue */
}
.features {
text-align: left;
margin: 2rem 0;
border: 1px solid #e1e4e8;
border-radius: 6px;
padding: 1.5rem;
background-color: #f6f8fa;
}
.features h2 {
margin-top: 0;
}
.features ul {
padding-left: 1.5rem;
}
.note {
background-color: #f8f9fa;
border-left: 4px solid #4a6fa5;
padding: 1rem;
margin: 2rem 0;
text-align: left;
}
</style>
</head>
<body>
<h1>Deploy Your Own Demo of ScholarCopilot: Training Large Language Models for Academic Writing with Accurate Citations</h1>
<div class="description">
<p>Scholar Copilot is an intelligent academic writing assistant that enhances the research writing process through AI-powered text completion and citation suggestions.</p>
<div class="note">
<p><strong>Note:</strong> We have discontinued our centralized demo deployment to conserve computational resources and provide a better user experience. By deploying your own instance, you'll avoid the performance issues that can occur when multiple users share a single demo. This approach ensures you'll have a dedicated environment with faster response times and no interruptions from other users.</p>
</div>
</div>
<div class="features">
<h2>Key Features</h2>
<ul>
<li><strong>Smart Text Generation</strong> - Get contextually relevant suggestions for your next sentences and generate complete sections with appropriate academic structure.</li>
<li><strong>Intelligent Citation Management</strong> - Receive relevant paper citations based on your writing context and easily insert citations in proper academic format.</li>
<li><strong>Citation Bibtex Generation</strong> - Automatically generate and export bibtex entries for your citations.</li>
</ul>
</div>
<div class="links">
<a href="https://github.com/TIGER-AI-Lab/ScholarCopilot" class="button github" target="_blank">
Deploy Your Own Demo
</a>
<a href="https://www.youtube.com/watch?v=QlY7S52sWDA" class="button youtube" target="_blank">
Watch Demo Tutorial
</a>
</div>
</body>
</html>