Skip to content

Commit 642da5b

Browse files
committed
chore(Electron template): update links
1 parent 3abe1db commit 642da5b

File tree

2 files changed

+43
-6
lines changed

2 files changed

+43
-6
lines changed

templates/electron-typescript-react/src/App/App.css

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
text-align: start;
4747

4848
> .hint {
49-
margin-top: 64px;
5049
opacity: 0.6;
5150
}
5251

@@ -78,6 +77,20 @@
7877
}
7978
}
8079

80+
> .separator {
81+
height: 1px;
82+
background-color: var(--actions-block-border-color);
83+
margin: 0px -24px;
84+
align-self: stretch;
85+
}
86+
87+
> .title {
88+
padding-inline-end: 16px;
89+
color: var(--text-color);
90+
opacity: 0.8;
91+
font-weight: 600;
92+
}
93+
8194
> .links {
8295
display: flex;
8396
flex-direction: row;

templates/electron-typescript-react/src/App/App.tsx

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,33 +139,57 @@ export function App() {
139139
Star <code>node-llama-cpp</code> on GitHub
140140
</div>
141141
</a>
142+
143+
<div className="separator"></div>
144+
<div className="title">DeepSeek R1 Distill Qwen model</div>
142145
<div className="links">
143146
<a
144147
target="_blank"
145-
href="https://huggingface.co/bartowski/DeepSeek-R1-Distill-Qwen-14B-GGUF/resolve/main/DeepSeek-R1-Distill-Qwen-14B-Q4_K_M.gguf"
148+
href="https://huggingface.co/mradermacher/DeepSeek-R1-Distill-Qwen-7B-GGUF/resolve/main/DeepSeek-R1-Distill-Qwen-7B.Q4_K_M.gguf"
149+
>
150+
<DownloadIconSVG className="downloadIcon" />
151+
<div className="text">Get 7B</div>
152+
</a>
153+
<div className="separator" />
154+
<a
155+
target="_blank"
156+
href="https://huggingface.co/mradermacher/DeepSeek-R1-Distill-Qwen-14B-GGUF/resolve/main/DeepSeek-R1-Distill-Qwen-14B.Q4_K_M.gguf"
146157
>
147158
<DownloadIconSVG className="downloadIcon" />
148-
<div className="text">Get DeepSeek R1 Distill Qwen 14B model</div>
159+
<div className="text">Get 14B</div>
160+
</a>
161+
<div className="separator" />
162+
<a
163+
target="_blank"
164+
href="https://huggingface.co/mradermacher/DeepSeek-R1-Distill-Qwen-32B-GGUF/resolve/main/DeepSeek-R1-Distill-Qwen-32B.Q4_K_M.gguf"
165+
>
166+
<DownloadIconSVG className="downloadIcon" />
167+
<div className="text">Get 32B</div>
149168
</a>
150169
</div>
170+
171+
<div className="separator"></div>
172+
<div className="title">Other models</div>
151173
<div className="links">
152174
<a
153175
target="_blank"
154176
href="https://huggingface.co/mradermacher/Meta-Llama-3.1-8B-Instruct-GGUF/resolve/main/Meta-Llama-3.1-8B-Instruct.Q4_K_M.gguf"
155177
>
156178
<DownloadIconSVG className="downloadIcon" />
157-
<div className="text">Get Llama 3.1 8B model</div>
179+
<div className="text">Get Llama 3.1 8B</div>
158180
</a>
159181
<div className="separator" />
160182
<a
161183
target="_blank"
162184
href="https://huggingface.co/bartowski/gemma-2-2b-it-GGUF/resolve/main/gemma-2-2b-it-Q4_K_M.gguf"
163185
>
164186
<DownloadIconSVG className="downloadIcon" />
165-
<div className="text">Get Gemma 2 2B model</div>
187+
<div className="text">Get Gemma 2 2B</div>
166188
</a>
167189
</div>
168-
<a className="browseLink" target="_blank" href="https://huggingface.co/mradermacher">
190+
191+
<div className="separator"></div>
192+
<a className="browseLink" target="_blank" href="https://huggingface.co/models?pipeline_tag=text-generation&library=gguf&sort=trending">
169193
<SearchIconSVG className="searchIcon" />
170194
<div className="text">Find more models</div>
171195
</a>

0 commit comments

Comments
 (0)