Browse Source

Merge pull request #365 from ionite34/trigger-words

Added the download & display of trigger words for models
pull/324/head
JT 1 year ago committed by GitHub
parent
commit
8e450345e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      CHANGELOG.md
  2. 3
      StabilityMatrix.Avalonia/DesignData/DesignData.cs
  3. 18
      StabilityMatrix.Avalonia/Languages/Resources.Designer.cs
  4. 6
      StabilityMatrix.Avalonia/Languages/Resources.resx
  5. 16
      StabilityMatrix.Avalonia/ViewModels/CheckpointManager/CheckpointFile.cs
  6. 10
      StabilityMatrix.Avalonia/Views/CheckpointBrowserPage.axaml
  7. 166
      StabilityMatrix.Avalonia/Views/CheckpointsPage.axaml
  8. 25
      StabilityMatrix.Core/Models/ConnectedModelInfo.cs

20
CHANGELOG.md

@ -5,6 +5,21 @@ All notable changes to Stability Matrix will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2.0.0.html).
## v2.7.0-dev.3
### Added
#### Model Browser
- Right clicking anywhere on the model card will open the same menu as the three-dots button
- New model downloads will save trigger words in metadata, if available
#### Checkpoints Page
- Added "Copy Trigger Words" option to the three-dots menu on the Checkpoints page (when data is available)
- Added trigger words on checkpoint card and tooltip
### Changed
#### Model Browser
- Improved number formatting with K/M suffixes for download and favorite counts
- Animated zoom effect on hovering over model images
#### Checkpoints Page
- Rearranged top row layout to use CommandBar
## v2.7.0-dev.2 ## v2.7.0-dev.2
### Added ### Added
#### General #### General
@ -38,11 +53,6 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
## v2.6.3 ## v2.6.3
### Fixed ### Fixed
- Fixed InvalidOperationException during prerequisite installs on certain platforms where process name and duration reporting are not supported - Fixed InvalidOperationException during prerequisite installs on certain platforms where process name and duration reporting are not supported
## v2.7.0-dev.3
## Changed
#### Model Browser
- Improved number formatting with K/M suffixes for download and favorite counts
- Animated zoom effect on hovering over model images
## v2.6.2 ## v2.6.2
### Changed ### Changed

3
StabilityMatrix.Avalonia/DesignData/DesignData.cs

@ -206,7 +206,8 @@ public static class DesignData
Format = CivitModelFormat.SafeTensor, Format = CivitModelFormat.SafeTensor,
Fp = CivitModelFpType.fp16, Fp = CivitModelFpType.fp16,
Size = CivitModelSize.pruned, Size = CivitModelSize.pruned,
} },
TrainedWords = ["aurora", "lightning"]
} }
}, },
new() new()

18
StabilityMatrix.Avalonia/Languages/Resources.Designer.cs generated

