Commit
•
ab34e50
1
Parent(s):
7b575e2
add models
Browse files
public/images/mock-avatar.jpeg
DELETED
Binary file (27.7 kB)
|
|
public/images/models/sdxl-cinematic-2.jpg
ADDED
public/images/models/sdxl-foundation-2.jpg
ADDED
public/images/models/sdxl-modern-pixar.jpg
ADDED
public/images/models/sdxl-moebius-lean.jpg
ADDED
src/app/server/actions/models.ts
CHANGED
@@ -23,7 +23,7 @@ export async function getSDXLModels(): Promise<SDXLModel[]> {
|
|
23 |
|
24 |
const hardcoded: SDXLModel[] = [
|
25 |
{
|
26 |
-
"image": "https://
|
27 |
"title": "sdxl-modern-pixar",
|
28 |
"repo": "jbilcke-hf/sdxl-modern-pixar",
|
29 |
"trigger_word": "modern-pixar",
|
@@ -33,7 +33,7 @@ export async function getSDXLModels(): Promise<SDXLModel[]> {
|
|
33 |
"downloads": 0
|
34 |
},
|
35 |
{
|
36 |
-
"image": "https://
|
37 |
"title": "sdxl-cinematic-2",
|
38 |
"repo": "jbilcke-hf/sdxl-cinematic-2",
|
39 |
"trigger_word": "cinematic-2",
|
@@ -42,6 +42,26 @@ export async function getSDXLModels(): Promise<SDXLModel[]> {
|
|
42 |
"likes": 0,
|
43 |
"downloads": 0
|
44 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
]
|
46 |
|
47 |
return hardcoded.concat(compatibleModels)
|
|
|
23 |
|
24 |
const hardcoded: SDXLModel[] = [
|
25 |
{
|
26 |
+
"image": "https://jbilcke-hf-ai-clip-factory.hf.space/images/models/sdxl-modern-pixar.jpg",
|
27 |
"title": "sdxl-modern-pixar",
|
28 |
"repo": "jbilcke-hf/sdxl-modern-pixar",
|
29 |
"trigger_word": "modern-pixar",
|
|
|
33 |
"downloads": 0
|
34 |
},
|
35 |
{
|
36 |
+
"image": "https://jbilcke-hf-ai-clip-factory.hf.space/images/models/sdxl-cinematic-2.jpg",
|
37 |
"title": "sdxl-cinematic-2",
|
38 |
"repo": "jbilcke-hf/sdxl-cinematic-2",
|
39 |
"trigger_word": "cinematic-2",
|
|
|
42 |
"likes": 0,
|
43 |
"downloads": 0
|
44 |
},
|
45 |
+
{
|
46 |
+
"image": "https://jbilcke-hf-ai-clip-factory.hf.space/images/models/sdxl-moebius-lean.jpg",
|
47 |
+
"title": "sdxl-moebius-lean",
|
48 |
+
"repo": "jbilcke-hf/sdxl-moebius-lean",
|
49 |
+
"trigger_word": "moebius-lean",
|
50 |
+
"weights": "pytorch_lora_weights.safetensors",
|
51 |
+
"is_compatible": true,
|
52 |
+
"likes": 0,
|
53 |
+
"downloads": 0
|
54 |
+
},
|
55 |
+
{
|
56 |
+
"image": "https://jbilcke-hf-ai-clip-factory.hf.space/images/models/sdxl-foundation-2.jpg",
|
57 |
+
"title": "sdxl-foundation-2",
|
58 |
+
"repo": "jbilcke-hf/sdxl-foundation-2",
|
59 |
+
"trigger_word": "hober-mallow",
|
60 |
+
"weights": "pytorch_lora_weights.safetensors",
|
61 |
+
"is_compatible": true,
|
62 |
+
"likes": 0,
|
63 |
+
"downloads": 0
|
64 |
+
},
|
65 |
]
|
66 |
|
67 |
return hardcoded.concat(compatibleModels)
|