mirror of
https://github.com/nod-ai/SHARK-Studio.git
synced 2026-01-15 00:37:59 -05:00
* SD/API: Add missing a1111 API features for Koboldcpp * Refactors SD api functions into their own file * Adds the following apis implemented by a1111 as needed by koboldcpp: - adds /sdapi/v1/sd-models (lists available models) - adds /sdapi/v1/options (only the bare minimum needed) * Adds optional CORS support, use the '--api_accept_origin' command line argument to activate and configure. * Extends existing APIs to include optional sampler/scheduler selection * Extends /sdapi/v1/textimg to recognise the method used by koboldcpp to select the model. * Where possible take values not provided to the API in the request from the existing relevant command line parameters rather than hardcoding them. * return a 400 response when a request doesn't have required properties. * changed default schedulers and models for some apis to ones that actually seem to work. * Update api_test.py to include the new APIs. * Update api_test.py to include a '--verbose' command line option. * SD/API: Take more API values from args * Take LoRA from '--use_lora' command line arg if specified * Take device from '--device' command line arg if specified (substring match, so a short name such as 'vulkan://0' should work) * SD/API: add more endpoints and pydantic typing * Mount the whole of /sdapi from index.py as a FastAPI application, rather than each endpoint individually * Add the following additional API endpoints: * /sdapi/v1/samplers * /sdapi/v1/cmd-flags * Make scheduler/sampler selection checking and fallback much more robust. * Support aliasing some A1111 scheduler/sampler names to the diffusers ones we are using. * Expand response /sdapi/v1/options to add a few more things. * Split non-api functions and variables into their own utils.py file. * Support 'n_iter' request property and the return of multiple images from generation endpoints. Equivalent of '--batch_count', batch_size is stil hardcoded at 1 * Include (some) hires_fix request properties in txt2img endpoint * Rework endpoints using pydantic model classes for better request validation and so we get much improved swagger api docs at /sdapi/docs and redoc at /sdapi/redoc * SD/API Delete commented out code from index.py * Delete some code that is no longer needed by the SD API in index.py (and one line sdapi_v1.py) that I'd previously only commented out. * SD/UI: Add shark_sd_koboldcpp.md document * Add documentation on how to set up Koboldcpp with SHARK * Link this and the existing blender set up document from the main README.md * SD/API Improve stencil options in img2img endpoint In /sdapi/v1/img2img: * Add zoedepth to the controlnet use_stencil options * Require and use second image as stencil mask for controlnet scribble
84 lines
2.2 KiB
Python
84 lines
2.2 KiB
Python
from apps.stable_diffusion.web.ui.txt2img_ui import (
|
|
txt2img_inf,
|
|
txt2img_web,
|
|
txt2img_custom_model,
|
|
txt2img_gallery,
|
|
txt2img_png_info_img,
|
|
txt2img_status,
|
|
txt2img_sendto_img2img,
|
|
txt2img_sendto_inpaint,
|
|
txt2img_sendto_outpaint,
|
|
txt2img_sendto_upscaler,
|
|
)
|
|
from apps.stable_diffusion.web.ui.img2img_ui import (
|
|
img2img_inf,
|
|
img2img_web,
|
|
img2img_custom_model,
|
|
img2img_gallery,
|
|
img2img_init_image,
|
|
img2img_status,
|
|
img2img_sendto_inpaint,
|
|
img2img_sendto_outpaint,
|
|
img2img_sendto_upscaler,
|
|
)
|
|
from apps.stable_diffusion.web.ui.inpaint_ui import (
|
|
inpaint_inf,
|
|
inpaint_web,
|
|
inpaint_custom_model,
|
|
inpaint_gallery,
|
|
inpaint_init_image,
|
|
inpaint_status,
|
|
inpaint_sendto_img2img,
|
|
inpaint_sendto_outpaint,
|
|
inpaint_sendto_upscaler,
|
|
)
|
|
from apps.stable_diffusion.web.ui.outpaint_ui import (
|
|
outpaint_inf,
|
|
outpaint_web,
|
|
outpaint_custom_model,
|
|
outpaint_gallery,
|
|
outpaint_init_image,
|
|
outpaint_status,
|
|
outpaint_sendto_img2img,
|
|
outpaint_sendto_inpaint,
|
|
outpaint_sendto_upscaler,
|
|
)
|
|
from apps.stable_diffusion.web.ui.upscaler_ui import (
|
|
upscaler_inf,
|
|
upscaler_web,
|
|
upscaler_custom_model,
|
|
upscaler_gallery,
|
|
upscaler_init_image,
|
|
upscaler_status,
|
|
upscaler_sendto_img2img,
|
|
upscaler_sendto_inpaint,
|
|
upscaler_sendto_outpaint,
|
|
)
|
|
from apps.stable_diffusion.web.ui.model_manager import (
|
|
model_web,
|
|
hf_models,
|
|
modelmanager_sendto_txt2img,
|
|
modelmanager_sendto_img2img,
|
|
modelmanager_sendto_inpaint,
|
|
modelmanager_sendto_outpaint,
|
|
modelmanager_sendto_upscaler,
|
|
)
|
|
from apps.stable_diffusion.web.ui.lora_train_ui import lora_train_web
|
|
from apps.stable_diffusion.web.ui.stablelm_ui import (
|
|
stablelm_chat,
|
|
llm_chat_api,
|
|
)
|
|
from apps.stable_diffusion.web.ui.generate_config import model_config_web
|
|
from apps.stable_diffusion.web.ui.minigpt4_ui import minigpt4_web
|
|
from apps.stable_diffusion.web.ui.outputgallery_ui import (
|
|
outputgallery_web,
|
|
outputgallery_tab_select,
|
|
outputgallery_watch,
|
|
outputgallery_filename,
|
|
outputgallery_sendto_txt2img,
|
|
outputgallery_sendto_img2img,
|
|
outputgallery_sendto_inpaint,
|
|
outputgallery_sendto_outpaint,
|
|
outputgallery_sendto_upscaler,
|
|
)
|