add gradually inpainting mode

This commit is contained in:
Qing
2022-06-13 16:50:51 +08:00
parent d43d0694c2
commit 335685d581
15 changed files with 246 additions and 6 deletions

View File

@@ -32,6 +32,7 @@ export const shortcutsState = atom<boolean>({
export interface Settings {
show: boolean
graduallyInpainting: boolean
runInpaintingManually: boolean
model: AIModel
@@ -48,6 +49,7 @@ export interface Settings {
export const settingStateDefault = {
show: false,
graduallyInpainting: false,
runInpaintingManually: false,
model: AIModel.LAMA,
ldmSteps: 50,