ubowang commited on
Commit
6f88bc5
·
verified ·
1 Parent(s): 3bb9418

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +96 -1
index.html CHANGED
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html>
2
  <html lang="en" style="height: 100%; margin: 0;">
3
  <head>
4
  <meta charset="UTF-8">
@@ -33,4 +33,99 @@
33
  Your browser does not support iframes. Please click this <a id="gradioLink">url</a>.
34
  </iframe>
35
  </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  </html>
 
1
+ <!-- <!DOCTYPE html>
2
  <html lang="en" style="height: 100%; margin: 0;">
3
  <head>
4
  <meta charset="UTF-8">
 
33
  Your browser does not support iframes. Please click this <a id="gradioLink">url</a>.
34
  </iframe>
35
  </body>
36
+ </html> -->
37
+
38
+ <!DOCTYPE html>
39
+ <html lang="en">
40
+ <head>
41
+ <meta charset="UTF-8">
42
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
43
+ <title>Scholar Copilot</title>
44
+ <style>
45
+ body {
46
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
47
+ line-height: 1.6;
48
+ color: #333;
49
+ max-width: 800px;
50
+ margin: 0 auto;
51
+ padding: 2rem;
52
+ text-align: center;
53
+ }
54
+ h1 {
55
+ margin-bottom: 1.5rem;
56
+ color: #2c3e50;
57
+ line-height: 1.3;
58
+ }
59
+ .description {
60
+ margin: 2rem 0;
61
+ text-align: left;
62
+ }
63
+ .links {
64
+ display: flex;
65
+ flex-direction: column;
66
+ gap: 1rem;
67
+ align-items: center;
68
+ margin-top: 2rem;
69
+ }
70
+ .button {
71
+ display: inline-block;
72
+ padding: 0.8rem 1.5rem;
73
+ background-color: #24292e;
74
+ color: white;
75
+ text-decoration: none;
76
+ border-radius: 4px;
77
+ font-weight: 600;
78
+ transition: background-color 0.3s;
79
+ width: 260px;
80
+ }
81
+ .button:hover {
82
+ background-color: #1c2024;
83
+ }
84
+ .github {
85
+ background-color: #24292e;
86
+ }
87
+ .youtube {
88
+ background-color: #ff0000;
89
+ }
90
+ .features {
91
+ text-align: left;
92
+ margin: 2rem 0;
93
+ border: 1px solid #e1e4e8;
94
+ border-radius: 6px;
95
+ padding: 1.5rem;
96
+ background-color: #f6f8fa;
97
+ }
98
+ .features h2 {
99
+ margin-top: 0;
100
+ }
101
+ .features ul {
102
+ padding-left: 1.5rem;
103
+ }
104
+ </style>
105
+ </head>
106
+ <body>
107
+ <h1>ScholarCopilot: Training Large Language Models for Academic Writing with Accurate Citations</h1>
108
+
109
+ <div class="description">
110
+ <p>Scholar Copilot is an intelligent academic writing assistant that enhances the research writing process through AI-powered text completion and citation suggestions.</p>
111
+ </div>
112
+
113
+ <div class="features">
114
+ <h2>Key Features</h2>
115
+ <ul>
116
+ <li><strong>Smart Text Generation</strong> - Get contextually relevant suggestions for your next sentences and generate complete sections with appropriate academic structure.</li>
117
+ <li><strong>Intelligent Citation Management</strong> - Receive relevant paper citations based on your writing context and easily insert citations in proper academic format.</li>
118
+ <li><strong>Citation Bibtex Generation</strong> - Automatically generate and export bibtex entries for your citations.</li>
119
+ </ul>
120
+ </div>
121
+
122
+ <div class="links">
123
+ <a href="https://github.com/TIGER-AI-Lab/ScholarCopilot" class="button github" target="_blank">
124
+ Deploy Your Own Demo
125
+ </a>
126
+ <a href="https://www.youtube.com/watch?v=QlY7S52sWDA" class="button youtube" target="_blank">
127
+ Watch Demo Tutorial
128
+ </a>
129
+ </div>
130
+ </body>
131
  </html>