You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
391 B
14 lines
391 B
namespace StabilityMatrix.Core.Models.Api.Lykos; |
|
|
|
public class GetRecommendedModelsResponse |
|
{ |
|
public required ModelLists Sd15 { get; set; } |
|
public required ModelLists Sdxl { get; set; } |
|
public required ModelLists Decoders { get; set; } |
|
} |
|
|
|
public class ModelLists |
|
{ |
|
public IEnumerable<int>? CivitAi { get; set; } |
|
public IEnumerable<string>? HuggingFace { get; set; } |
|
}
|
|
|