-
Notifications
You must be signed in to change notification settings - Fork 0
/
pinokio.js
112 lines (111 loc) · 3.15 KB
/
pinokio.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
const path = require('path')
module.exports = {
version: "2.0",
title: "diffusers-image-fill-3",
description: "Inpaint or Remove objects from an image - or Outpaint - or Outpaint Video Zoom: 16GB+ GPU | 32GB+ RAM | 20GB+ Storage -- Read the README for more!",
icon: "icon.gif",
menu: async (kernel, info) => {
let installed = info.exists(__dirname, "cache")
let running = {
install: info.running("install.js"),
start: info.running("start.js"),
update: info.running("update.js"),
reset: info.running("delete-cache.js")
}
if (running.install) {
return [{
default: true,
icon: "fa-solid fa-plug",
text: "Installing",
href: "install.js",
}]
} else if (installed) {
if (running.start) {
let local = info.local("start.js")
if (local && local.url) {
return [{
default: true,
icon: "fa-solid fa-rocket",
text: "Open Web UI",
href: local.url,
}, {
icon: 'fa-solid fa-terminal',
text: "Terminal",
href: "start.js",
}, {
icon: "fa-regular fa-circle-xmark",
text: "Delete Gradio Image Cache",
href: "delete-cache.js",
confirm: "Are you sure you wish to delete the Gradio Image cache?"
}]
} else {
return [{
default: true,
icon: 'fa-solid fa-terminal',
text: "Terminal",
href: "start.js",
}]
}
} else if (running.update) {
return [{
default: true,
icon: 'fa-solid fa-terminal',
text: "Updating",
href: "update.js",
}]
} else if (running.reset) {
return [{
default: true,
icon: 'fa-solid fa-terminal',
text: "Deleting Gradio Image Cache",
href: "delete-cache.js",
}]
} else {
return [{
default: true,
icon: "fa-solid fa-power-off",
text: "Start Inpaint/Remove",
href: "start.js",
params: {
type: "inpaint"
}
}, {
icon: "fa-solid fa-power-off",
text: "Start Outpaint",
href: "start.js",
params: {
type: "outpaint"
}
}, {
icon: "fa-solid fa-power-off",
text: "Start Outpaint Video Zoom",
href: "start.js",
params: {
type: "zoom"
}
}, {
icon: "fa-solid fa-plug",
text: "Update",
href: "update.js",
confirm: "Are you sure you wish to update this app?"
}, {
icon: "fa-regular fa-circle-xmark",
text: "Delete Gradio Image Cache",
href: "delete-cache.js",
confirm: "Are you sure you wish to delete the Gradio Image cache?"
}, {
icon: 'fa-solid fa-folder',
text: "Output Folder",
href: "outputs?fs",
}]
}
} else {
return [{
default: true,
icon: "fa-solid fa-plug",
text: "Install",
href: "install.js",
}]
}
}
}