Browse Source

moar options in all the model browsers

pull/495/head
JT 9 months ago
parent
commit
477d5302dd
  1. 2
      CHANGELOG.md
  2. 11
      StabilityMatrix.Avalonia/Assets/hf-packages.json
  3. 12
      StabilityMatrix.Core/Models/Api/CivitBaseModelType.cs

2
CHANGELOG.md

@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
## v2.9.0-pre.2
### Added
- Added `--launch-package` argument to launch a specific package on startup, using display name or package ID (i.e. `--launch-package "Stable Diffusion WebUI Forge"` or `--launch-package c0b3ecc5-9664-4be9-952d-a10b3dcaee14`)
- Added more Base Model search options to the CivitAI Model Browser
- Added more models to the HuggingFace Model Browser
### Changed
- (Internal) Updated to Avalonia 11.0.9
### Fixed

11
StabilityMatrix.Avalonia/Assets/hf-packages.json

@ -58,6 +58,17 @@
"LicenseType": "Stable-Video-Diffusion-NC-Community",
"LicensePath": "LICENSE"
},
{
"ModelCategory": "BaseModel",
"ModelName": "Stable Cascade",
"RepositoryPath": "stabilityai/stable-cascade",
"Files": [
"comfyui_checkpoints/stable_cascade_stage_b.safetensors",
"comfyui_checkpoints/stable_cascade_stage_c.safetensors"
],
"LicenseType": "stable-cascade-nc-community",
"LicensePath": "LICENSE"
},
{
"ModelCategory": "ControlNet",
"ModelName": "Canny",

12
StabilityMatrix.Core/Models/Api/CivitBaseModelType.cs

@ -26,6 +26,18 @@ public enum CivitBaseModelType
[StringValue("SDXL 1.0 LCM")]
Sdxl10Lcm,
[StringValue("SDXL Distilled")]
SdxlDistilled,
[StringValue("SDXL Lightning")]
SdxlLightning,
[StringValue("SVD")]
SVD,
[StringValue("Stable Cascade")]
StableCascade,
[StringValue("SDXL Turbo")]
SdxlTurbo,
Other,

Loading…
Cancel
Save