Added a link to blog and code to the web-based version

Signed-off-by: Jacob Torrey <jacob@thinkst.com>
pull/6/head
Jacob Torrey 2023-08-24 09:56:31 -06:00
rodzic c6955ad1f3
commit ab1c1458a4
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -1,11 +1,11 @@
<html>
<head>
<title>LLM text detector</title>
<title>ZipPy AI-LLM text detector</title>
<script src="./LZMA-JS/src/lzma_worker.js" type="application/javascript"></script>
</head>
<body onload="">
<div style="text-align: center; font-family: Arial, Helvetica, sans-serif;">
<h1>LZMA-based LLM text classifier</h1>
<h1>ZipPy: An LZMA-based LLM text classifier</h1>
<textarea id="text_input" placeholder="Put text to classify in here..." style="width: 75%; height: 25%;"></textarea><br /><br />
<input type="text" id="preset_value" size="1" disabled hidden/><button onclick="time_do_detect();" id="processbtn">Click here to classify!</button><br /><br />
<span id="output_span">The results will appear here!</span><br /><br />
@ -27,5 +27,9 @@
}
</script>
<script src="./src/nlzmadetect.js" type="application/javascript"></script>
<div id="footer" style="text-align: center; font-family: Arial, Helvetica, sans-serif;">
<p style="font-size: larger;">Curious how this works? Check out the <a href="https://blog.thinkst.com/2023/06/meet-zippy-a-fast-ai-llm-text-detector.html">blog post</a>, or go look at <a href="https://github.com/thinkst/zippy">the code!</a></p>
<p style="font-size: smaller;">Created with 💚 by <a href="https://www.thinkst.com">Thinkst Applied Research</a></p>
</div>
</body>
</html>