13 lines
481 B
JavaScript
13 lines
481 B
JavaScript
//tips that will display when you hover over a html element
|
|
const tips_json = {
|
|
txt2img: "use this mode to generate images from text only",
|
|
img2img: "use this mode to generate variation of an image",
|
|
inpaint: "use this mode to generate variation of a small area of an image, while keeping the rest of the image intact",
|
|
outpaint: "use this mode to (1) fill any missing area of an image,(2) expand an image",
|
|
generate: "create"
|
|
|
|
|
|
}
|
|
|
|
module.exports = {tips_json}
|