Spaces:
Running
Running
Upload 3 files
Browse files- README (2).md +15 -0
- index.html +23 -0
- style.css +30 -0
README (2).md
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: Mixtral-8x22B-Instruct-v0.1
|
3 |
+
emoji: 🏆
|
4 |
+
colorFrom: yellow
|
5 |
+
colorTo: blue
|
6 |
+
sdk: static
|
7 |
+
pinned: false
|
8 |
+
license: mit
|
9 |
+
models:
|
10 |
+
- mistral-community/Mixtral-8x22B-v0.1
|
11 |
+
- mistralai/Mixtral-8x22B-Instruct-v0.1
|
12 |
+
- mistralai/Mixtral-8x22B-v0.1
|
13 |
+
---
|
14 |
+
|
15 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!doctype html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<meta charset="utf-8" />
|
5 |
+
<meta name="viewport" content="width=device-width" />
|
6 |
+
<title>Mixtral-8x22B-v0.1 Live Demo</title>
|
7 |
+
<link rel="stylesheet" href="style.css" />
|
8 |
+
</head>
|
9 |
+
<body style="background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(150,53,0,1) 100%);">
|
10 |
+
<div class="card">
|
11 |
+
<h1>Welcome to Mixtral-8x22B-v0.1!</h1>
|
12 |
+
<p>The space below is running on <i>low parameters</i> Mixtral Model.</p>
|
13 |
+
<p>
|
14 |
+
Don't forget to check the full
|
15 |
+
<a href="https://exnrt.com/ai-tools/chatbot/" target="_blank" style="color: #2effe7;"> Live Demo Here.</a>🤗
|
16 |
+
</p>
|
17 |
+
<p style="text-align:center; color: gray;">Wait....</p>
|
18 |
+
<script type="module" src="https://gradio.s3-us-west-2.amazonaws.com/4.8.0/gradio.js"></script>
|
19 |
+
<gradio-app src="https://coleguion-mistral8x7b.hf.space"></gradio-app>
|
20 |
+
<p style="text-align:center; color: gray; margin-top: 20px; ">"If the first attempt fails, try reloading."</p>
|
21 |
+
</div>
|
22 |
+
</body>
|
23 |
+
</html>
|
style.css
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
padding: 2rem;
|
3 |
+
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
4 |
+
}
|
5 |
+
|
6 |
+
h1 {
|
7 |
+
font-size: 16px;
|
8 |
+
margin-top: 0;
|
9 |
+
color: white;
|
10 |
+
}
|
11 |
+
|
12 |
+
p {
|
13 |
+
color: rgb(107, 114, 128);
|
14 |
+
font-size: 15px;
|
15 |
+
margin-bottom: 10px;
|
16 |
+
margin-top: 5px;
|
17 |
+
color: white;
|
18 |
+
}
|
19 |
+
|
20 |
+
.card {
|
21 |
+
max-width: 620px;
|
22 |
+
margin: 0 auto;
|
23 |
+
padding: 16px;
|
24 |
+
border: 1px solid lightgray;
|
25 |
+
border-radius: 16px;
|
26 |
+
}
|
27 |
+
|
28 |
+
.card p:last-child {
|
29 |
+
margin-bottom: 0;
|
30 |
+
}
|