File size: 215 Bytes
b9da07f
6c850b1
b9da07f
 
4b8ee81
b9da07f
4b8ee81
b9da07f
4b8ee81
b9da07f
6c850b1
1
2
3
4
5
6
7
8
9
10
11
12
from pydantic import BaseModel
from fastapi import Form


class InpaintingRequest(BaseModel):
    prompt: str
    negative_prompt: str
    num_inference_steps: int
    strength: float
    guidance_scale: float