Configuring AUTOMATIC1111 Base URL in AdminPanel>Images displays Oops! 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 Found
When redeployed without --nowebui, the integration succeeds and the automatic1111 logs show:
"GET /sdapi/v1/sd-models HTTP/1.1" 200 OK
"GET /sdapi/v1/options HTTP/1.1" 200 OK
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.
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.**
1. Deploy headless automatic1111: `webui.sh --listen --api --api-log --nowebui`
2. Configuring AUTOMATIC1111 Base URL in AdminPanel>Images displays `Oops! 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 Found`
When redeployed without `--nowebui`, the integration succeeds and the automatic1111 logs show:
```
"GET /sdapi/v1/sd-models HTTP/1.1" 200 OK
"GET /sdapi/v1/options HTTP/1.1" 200 OK
```
**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.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
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.