1
0
Fork 0

include highres params in retry

This commit is contained in:
Sean Sube 2023-04-01 12:05:55 -05:00
parent 6aac0fe56b
commit a1f54f05eb
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 2 additions and 1 deletions

View File

@ -518,6 +518,7 @@ export function makeClient(root: string, f = fetch): ApiClient {
model,
params,
upscale,
highres,
},
};
},
@ -688,7 +689,7 @@ export function makeClient(root: string, f = fetch): ApiClient {
case 'outpaint':
return this.outpaint(retry.model, retry.params, retry.upscale);
case 'txt2img':
return this.txt2img(retry.model, retry.params, retry.upscale);
return this.txt2img(retry.model, retry.params, retry.upscale, retry.highres);
case 'upscale':
return this.upscale(retry.model, retry.params, retry.upscale);
default: