Spaces:
Configuration error
Configuration error
File size: 2,036 Bytes
78617b8 fd1ff15 b6a29b8 113d38c b6a29b8 fd1ff15 78617b8 b6a29b8 113d38c b6a29b8 113d38c b6a29b8 78617b8 113d38c 78617b8 fd1ff15 78617b8 113d38c 78617b8 113d38c 78617b8 fd1ff15 78617b8 |
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 |
module.exports = {
title: "LEDITS++",
icon: "magician.png",
description: "Limitless Image Editing using Text-to-Image Models",
menu: async (kernel) => {
let installed = await kernel.exists(__dirname, "venv")
let installing = await kernel.running(__dirname, "install.json")
if (installing) {
return [{
default: true,
icon: "fa-solid fa-plug",
text: "Installing",
href: "install.json",
params: { fullscreen: true }
}]
} else if (installed) {
let session = await kernel.require(__dirname, "session.json")
let running = await kernel.running(__dirname, "start.json")
if (running) {
if (session && session.url) {
return [{
icon: "fa-solid fa-spin fa-circle-notch",
text: "Running"
}, {
default: true,
icon: "fa-solid fa-rocket",
text: "Open Web UI",
href: session.url,
target: "_blank"
}, {
icon: 'fa-solid fa-terminal',
text: "Terminal",
href: "start.json",
params: { fullscreen: true }
}]
} else {
return [{
icon: "fa-solid fa-spin fa-circle-notch",
text: "Running"
}, {
default: true,
icon: 'fa-solid fa-terminal',
text: "Terminal",
href: "start.json",
params: { fullscreen: true }
}]
}
} else {
return [{
default: true,
icon: "fa-solid fa-power-off",
text: "Launch",
href: "start.json",
params: { fullscreen: true, run: true }
}, {
icon: "fa-regular fa-circle-xmark",
text: "Reset",
href: "reset.json",
}]
}
} else {
return [{
default: true,
icon: "fa-solid fa-plug",
text: "Install",
href: "install.json",
params: { run: true, fullscreen: true }
}]
}
}
}
|