2024-10-06 09:15:44 +02:00
|
|
|
export const MODELS = {
|
2024-10-30 14:33:41 +01:00
|
|
|
"upscayl-standard-4x": {
|
|
|
|
id: "upscayl-standard-4x",
|
2024-10-06 09:15:44 +02:00
|
|
|
name: "Upscayl Standard",
|
|
|
|
},
|
2024-10-30 14:33:41 +01:00
|
|
|
"upscayl-lite-4x": {
|
|
|
|
id: "upscayl-lite-4x",
|
2024-10-06 09:15:44 +02:00
|
|
|
name: "Upscayl Lite",
|
|
|
|
},
|
|
|
|
remacri: {
|
2024-10-30 14:33:41 +01:00
|
|
|
id: "remacri-4x",
|
2024-10-06 09:15:44 +02:00
|
|
|
name: "Remacri (Non-Commercial)",
|
|
|
|
},
|
|
|
|
ultramix_balanced: {
|
2024-10-30 14:33:41 +01:00
|
|
|
id: "ultramix-balanced-4x",
|
2024-10-06 09:15:44 +02:00
|
|
|
name: "Ultramix (Non-Commercial)",
|
|
|
|
},
|
|
|
|
ultrasharp: {
|
2024-10-30 14:33:41 +01:00
|
|
|
id: "ultrasharp-4x",
|
2024-10-06 09:15:44 +02:00
|
|
|
name: "Ultrasharp (Non-Commercial)",
|
|
|
|
},
|
2024-10-30 14:33:41 +01:00
|
|
|
"digital-art-4x": {
|
|
|
|
id: "digital-art-4x",
|
2024-10-06 09:15:44 +02:00
|
|
|
name: "Digital Art",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export type ModelId = keyof typeof MODELS;
|
2024-01-16 07:30:07 +01:00
|
|
|
|
2024-10-06 09:15:44 +02:00
|
|
|
export const DEFAULT_MODELS_ID_LIST = Object.keys(MODELS).map(
|
|
|
|
(modelId) => modelId,
|
|
|
|
);
|