feat: simple openai image generation api compatiple server (#1037)

This commit is contained in:
leejet
2025-12-13 13:53:21 +08:00
committed by GitHub
parent 11ab095230
commit 2aecdd57ca
35 changed files with 15915 additions and 1705 deletions

View File

@@ -9,7 +9,7 @@ docker build -t sd .
### Run
```shell
docker run -v /path/to/models:/models -v /path/to/output/:/output sd [args...]
docker run -v /path/to/models:/models -v /path/to/output/:/output sd-cli [args...]
# For example
# docker run -v ./models:/models -v ./build:/output sd -m /models/sd-v1-4.ckpt -p "a lovely cat" -v -o /output/output.png
# docker run -v ./models:/models -v ./build:/output sd-cli -m /models/sd-v1-4.ckpt -p "a lovely cat" -v -o /output/output.png
```