Spaces:
Running
Running
File size: 4,960 Bytes
6f88bc5 35757fe 2b5f8a7 f8e57a3 35757fe 2b5f8a7 3bb9418 2b5f8a7 35757fe 2b5f8a7 6f88bc5 418e105 6f88bc5 418e105 6f88bc5 418e105 6f88bc5 418e105 6f88bc5 418e105 6f88bc5 9b17153 |
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 |
<!-- <!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> |