1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-13 17:32:39 +01:00
upscayl/common/models-list.ts

29 lines
602 B
TypeScript
Raw Normal View History

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-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-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-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-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-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",
},
};
export type ModelId = keyof typeof MODELS;