forked from rahuldshetty/llm.js-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (44 loc) · 1.69 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>ggml.js Examples</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/water.css@2/out/light.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<h2>
Demo Examples for <a target="_blank" href="https://github.com/rahuldshetty/ggml.js.git">ggml.js</a>
</h2>
<p>This project contains examples for ggml.js models.</p>
<p>
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/rahuldshetty/ggml.js-examples.git"
style="all: unset; cursor: pointer; font-size: 0.9em"
>
<i class="fa-brands fa-github fa-xl"></i>
Source Code
</a>
</p>
<h4>Demo</h4>
<ul>
<li><a href="./quick-start/index.html">Quick Start</a></li>
<li><a href="./gpt2_roleplay.html">GPT2 Roleplay</a></li>
<li><a href="./starcoder.html">Starcoder</a></li>
<li><a href="./llama2_tinystories.html">LLaMa2 - TinyStories</a></li>
</ul>
</body>
</html>