44cf9c0e70
Been working on this when I could the last few days. Not quite infinity. Middle mouse button drag, ctrl mouse wheel zoom. Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com>
23 lines
579 B
JavaScript
23 lines
579 B
JavaScript
/**
|
|
* Stable Diffusion Request
|
|
*
|
|
* @typedef StableDiffusionRequest
|
|
* @property {string} prompt Stable Diffusion prompt
|
|
* @property {string} negative_prompt Stable Diffusion negative prompt
|
|
*/
|
|
|
|
/**
|
|
* Stable Diffusion Response
|
|
*
|
|
* @typedef StableDiffusionResponse
|
|
* @property {string[]} images Response images
|
|
*/
|
|
|
|
/**
|
|
* Stable Diffusion Progress Response
|
|
*
|
|
* @typedef StableDiffusionProgressResponse
|
|
* @property {number} progress Progress (from 0 to 1)
|
|
* @property {number} eta_relative Estimated finish time
|
|
* @property {?string} current_image Progress image
|
|
*/
|