mirror of
https://github.com/open-webui/open-webui.git
synced 2026-03-22 14:13:08 -05:00
Support headless automatic1111 deployments #1920
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @cjnosal on GitHub (Aug 28, 2024).
Originally assigned to: @tjbck on GitHub.
Is your feature request related to a problem? Please describe.
webui.sh --listen --api --api-log --nowebuiOops! The URL you provided is invalid. Please double-check and try again.When launched with --nowebui, automatic1111 will only respond to /sdapi requests. The automatic1111 logs shows the failing request is
HEAD / HTTP/1.1" 404 Not FoundWhen redeployed without
--nowebui, the integration succeeds and the automatic1111 logs show:Describe the solution you'd like
As open-webui already makes 2 /sdapi calls when viewing/updating the image configuration, the HEAD request is redundant and can be removed to support headless automatic1111 deployments.
Describe alternatives you've considered
Request automatic1111 preserve the
HEAD /endpoint when the UI is disabled.