@ -167,6 +167,15 @@ namespace StabilityMatrix.Avalonia.Languages {
} }
} }
/// <summary>
/// Looks up a localized string similar to Copy Trigger Words.
/// </summary>
public static string Action_CopyTriggerWords {
get {
return ResourceManager.GetString("Action_CopyTriggerWords", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Delete. /// Looks up a localized string similar to Delete.
/// </summary> /// </summary>
@ -1796,6 +1805,15 @@ namespace StabilityMatrix.Avalonia.Languages {
} }
} }
/// <summary>
/// Looks up a localized string similar to Trigger words:.
/// </summary>
public static string Label_TriggerWords {
get {
return ResourceManager.GetString("Label_TriggerWords", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to An unexpected error occurred. /// Looks up a localized string similar to An unexpected error occurred.
/// </summary> /// </summary>

6
StabilityMatrix.Avalonia/Languages/Resources.resx

@ -804,4 +804,10 @@
<data name="TextTemplate_LastChecked" xml:space="preserve"> <data name="TextTemplate_LastChecked" xml:space="preserve">
<value>Last checked: {0}</value> <value>Last checked: {0}</value>
</data> </data>
<data name="Action_CopyTriggerWords" xml:space="preserve">
<value>Copy Trigger Words</value>
</data>
<data name="Label_TriggerWords" xml:space="preserve">
<value>Trigger words:</value>
</data>
</root> </root>

16
StabilityMatrix.Avalonia/ViewModels/CheckpointManager/CheckpointFile.cs

@ -60,6 +60,9 @@ public partial class CheckpointFile : ViewModelBase
public string FileName => Path.GetFileName(FilePath); public string FileName => Path.GetFileName(FilePath);
public bool CanShowTriggerWords =>
ConnectedModel != null && !string.IsNullOrWhiteSpace(ConnectedModel.TrainedWordsString);
public ObservableCollection<string> Badges { get; set; } = new(); public ObservableCollection<string> Badges { get; set; } = new();
public static readonly string[] SupportedCheckpointExtensions = public static readonly string[] SupportedCheckpointExtensions =
@ -215,6 +218,19 @@ public partial class CheckpointFile : ViewModelBase
ProcessRunner.OpenUrl($"https://civitai.com/models/{ConnectedModel.ModelId}"); ProcessRunner.OpenUrl($"https://civitai.com/models/{ConnectedModel.ModelId}");
} }
[RelayCommand]
private Task CopyTriggerWords()
{
if (ConnectedModel == null)
return Task.CompletedTask;
var words = ConnectedModel.TrainedWordsString;
if (string.IsNullOrWhiteSpace(words))
return Task.CompletedTask;
return App.Clipboard.SetTextAsync(words);
}
/// <summary> /// <summary>
/// Indexes directory and yields all checkpoint files. /// Indexes directory and yields all checkpoint files.
/// First we match all files with supported extensions. /// First we match all files with supported extensions.

10
StabilityMatrix.Avalonia/Views/CheckpointBrowserPage.axaml

@ -78,6 +78,16 @@
Margin="8" Margin="8"
ClipToBounds="True" ClipToBounds="True"
CornerRadius="8"> CornerRadius="8">
<Border.ContextFlyout>
<MenuFlyout>
<MenuItem Header="{x:Static lang:Resources.Action_OpenOnCivitAi}"
Command="{Binding OpenModelCommand}">
<MenuItem.Icon>
<ui:SymbolIcon Symbol="Open" />
</MenuItem.Icon>
</MenuItem>
</MenuFlyout>
</Border.ContextFlyout>
<Button <Button
Name="ModelCard" Name="ModelCard"
Classes="transparent-full" Classes="transparent-full"

166
StabilityMatrix.Avalonia/Views/CheckpointsPage.axaml

@ -9,10 +9,11 @@
xmlns:system="clr-namespace:System;assembly=System.Runtime" xmlns:system="clr-namespace:System;assembly=System.Runtime"
xmlns:checkpointManager="clr-namespace:StabilityMatrix.Avalonia.ViewModels.CheckpointManager" xmlns:checkpointManager="clr-namespace:StabilityMatrix.Avalonia.ViewModels.CheckpointManager"
xmlns:lang="clr-namespace:StabilityMatrix.Avalonia.Languages" xmlns:lang="clr-namespace:StabilityMatrix.Avalonia.Languages"
xmlns:avalonia="https://github.com/projektanker/icons.avalonia"
d:DataContext="{x:Static mocks:DesignData.CheckpointsPageViewModel}" d:DataContext="{x:Static mocks:DesignData.CheckpointsPageViewModel}"
x:CompileBindings="True" x:CompileBindings="True"
x:DataType="vm:CheckpointsPageViewModel" x:DataType="vm:CheckpointsPageViewModel"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="650"
x:Class="StabilityMatrix.Avalonia.Views.CheckpointsPage"> x:Class="StabilityMatrix.Avalonia.Views.CheckpointsPage">
<controls:UserControlBase.Resources> <controls:UserControlBase.Resources>
@ -50,7 +51,7 @@
Margin="4"> Margin="4">
<Interaction.Behaviors> <Interaction.Behaviors>
<BehaviorCollection> <BehaviorCollection>
<ContextDragBehavior HorizontalDragThreshold="6" VerticalDragThreshold="6"/> <ContextDragBehavior HorizontalDragThreshold="6" VerticalDragThreshold="6" />
</BehaviorCollection> </BehaviorCollection>
</Interaction.Behaviors> </Interaction.Behaviors>
@ -65,13 +66,18 @@
Text="{x:Static lang:Resources.Action_Delete}" IconSource="Delete" /> Text="{x:Static lang:Resources.Action_Delete}" IconSource="Delete" />
<ui:MenuFlyoutItem Command="{Binding OpenOnCivitAiCommand}" <ui:MenuFlyoutItem Command="{Binding OpenOnCivitAiCommand}"
Text="{x:Static lang:Resources.Action_OpenOnCivitAi}" IconSource="Link" Text="{x:Static lang:Resources.Action_OpenOnCivitAi}" IconSource="Link"
IsVisible="{Binding IsConnectedModel}"/> IsVisible="{Binding IsConnectedModel}" />
<ui:MenuFlyoutItem Command="{Binding CopyTriggerWordsCommand}"
IsVisible="{Binding CanShowTriggerWords}"
Text="{x:Static lang:Resources.Action_CopyTriggerWords}"
IconSource="Copy" />
</ui:FAMenuFlyout> </ui:FAMenuFlyout>
</controls:Card.ContextFlyout> </controls:Card.ContextFlyout>
<Grid> <Grid>
<!-- Main contents, hidden when IsLoading is true --> <!-- Main contents, hidden when IsLoading is true -->
<StackPanel MinHeight="70"> <StackPanel MinHeight="70">
<Grid ColumnDefinitions="*, Auto" RowDefinitions="Auto,*,Auto" IsVisible="{Binding !IsLoading}"> <Grid ColumnDefinitions="*, Auto" RowDefinitions="Auto,*,Auto,Auto"
IsVisible="{Binding !IsLoading}">
<StackPanel <StackPanel
Grid.ColumnSpan="2" Grid.ColumnSpan="2"
HorizontalAlignment="Left" HorizontalAlignment="Left"
@ -106,6 +112,17 @@
Source="{Binding PreviewImagePath}" Source="{Binding PreviewImagePath}"
Stretch="Uniform" Stretch="Uniform"
IsVisible="{Binding IsConnectedModel}" /> IsVisible="{Binding IsConnectedModel}" />
<TextBlock
FontSize="13"
Foreground="{DynamicResource TextFillColorTertiaryBrush}"
HorizontalAlignment="Left"
Margin="0,0,0,4"
TextWrapping="WrapWithOverflow"
IsVisible="{Binding CanShowTriggerWords}">
<Run Text="{x:Static lang:Resources.Label_TriggerWords}" />
<Run
Text="{Binding ConnectedModel.TrainedWordsString, FallbackValue=''}" />
</TextBlock>
</StackPanel> </StackPanel>
</ToolTip.Tip> </ToolTip.Tip>
<TextBlock <TextBlock
@ -179,7 +196,7 @@
Grid.Column="0" Grid.Column="0"
Grid.Row="2" Grid.Row="2"
IsEnabled="True" IsEnabled="True"
Margin="4,4" Margin="0,4"
Text="{Binding FileName}" Text="{Binding FileName}"
TextTrimming="CharacterEllipsis" TextTrimming="CharacterEllipsis"
ToolTip.Tip="{Binding FileName}" ToolTip.Tip="{Binding FileName}"
@ -196,6 +213,20 @@
<UniformGridLayout /> <UniformGridLayout />
</ItemsRepeater.Layout> </ItemsRepeater.Layout>
</ItemsRepeater> </ItemsRepeater>
<TextBlock Grid.Row="3" Grid.Column="0"
Grid.ColumnSpan="2"
FontSize="11"
Foreground="{DynamicResource TextFillColorTertiaryBrush}"
HorizontalAlignment="Left"
VerticalAlignment="Bottom"
Margin="0,4,0,0"
TextTrimming="CharacterEllipsis"
TextWrapping="NoWrap"
ToolTip.Tip="{Binding ConnectedModel.TrainedWordsString, FallbackValue=''}"
IsVisible="{Binding CanShowTriggerWords}">
<Run Text="{x:Static lang:Resources.Label_TriggerWords}" />
<Run Text="{Binding ConnectedModel.TrainedWordsString, FallbackValue=''}" />
</TextBlock>
</Grid> </Grid>
</StackPanel> </StackPanel>
@ -232,29 +263,30 @@
<ui:FAMenuFlyout> <ui:FAMenuFlyout>
<ui:MenuFlyoutItem Text="{x:Static lang:Resources.Action_ShowInExplorer}" IconSource="Open" <ui:MenuFlyoutItem Text="{x:Static lang:Resources.Action_ShowInExplorer}" IconSource="Open"
Command="{Binding ShowInExplorerCommand}" Command="{Binding ShowInExplorerCommand}"
CommandParameter="{Binding DirectoryPath}"/> CommandParameter="{Binding DirectoryPath}" />
<!-- Only allow deletion of non-root folders (Parent is not null) --> <!-- Only allow deletion of non-root folders (Parent is not null) -->
<ui:MenuFlyoutItem Text="{x:Static lang:Resources.Action_Delete}" IconSource="Delete" <ui:MenuFlyoutItem Text="{x:Static lang:Resources.Action_Delete}" IconSource="Delete"
IsEnabled="{Binding ParentFolder, Converter={x:Static ObjectConverters.IsNotNull}}" IsEnabled="{Binding ParentFolder, Converter={x:Static ObjectConverters.IsNotNull}}"
IsVisible="{Binding ParentFolder, Converter={x:Static ObjectConverters.IsNotNull}}" IsVisible="{Binding ParentFolder, Converter={x:Static ObjectConverters.IsNotNull}}"
Command="{Binding DeleteCommand}"/> Command="{Binding DeleteCommand}" />
<ui:MenuFlyoutSeparator/> <ui:MenuFlyoutSeparator />
<ui:MenuFlyoutSubItem Text="{x:Static lang:Resources.Action_New}" IconSource="Add"> <ui:MenuFlyoutSubItem Text="{x:Static lang:Resources.Action_New}" IconSource="Add">
<ui:MenuFlyoutSubItem.Items> <ui:MenuFlyoutSubItem.Items>
<ui:MenuFlyoutItem Text="{x:Static lang:Resources.Label_Folder}" IconSource="OpenFolder" <ui:MenuFlyoutItem Text="{x:Static lang:Resources.Label_Folder}"
Command="{Binding CreateSubFolderCommand}"/> IconSource="OpenFolder"
Command="{Binding CreateSubFolderCommand}" />
</ui:MenuFlyoutSubItem.Items> </ui:MenuFlyoutSubItem.Items>
</ui:MenuFlyoutSubItem> </ui:MenuFlyoutSubItem>
<ui:MenuFlyoutItem Text="{x:Static lang:Resources.Label_FindConnectedMetadata}" <ui:MenuFlyoutItem Text="{x:Static lang:Resources.Label_FindConnectedMetadata}"
IconSource="Find" IconSource="Find"
Command="{Binding FindConnectedMetadata}"/> Command="{Binding FindConnectedMetadata}" />
</ui:FAMenuFlyout> </ui:FAMenuFlyout>
</Expander.ContextFlyout> </Expander.ContextFlyout>
<!-- Editable header --> <!-- Editable header -->
<Expander.Header> <Expander.Header>
<Grid> <Grid>
<TextBlock Text="{Binding Title}" VerticalAlignment="Center"/> <TextBlock Text="{Binding Title}" VerticalAlignment="Center" />
</Grid> </Grid>
</Expander.Header> </Expander.Header>
@ -264,9 +296,9 @@
HorizontalAlignment="Stretch" HorizontalAlignment="Stretch"
ItemTemplate="{DynamicResource CheckpointFolderGridDataTemplate}" ItemTemplate="{DynamicResource CheckpointFolderGridDataTemplate}"
ItemsSource="{Binding SubFolders, Mode=OneWay}" ItemsSource="{Binding SubFolders, Mode=OneWay}"
Margin="8,0,8,8" > Margin="8,0,8,8">
<ItemsRepeater.Layout> <ItemsRepeater.Layout>
<StackLayout Orientation="Vertical"/> <StackLayout Orientation="Vertical" />
</ItemsRepeater.Layout> </ItemsRepeater.Layout>
</ItemsRepeater> </ItemsRepeater>
<!-- Files Grid --> <!-- Files Grid -->
@ -279,16 +311,16 @@
ItemsSource="{Binding DisplayedCheckpointFiles}"> ItemsSource="{Binding DisplayedCheckpointFiles}">
<ItemsRepeater.Layout> <ItemsRepeater.Layout>
<UniformGridLayout Orientation="Horizontal" <UniformGridLayout Orientation="Horizontal"
MinColumnSpacing="4" MinRowSpacing="4"/> MinColumnSpacing="4" MinRowSpacing="4" />
</ItemsRepeater.Layout> </ItemsRepeater.Layout>
<TextBlock Text="Hi"/> <TextBlock Text="Hi" />
</ItemsRepeater> </ItemsRepeater>
<TextBlock VerticalAlignment="Center" <TextBlock VerticalAlignment="Center"
TextAlignment="Center" TextAlignment="Center"
HorizontalAlignment="Center" HorizontalAlignment="Center"
Margin="8,8,8,16" Margin="8,8,8,16"
Text="{x:Static lang:Resources.Label_DragAndDropCheckpointsHereToImport}" Text="{x:Static lang:Resources.Label_DragAndDropCheckpointsHereToImport}"
IsVisible="{Binding !CheckpointFiles.Count}"/> IsVisible="{Binding !CheckpointFiles.Count}" />
<!-- Blurred background for drag and drop --> <!-- Blurred background for drag and drop -->
<Border <Border
CornerRadius="4" CornerRadius="4"
@ -378,29 +410,8 @@
<Grid ColumnDefinitions="Auto,*" RowDefinitions="Auto,*" Margin="4, 0" <Grid ColumnDefinitions="Auto,*" RowDefinitions="Auto,*" Margin="4, 0"
x:Name="ParentGrid"> x:Name="ParentGrid">
<!-- Top settings bar --> <!-- Top settings bar -->
<StackPanel Grid.Column="0" Grid.Row="0"> <StackPanel Orientation="Horizontal">
<ToggleSwitch <TextBox Margin="16, 16, 8, 16"
OffContent="{x:Static lang:Resources.Label_ImportAsConnected}"
OnContent="{x:Static lang:Resources.Label_ImportAsConnected}"
IsChecked="{Binding IsImportAsConnected}"
Margin="24,4,24,-4"
ToolTip.Tip="{x:Static lang:Resources.Label_ImportAsConnectedExplanation}" />
<ToggleSwitch
OffContent="{x:Static lang:Resources.Label_ShowModelImages}"
OnContent="{x:Static lang:Resources.Label_ShowModelImages}"
IsChecked="{Binding ShowConnectedModelImages}"
Margin="24,-4,24,4" />
</StackPanel>
<StackPanel
Grid.Column="1"
Grid.Row="0"
Spacing="8"
HorizontalAlignment="Right"
Margin="16,0"
Orientation="Horizontal">
<TextBox Margin="8, 16"
Watermark="{x:Static lang:Resources.Action_Search}" Watermark="{x:Static lang:Resources.Action_Search}"
Height="16" Height="16"
MinWidth="220" MinWidth="220"
@ -421,22 +432,9 @@
</Grid> </Grid>
</TextBox.InnerRightContent> </TextBox.InnerRightContent>
</TextBox> </TextBox>
<controls:ProgressRing
Width="16"
Height="16"
BorderThickness="4"
IsIndeterminate="True"
IsVisible="{Binding IsIndexing}"/>
<TextBlock Text="{x:Static lang:Resources.Label_Indexing}" FontSize="11"
VerticalAlignment="Center"
IsVisible="{Binding IsIndexing}"/>
<Button
Command="{Binding OpenModelsFolderCommand}">
<TextBlock Text="{x:Static lang:Resources.Label_ModelsFolder}"/>
</Button>
<DropDownButton <DropDownButton
Content="{x:Static lang:Resources.Label_Categories}" Content="{x:Static lang:Resources.Label_Categories}"
Margin="8" Margin="8,0"
VerticalAlignment="Center" VerticalAlignment="Center"
HorizontalAlignment="Right"> HorizontalAlignment="Right">
<DropDownButton.Flyout> <DropDownButton.Flyout>
@ -446,13 +444,69 @@
<DataTemplate DataType="{x:Type checkpointManager:CheckpointFolder}"> <DataTemplate DataType="{x:Type checkpointManager:CheckpointFolder}">
<ui:ToggleMenuFlyoutItem <ui:ToggleMenuFlyoutItem
Text="{Binding TitleWithFilesCount}" Text="{Binding TitleWithFilesCount}"
IsChecked="{Binding IsCategoryEnabled, Mode=TwoWay}"/> IsChecked="{Binding IsCategoryEnabled, Mode=TwoWay}" />
</DataTemplate> </DataTemplate>
</ui:FAMenuFlyout.ItemTemplate> </ui:FAMenuFlyout.ItemTemplate>
</ui:FAMenuFlyout> </ui:FAMenuFlyout>
</DropDownButton.Flyout> </DropDownButton.Flyout>
</DropDownButton> </DropDownButton>
</StackPanel> </StackPanel>
<ui:CommandBar
Grid.Row="0"
Grid.Column="1"
x:Name="CommandBar"
Margin="8,0,0,0"
VerticalAlignment="Center"
VerticalContentAlignment="Center"
HorizontalAlignment="Right"
HorizontalContentAlignment="Right"
DefaultLabelPosition="Right">
<ui:CommandBar.PrimaryCommands>
<ui:CommandBarButton
IconSource="OpenFolder"
VerticalAlignment="Center"
Label="{x:Static lang:Resources.Label_ModelsFolder}"
Command="{Binding OpenModelsFolderCommand}" />
<ui:CommandBarButton
IconSource="Refresh"
VerticalAlignment="Center"
Command="{Binding OnLoaded}"
Label="{x:Static lang:Resources.Action_Refresh}" />
<ui:CommandBarToggleButton
IconSource="Image"
Label="{x:Static lang:Resources.Label_ShowModelImages}"
IsChecked="{Binding ShowConnectedModelImages, Mode=TwoWay}">
</ui:CommandBarToggleButton>
</ui:CommandBar.PrimaryCommands>
<ui:CommandBar.SecondaryCommands>
<ui:CommandBarToggleButton
IconSource="Cloud"
Label="{x:Static lang:Resources.Label_ImportAsConnected}"
IsChecked="{Binding IsImportAsConnected, Mode=TwoWay}">
</ui:CommandBarToggleButton>
</ui:CommandBar.SecondaryCommands>
</ui:CommandBar>
<StackPanel
IsVisible="False"
Grid.Column="1"
Grid.Row="0"
Spacing="8"
HorizontalAlignment="Right"
Margin="16,0"
Orientation="Horizontal">
<controls:ProgressRing
Width="16"
Height="16"
BorderThickness="4"
IsIndeterminate="True"
IsVisible="{Binding IsIndexing}" />
<TextBlock Text="{x:Static lang:Resources.Label_Indexing}" FontSize="11"
VerticalAlignment="Center"
IsVisible="{Binding IsIndexing}" />
</StackPanel>
<!-- Main view with model cards --> <!-- Main view with model cards -->
<ScrollViewer <ScrollViewer
@ -470,7 +524,7 @@
IsIndeterminate="True" IsIndeterminate="True"
IsVisible="{Binding IsLoading}" IsVisible="{Binding IsLoading}"
HorizontalAlignment="Center" HorizontalAlignment="Center"
VerticalAlignment="Center"/> VerticalAlignment="Center" />
<StackPanel Orientation="Vertical"> <StackPanel Orientation="Vertical">
<ItemsControl <ItemsControl
HorizontalAlignment="Stretch" HorizontalAlignment="Stretch"

25
StabilityMatrix.Core/Models/ConnectedModelInfo.cs

@ -22,16 +22,20 @@ public class ConnectedModelInfo
public CivitFileMetadata FileMetadata { get; set; } public CivitFileMetadata FileMetadata { get; set; }
public DateTimeOffset ImportedAt { get; set; } public DateTimeOffset ImportedAt { get; set; }
public CivitFileHashes Hashes { get; set; } public CivitFileHashes Hashes { get; set; }
public string[]? TrainedWords { get; set; }
// User settings // User settings
public string? UserTitle { get; set; } public string? UserTitle { get; set; }
public string? ThumbnailImageUrl { get; set; } public string? ThumbnailImageUrl { get; set; }
public ConnectedModelInfo() public ConnectedModelInfo() { }
{
}
public ConnectedModelInfo(CivitModel civitModel, CivitModelVersion civitModelVersion, CivitFile civitFile, DateTimeOffset importedAt) public ConnectedModelInfo(
CivitModel civitModel,
CivitModelVersion civitModelVersion,
CivitFile civitFile,
DateTimeOffset importedAt
)
{ {
ModelId = civitModel.Id; ModelId = civitModel.Id;
ModelName = civitModel.Name; ModelName = civitModel.Name;
@ -46,11 +50,18 @@ public class ConnectedModelInfo
BaseModel = civitModelVersion.BaseModel; BaseModel = civitModelVersion.BaseModel;
FileMetadata = civitFile.Metadata; FileMetadata = civitFile.Metadata;
Hashes = civitFile.Hashes; Hashes = civitFile.Hashes;
TrainedWords = civitModelVersion.TrainedWords;
} }
public static ConnectedModelInfo? FromJson(string json) public static ConnectedModelInfo? FromJson(string json)
{ {
return JsonSerializer.Deserialize<ConnectedModelInfo>(json, new JsonSerializerOptions { DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull } ); return JsonSerializer.Deserialize<ConnectedModelInfo>(
json,
new JsonSerializerOptions
{
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull
}
);
} }
/// <summary> /// <summary>
@ -65,4 +76,8 @@ public class ConnectedModelInfo
var json = JsonSerializer.Serialize(this); var json = JsonSerializer.Serialize(this);
await File.WriteAllTextAsync(Path.Combine(directoryPath, name), json); await File.WriteAllTextAsync(Path.Combine(directoryPath, name), json);
} }
[JsonIgnore]
public string TrainedWordsString =>
TrainedWords != null ? string.Join(", ", TrainedWords) : string.Empty;
} }

Loading…
Cancel
Save