Spaces:
Running
Running
Upload EnergyTap.apk
#355
by
Doosah
- opened
- .gitattributes +1 -0
- EnergyTap.apk +3 -0
- README.md +3 -0
- components/editor/ask-ai/settings.tsx +3 -3
- lib/providers.ts +7 -1
.gitattributes
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
EnergyTap.apk filter=lfs diff=lfs merge=lfs -text
|
EnergyTap.apk
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7a23b6f001cae2b8386afea42449b68b0d2f195b6eccabef293193a5aad812e9
|
3 |
+
size 58076080
|
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 |
];
|