Skip to content

Commit 13d44f4

Browse files
chore(ui): prettier
1 parent 550fbde commit 13d44f4

File tree

1 file changed

+12
-1
lines changed
  • invokeai/frontend/web/src/features/nodes/types

1 file changed

+12
-1
lines changed

invokeai/frontend/web/src/features/nodes/types/common.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,18 @@ export type SchedulerField = z.infer<typeof zSchedulerField>;
6666
// #endregion
6767

6868
// #region Model-related schemas
69-
const zBaseModel = z.enum(['any', 'sd-1', 'sd-2', 'sd-3', 'sdxl', 'sdxl-refiner', 'flux', 'cogview4', 'imagen3', 'chatgpt-4o']);
69+
const zBaseModel = z.enum([
70+
'any',
71+
'sd-1',
72+
'sd-2',
73+
'sd-3',
74+
'sdxl',
75+
'sdxl-refiner',
76+
'flux',
77+
'cogview4',
78+
'imagen3',
79+
'chatgpt-4o',
80+
]);
7081
export type BaseModelType = z.infer<typeof zBaseModel>;
7182
export const zMainModelBase = z.enum(['sd-1', 'sd-2', 'sd-3', 'sdxl', 'flux', 'cogview4', 'imagen3', 'chatgpt-4o']);
7283
export type MainModelBase = z.infer<typeof zMainModelBase>;

0 commit comments

Comments
 (0)