leditsplusplus / pinokio.js
cocktailpeanut's picture
update
fd1ff15
raw
history blame
1.08 kB
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")
if (installed) {
let session = await kernel.require(__dirname, "session.json")
let running = await kernel.running(__dirname, "start.json")
if (running) {
return [{
icon: "fa-solid fa-spin fa-circle-notch",
text: "Running"
}, {
icon: "fa-solid fa-rocket",
text: "Open UI",
href: (session && session.url ? session.url : "http://127.0.0.1:7860"),
target: "_blank"
}]
} else {
return [{
icon: "fa-solid fa-power-off",
text: "Launch",
href: "start.json",
params: { fullscreen: true, run: true }
}]
}
} else {
return [{
icon: "fa-solid fa-plug",
text: "Install",
href: "install.json",
params: { run: true, fullscreen: true }
}]
}
}
}