https://github.com/runpod-workers/worker-a1111
Automatic1111 serverless worker.
https://github.com/runpod-workers/worker-a1111
automatic1111 diffusers runpod-worker stable-diffusion
Last synced: 3 months ago
JSON representation
Automatic1111 serverless worker.
- Host: GitHub
- URL: https://github.com/runpod-workers/worker-a1111
- Owner: runpod-workers
- License: mit
- Created: 2023-05-19T16:46:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-19T16:56:48.000Z (8 months ago)
- Last Synced: 2025-06-25T23:35:26.465Z (7 months ago)
- Topics: automatic1111, diffusers, runpod-worker, stable-diffusion
- Language: Python
- Homepage:
- Size: 83 KB
- Stars: 89
- Watchers: 6
- Forks: 148
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Automatic1111 Stable Diffusion web UI
[](https://www.runpod.io/console/hub/runpod-workers/worker-a1111)
- Runs [Automatic1111 Stable Diffusion WebUI](https://github.com/AUTOMATIC1111/stable-diffusion-webui) and exposes its `txt2img` API endpoint
- Comes pre-packaged with the [**Deliberate v6**](https://huggingface.co/XpucT/Deliberate) model
---
## Usage
The `input` object accepts any valid parameter for the Automatic1111 `/sdapi/v1/txt2img` endpoint. Refer to the [Automatic1111 API Documentation](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/API) for a full list of available parameters (like `seed`, `sampler_name`, `batch_size`, `styles`, `override_settings`, etc.).
### Example Request
Here's an example payload to generate an image:
```json
{
"input": {
"prompt": "a photograph of an astronaut riding a horse",
"negative_prompt": "text, watermark, blurry, low quality",
"steps": 25,
"cfg_scale": 7,
"width": 512,
"height": 512,
"sampler_name": "DPM++ 2M Karras"
}
}
```