bekko-embedding-web / index.html
hotchpotch's picture
Remove token input and use public model access
c603498 verified
Raw
History Blame Contribute Delete
1.09 kB
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>bekko · browser embedding demo</title>
<meta
name="description"
content="Run the ultra-small multilingual bekko text-embedding model entirely in your browser with Transformers.js and see per-line semantic similarity."
/>
<script>
// Apply the saved/system theme before paint to avoid a flash.
(function () {
try {
var stored = localStorage.getItem("bekko-theme");
var dark = stored ? stored === "dark" : matchMedia("(prefers-color-scheme: dark)").matches;
if (dark) document.documentElement.classList.add("dark");
} catch (e) {}
})();
</script>
<script type="module" crossorigin src="/assets/main-BTOsMrG3.js"></script>
<link rel="modulepreload" crossorigin href="/assets/styles-CqhvA02s.js">
<link rel="stylesheet" crossorigin href="/assets/styles-vgcZZwOh.css">
</head>
<body>
<div id="root"></div>
</body>
</html>