Upload index.html with huggingface_hub
Browse files- index.html +26 -19
index.html
CHANGED
|
@@ -1,19 +1,26 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Chat Widget</title>
|
| 7 |
+
<style>
|
| 8 |
+
body, html { margin: 0; padding: 0; height: 100%; background: #0d1117; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
|
| 9 |
+
.chat-container { width: 100%; height: calc(100% - 35px); border: none; }
|
| 10 |
+
iframe { width: 100%; height: 100%; border: none; }
|
| 11 |
+
.footer { height: 35px; display: flex; justify-content: center; align-items: center; background: #161b22; color: #8b949e; font-size: 12px; }
|
| 12 |
+
.footer a { color: #58a6ff; text-decoration: none; margin: 0 8px; }
|
| 13 |
+
.footer a:hover { text-decoration: underline; }
|
| 14 |
+
</style>
|
| 15 |
+
</head>
|
| 16 |
+
<body>
|
| 17 |
+
<div class="chat-container">
|
| 18 |
+
<iframe src="https://localellm.com?placeholder=Ask+me+anything...&icon=%F0%9F%A4%96&theme=dark&autoload=true&header=true&greeting=Hello%21+How+can+I+help+you%3F&system=You+are+a+helpful+assistant.&ctx=8192&maxTokens=2048&temp=0.7&topP=0.95&topK=40&repPenalty=1.1&settings=true&systemChange=true&allowModelChange=false&allowQuantChange=false&clearCache=true&repo=mradermacher%2FXORTRON-CriminalComputing-EnablementEngine-v0.3-i1-GGUF&file=XORTRON-CriminalComputing-EnablementEngine-v0.3.i1-Q4_K_M.gguf&title=XORTRON-CriminalComputing-EnablementEngine-v0.3-i1-GGUF&embed=true" allow="autoplay; clipboard-write;"></iframe>
|
| 19 |
+
</div>
|
| 20 |
+
<div class="footer">
|
| 21 |
+
<a href="https://twist-shoulder-machines-holding.trycloudflare.com/privacy.html" target="_blank" rel="noopener noreferrer">Privacy Policy</a>
|
| 22 |
+
|
|
| 23 |
+
<a href="https://localellm.com/imprint" target="_blank" rel="noopener noreferrer">Imprint</a>
|
| 24 |
+
</div>
|
| 25 |
+
</body>
|
| 26 |
+
</html>
|