DeepFount commited on
Commit
e6a53b7
·
verified ·
1 Parent(s): 01c6fa7

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +253 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Deepsite
3
- emoji: 👁
4
- colorFrom: purple
5
- colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: deepsite
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: gray
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,253 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>NotebookLM-Llama 本地部署指南</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#6e40c9',
15
+ secondary: '#5c21b5',
16
+ dark: '#121826',
17
+ }
18
+ }
19
+ }
20
+ }
21
+ </script>
22
+ <style>
23
+ .terminal {
24
+ background-color: #1a1c23;
25
+ border-radius: 10px;
26
+ font-family: 'Fira Code', monospace;
27
+ position: relative;
28
+ overflow: hidden;
29
+ }
30
+ .terminal-header {
31
+ background-color: #232732;
32
+ padding: 10px 15px;
33
+ border-top-left-radius: 10px;
34
+ border-top-right-radius: 10px;
35
+ }
36
+ .terminal-buttons span {
37
+ display: inline-block;
38
+ width: 12px;
39
+ height: 12px;
40
+ border-radius: 50%;
41
+ margin-right: 5px;
42
+ }
43
+ .terminal-content {
44
+ padding: 15px;
45
+ color: #e0e0e0;
46
+ font-size: 14px;
47
+ }
48
+ .glow-card {
49
+ box-shadow: 0 0 20px rgba(110, 64, 201, 0.3);
50
+ transition: transform 0.3s, box-shadow 0.3s;
51
+ }
52
+ .glow-card:hover {
53
+ transform: translateY(-5px);
54
+ box-shadow: 0 5px 25px rgba(110, 64, 201, 0.5);
55
+ }
56
+ .step-card {
57
+ border-left: 4px solid #6e40c9;
58
+ }
59
+ .terminal-content span.prompt { color: #68d391; }
60
+ .terminal-content span.command { color: #76daff; }
61
+ .terminal-content span.comment { color: #718096; }
62
+ .progress-anim {
63
+ animation: progress-pulse 2s infinite;
64
+ }
65
+ @keyframes progress-pulse {
66
+ 0% { opacity: 0.8; }
67
+ 50% { opacity: 1; }
68
+ 100% { opacity: 0.8; }
69
+ }
70
+ .deploy-badge {
71
+ position: relative;
72
+ padding: 8px 16px;
73
+ border-radius: 30px;
74
+ font-size: 14px;
75
+ }
76
+ </style>
77
+ </head>
78
+ <body class="bg-dark text-gray-100">
79
+ <!-- Navigation -->
80
+ <nav class="bg-gray-900 py-4">
81
+ <div class="container mx-auto px-4 flex items-center justify-between">
82
+ <div class="flex items-center">
83
+ <i class="fas fa-laptop-code text-primary text-2xl mr-2"></i>
84
+ <span class="text-xl font-bold">NotebookLM-Llama</span>
85
+ </div>
86
+ <div class="hidden md:flex space-x-6">
87
+ <a href="#" class="hover:text-primary transition">首页</a>
88
+ <a href="#" class="text-primary font-medium">部署指南</a>
89
+ <a href="#" class="hover:text-primary transition">文档</a>
90
+ <a href="#" class="hover:text-primary transition">社区</a>
91
+ <a href="#" class="hover:text-primary transition">资源下载</a>
92
+ </div>
93
+ <button class="md:hidden text-gray-400">
94
+ <i class="fas fa-bars text-2xl"></i>
95
+ </button>
96
+ </div>
97
+ </nav>
98
+
99
+ <!-- Hero Section -->
100
+ <section class="py-16 bg-gradient-to-br from-gray-900 to-purple-900">
101
+ <div class="container mx-auto px-4 text-center">
102
+ <div class="flex justify-center mb-6">
103
+ <span class="deploy-badge bg-gray-800 text-green-400">
104
+ <i class="fas fa-circle animate-pulse mr-2"></i> 本地部署支持
105
+ </span>
106
+ </div>
107
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">
108
+ NotebookLM-Llama <span class="text-primary">本地部署</span> 指南
109
+ </h1>
110
+ <p class="text-xl md:text-2xl text-gray-300 max-w-3xl mx-auto mb-10">
111
+ 无需云端依赖,轻松在您的设备上部署和运行强大的NotebookLM-Llama AI模型
112
+ </p>
113
+
114
+ <div class="max-w-4xl mx-auto bg-gray-800 rounded-xl p-6 md:p-8 glow-card">
115
+ <div class="flex flex-wrap justify-center gap-8 mb-8">
116
+ <div class="text-center">
117
+ <div class="w-16 h-16 mx-auto bg-secondary rounded-xl flex items-center justify-center mb-3">
118
+ <i class="fas fa-microchip text-2xl"></i>
119
+ </div>
120
+ <p class="font-medium">支持多平台</p>
121
+ </div>
122
+ <div class="text-center">
123
+ <div class="w-16 h-16 mx-auto bg-secondary rounded-xl flex items-center justify-center mb-3">
124
+ <i class="fas fa-bolt text-2xl"></i>
125
+ </div>
126
+ <p class="font-medium">GPU加速</p>
127
+ </div>
128
+ <div class="text-center">
129
+ <div class="w-16 h-16 mx-auto bg-secondary rounded-xl flex items-center justify-center mb-3">
130
+ <i class="fas fa-shield-alt text-2xl"></i>
131
+ </div>
132
+ <p class="font-medium">数据隐私保护</p>
133
+ </div>
134
+ <div class="text-center">
135
+ <div class="w-16 h-16 mx-auto bg-secondary rounded-xl flex items-center justify-center mb-3">
136
+ <i class="fas fa-download text-2xl"></i>
137
+ </div>
138
+ <p class="font-medium">离线运行</p>
139
+ </div>
140
+ </div>
141
+
142
+ <div class="bg-gray-700 rounded-lg p-4">
143
+ <h3 class="text-primary font-medium mb-3">部署状态</h3>
144
+ <div class="flex items-center">
145
+ <div class="mr-4">
146
+ <div class="relative">
147
+ <div class="h-24 w-24 rounded-full flex items-center justify-center progress-anim"
148
+ style="background: conic-gradient(#6e40c9 40%, #4b5563 0);">
149
+ <div class="h-20 w-20 bg-gray-800 rounded-full flex items-center justify-center">
150
+ <span class="text-white">40%</span>
151
+ </div>
152
+ </div>
153
+ <div class="absolute -bottom-2 left-0 right-0 flex justify-center">
154
+ <div class="bg-green-500 text-xs rounded px-2 py-1">最新版本</div>
155
+ </div>
156
+ </div>
157
+ </div>
158
+ <div>
159
+ <p class="text-sm text-gray-300 mb-2">
160
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
161
+ Llama 2模型支持
162
+ </p>
163
+ <p class="text-sm text-gray-300 mb-2">
164
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
165
+ Windows 10/11
166
+ </p>
167
+ <p class="text-sm text-gray-300 mb-2">
168
+ <i class="fas fa-check-circle text-yellow-500 mr-2"></i>
169
+ macOS测试版可用
170
+ </p>
171
+ <p class="text-sm text-gray-300">
172
+ <i class="fas fa-sync-alt text-blue-500 mr-2"></i>
173
+ Linux优化中
174
+ </p>
175
+ </div>
176
+ </div>
177
+ </div>
178
+ </div>
179
+ </div>
180
+ </section>
181
+
182
+ <!-- Requirements Section -->
183
+ <section class="py-16">
184
+ <div class="container mx-auto px-4">
185
+ <div class="text-center max-w-3xl mx-auto mb-16">
186
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">系统<span class="text-primary">要求</span></h2>
187
+ <p class="text-gray-400">确保您的系统满足以下最低要求以实现最佳运行效果</p>
188
+ </div>
189
+
190
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16">
191
+ <div class="bg-gray-800 rounded-xl p-6 glow-card">
192
+ <div class="w-14 h-14 rounded-xl bg-primary flex items-center justify-center mb-4">
193
+ <i class="fas fa-microchip text-2xl"></i>
194
+ </div>
195
+ <h3 class="text-xl font-bold mb-3">硬件配置</h3>
196
+ <ul class="space-y-3 text-gray-300">
197
+ <li class="flex items-start">
198
+ <i class="fas fa-memory text-primary mt-1 mr-3"></i>
199
+ <span>至少 <span class="font-bold">16GB RAM</span> (推荐32GB)</span>
200
+ </li>
201
+ <li class="flex items-start">
202
+ <i class="fas fa-microchip text-primary mt-1 mr-3"></i>
203
+ <span>多核CPU (推荐8核以上)</span>
204
+ </li>
205
+ <li class="flex items-start">
206
+ <i class="fas fa-sd-card text-primary mt-1 mr-3"></i>
207
+ <span>20GB可用存储空间</span>
208
+ </li>
209
+ <li class="flex items-start">
210
+ <i class="fas fa-video text-primary mt-1 mr-3"></i>
211
+ <span>专用GPU (NVIDIA RTX 30系列以上)</span>
212
+ </li>
213
+ </ul>
214
+ </div>
215
+
216
+ <div class="bg-gray-800 rounded-xl p-6 glow-card">
217
+ <div class="w-14 h-14 rounded-xl bg-primary flex items-center justify-center mb-4">
218
+ <i class="fab fa-windows text-2xl"></i>
219
+ </div>
220
+ <h3 class="text-xl font-bold mb-3">操作系统</h3>
221
+ <ul class="space-y-3 text-gray-300">
222
+ <li class="flex items-start">
223
+ <i class="fab fa-windows text-blue-400 mt-1 mr-3"></i>
224
+ <span>Windows 10/11 (64位)</span>
225
+ </li>
226
+ <li class="flex items-start">
227
+ <i class="fab fa-linux text-orange-400 mt-1 mr-3"></i>
228
+ <span>Ubuntu 20.04 LTS或更新</span>
229
+ </li>
230
+ <li class="flex items-start">
231
+ <i class="fab fa-apple text-gray-300 mt-1 mr-3"></i>
232
+ <span>macOS 12 Monterey或更新</span>
233
+ </li>
234
+ <li class="flex items-start">
235
+ <i class="fas fa-code-branch text-primary mt-1 mr-3"></i>
236
+ <span>WSL 2 (Windows子系统Linux)</span>
237
+ </li>
238
+ </ul>
239
+ </div>
240
+
241
+ <div class="bg-gray-800 rounded-xl p-6 glow-card">
242
+ <div class="w-14 h-14 rounded-xl bg-primary flex items-center justify-center mb-4">
243
+ <i class="fas fa-cubes text-2xl"></i>
244
+ </div>
245
+ <h3 class="text-xl font-bold mb-3">软件依赖</h3>
246
+ <ul class="space-y-3 text-gray-300">
247
+ <li class="flex items-start">
248
+ <i class="fab fa-python text-green-400 mt-1 mr-3"></i>
249
+ <span>Python 3.8或更高</span>
250
+ </li>
251
+
252
+ <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=DeepFount/deepsite" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
253
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Notebooklm-llama支持本地部署吗