mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
22 lines
598 B
YAML
22 lines
598 B
YAML
name: stablediffusion
|
|
parameters:
|
|
model: huggingface://Lykon/DreamShaper/DreamShaper_8_pruned.safetensors
|
|
backend: diffusers
|
|
step: 25
|
|
f16: true
|
|
|
|
diffusers:
|
|
pipeline_type: StableDiffusionPipeline
|
|
cuda: true
|
|
enable_parameters: "negative_prompt,num_inference_steps"
|
|
scheduler_type: "k_dpmpp_2m"
|
|
|
|
usage: |
|
|
curl http://localhost:8080/v1/images/generations \
|
|
-H "Content-Type: application/json" \
|
|
-d '{
|
|
"prompt": "<positive prompt>|<negative prompt>",
|
|
"model": "dreamshaper",
|
|
"step": 25,
|
|
"size": "512x512"
|
|
}' |