2024-10-06 12:45:44 +05:30
|
|
|
export const MODELS = {
|
2024-10-30 19:03:41 +05:30
|
|
|
"upscayl-standard-4x": {
|
|
|
|
id: "upscayl-standard-4x",
|
2024-10-06 12:45:44 +05:30
|
|
|
name: "Upscayl Standard",
|
2024-12-15 14:41:03 +05:30
|
|
|
description: "Suitable for most images.",
|
2024-10-06 12:45:44 +05:30
|
|
|
},
|
2024-10-30 19:03:41 +05:30
|
|
|
"upscayl-lite-4x": {
|
|
|
|
id: "upscayl-lite-4x",
|
2024-10-06 12:45:44 +05:30
|
|
|
name: "Upscayl Lite",
|
2024-12-15 14:41:03 +05:30
|
|
|
description:
|
|
|
|
"Suitable for most images. High-speed upscaling with minimal quality loss.",
|
2024-10-06 12:45:44 +05:30
|
|
|
},
|
2024-11-25 19:09:32 +05:30
|
|
|
"remacri-4x": {
|
2024-10-30 19:03:41 +05:30
|
|
|
id: "remacri-4x",
|
2024-10-06 12:45:44 +05:30
|
|
|
name: "Remacri (Non-Commercial)",
|
2024-12-15 14:41:03 +05:30
|
|
|
description:
|
|
|
|
"For natural images. Added sharpness and detail. No commercial use.",
|
2024-10-06 12:45:44 +05:30
|
|
|
},
|
2024-11-25 19:09:32 +05:30
|
|
|
"ultramix-balanced-4x": {
|
2024-10-30 19:03:41 +05:30
|
|
|
id: "ultramix-balanced-4x",
|
2024-10-06 12:45:44 +05:30
|
|
|
name: "Ultramix (Non-Commercial)",
|
2024-12-15 14:41:03 +05:30
|
|
|
description: "For natural images with a balance of sharpness and detail.",
|
2024-10-06 12:45:44 +05:30
|
|
|
},
|
2024-11-25 19:09:32 +05:30
|
|
|
"ultrasharp-4x": {
|
2024-10-30 19:03:41 +05:30
|
|
|
id: "ultrasharp-4x",
|
2024-10-06 12:45:44 +05:30
|
|
|
name: "Ultrasharp (Non-Commercial)",
|
2024-12-15 14:41:03 +05:30
|
|
|
description: "For natural images with a focus on sharpness.",
|
2024-10-06 12:45:44 +05:30
|
|
|
},
|
2024-10-30 19:03:41 +05:30
|
|
|
"digital-art-4x": {
|
|
|
|
id: "digital-art-4x",
|
2024-10-06 12:45:44 +05:30
|
|
|
name: "Digital Art",
|
2024-12-15 14:41:03 +05:30
|
|
|
description: "For digital art and illustrations.",
|
2024-10-06 12:45:44 +05:30
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export type ModelId = keyof typeof MODELS;
|