Spaces:
Running
Running
Create Index.html
#356
by
HoundeglassoD
- opened
- Index.html +27 -0
- README.md +3 -0
- components/editor/ask-ai/settings.tsx +3 -3
- lib/providers.ts +7 -1
Index.html
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="fr">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>Mon site</title>
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
background: #f4f4f4;
|
11 |
+
text-align: center;
|
12 |
+
padding: 50px;
|
13 |
+
}
|
14 |
+
h1 {
|
15 |
+
color: #333;
|
16 |
+
}
|
17 |
+
p {
|
18 |
+
font-size: 18px;
|
19 |
+
color: #555;
|
20 |
+
}
|
21 |
+
</style>
|
22 |
+
</head>
|
23 |
+
<body>
|
24 |
+
<h1>Bienvenue sur mon site 🚀</h1>
|
25 |
+
<p>Ce site a été déployé avec Hugging Face Spaces.</p>
|
26 |
+
</body>
|
27 |
+
</html>
|
README.md
CHANGED
@@ -11,6 +11,9 @@ short_description: Generate any application with DeepSeek
|
|
11 |
models:
|
12 |
- deepseek-ai/DeepSeek-V3-0324
|
13 |
- deepseek-ai/DeepSeek-R1-0528
|
|
|
|
|
|
|
14 |
---
|
15 |
|
16 |
# DeepSite 🐳
|
|
|
11 |
models:
|
12 |
- deepseek-ai/DeepSeek-V3-0324
|
13 |
- deepseek-ai/DeepSeek-R1-0528
|
14 |
+
- deepseek-ai/DeepSeek-V3.1
|
15 |
+
- Qwen/Qwen3-Coder-480B-A35B-Instruct
|
16 |
+
- moonshotai/Kimi-K2-Instruct
|
17 |
---
|
18 |
|
19 |
# DeepSite 🐳
|
components/editor/ask-ai/settings.tsx
CHANGED
@@ -81,15 +81,15 @@ export function Settings({
|
|
81 |
)}
|
82 |
<label className="block">
|
83 |
<p className="text-neutral-300 text-sm mb-2.5">
|
84 |
-
Choose a
|
85 |
</p>
|
86 |
<Select defaultValue={model} onValueChange={onModelChange}>
|
87 |
<SelectTrigger className="w-full">
|
88 |
-
<SelectValue placeholder="Select a
|
89 |
</SelectTrigger>
|
90 |
<SelectContent>
|
91 |
<SelectGroup>
|
92 |
-
<SelectLabel>
|
93 |
{MODELS.map(
|
94 |
({
|
95 |
value,
|
|
|
81 |
)}
|
82 |
<label className="block">
|
83 |
<p className="text-neutral-300 text-sm mb-2.5">
|
84 |
+
Choose a model
|
85 |
</p>
|
86 |
<Select defaultValue={model} onValueChange={onModelChange}>
|
87 |
<SelectTrigger className="w-full">
|
88 |
+
<SelectValue placeholder="Select a model" />
|
89 |
</SelectTrigger>
|
90 |
<SelectContent>
|
91 |
<SelectGroup>
|
92 |
+
<SelectLabel>Models</SelectLabel>
|
93 |
{MODELS.map(
|
94 |
({
|
95 |
value,
|
lib/providers.ts
CHANGED
@@ -62,7 +62,6 @@ export const MODELS = [
|
|
62 |
label: "Qwen3 Coder 480B A35B Instruct",
|
63 |
providers: ["novita", "hyperbolic"],
|
64 |
autoProvider: "novita",
|
65 |
-
isNew: true,
|
66 |
},
|
67 |
{
|
68 |
value: "moonshotai/Kimi-K2-Instruct",
|
@@ -70,4 +69,11 @@ export const MODELS = [
|
|
70 |
providers: ["together", "novita", "groq"],
|
71 |
autoProvider: "groq",
|
72 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
];
|
|
|
62 |
label: "Qwen3 Coder 480B A35B Instruct",
|
63 |
providers: ["novita", "hyperbolic"],
|
64 |
autoProvider: "novita",
|
|
|
65 |
},
|
66 |
{
|
67 |
value: "moonshotai/Kimi-K2-Instruct",
|
|
|
69 |
providers: ["together", "novita", "groq"],
|
70 |
autoProvider: "groq",
|
71 |
},
|
72 |
+
{
|
73 |
+
value: "deepseek-ai/DeepSeek-V3.1",
|
74 |
+
label: "DeepSeek V3.1",
|
75 |
+
providers: ["fireworks-ai", "novita"],
|
76 |
+
isNew: true,
|
77 |
+
autoProvider: "novita"
|
78 |
+
}
|
79 |
];
|