ShotokanJ commited on
Commit
e75f808
·
verified ·
1 Parent(s): d9ca574

Upload index.html with huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +26 -19
index.html CHANGED
@@ -1,19 +1,26 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
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>