-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (54 loc) · 2.08 KB
/
Copy pathindex.html
File metadata and controls
57 lines (54 loc) · 2.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Firefox AI Runtime</title>
<link rel="stylesheet" href="style.css">
<style>
.collection-name { font-family: monospace; font-size: 0.85em; color: #555; margin-bottom: 0; }
</style>
</head>
<body class="main-body">
<div class="main-header">
<div>
<div class="main-header-left">
<h1>
<img src="smart-window.svg" class="main-header-icon">Firefox AI Runtime
</h1>
<h2>Live views of the Remote Settings collections powering the Firefox AI runtime and Smart Window</h2>
</div>
<div class="main-header-right">
<img class="main-header-noodles" src="noodles.png" aria-role="presentational">
</div>
</div>
</div>
<div class="main-links">
<a href="./ml-inference-options">
<h3>Inference Options</h3>
<p>Which ML model is deployed for each Firefox feature — task type, model ID, quantization, and revision.</p>
<p class="collection-name">ml-inference-options</p>
</a>
<a href="./ml-onnx-runtime">
<h3>ONNX Runtime Binaries</h3>
<p>The WebAssembly runtime files (ONNX and wllama) hosted in Remote Settings for on-device inference.</p>
<p class="collection-name">ml-onnx-runtime</p>
</a>
<a href="./ml-model-allow-deny-list">
<h3>Model Allow/Deny List</h3>
<p>URL prefixes that are allowed or denied when Firefox loads models from external hosts.</p>
<p class="collection-name">ml-model-allow-deny-list</p>
</a>
<a href="./ml-inference-words-block-list">
<h3>Words Block List</h3>
<p>Language-specific n-gram block lists used for content filtering during ML inference.</p>
<p class="collection-name">ml-inference-words-block-list</p>
</a>
<a href="./ai-window-prompts">
<h3>AI Window Prompts</h3>
<p>System prompts and configuration for each Firefox Smart Window feature and AI model.</p>
<p class="collection-name">ai-window-prompts</p>
</a>
</div>
</body>
</html>