Ship Assistent 0.15.11: collaborative params, richer UI, and strict image critique.
Adds session_exact pinning, sampler/scheduler chips, expanded param tags with non-default highlighting, QLoRA HF presets, LoRA strength editing, SQLite bootstrap for training memory, last-job UI, and harsher critique_image QC so result review leads with defects instead of praise. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.11" />
|
||||
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.10" />
|
||||
</ItemGroup>
|
||||
<Import Project="../../SwarmUI.extension.props" />
|
||||
<!-- Must come after the import: SwarmUI.extension.props disables it, but the Sqlite
|
||||
@@ -21,4 +22,15 @@
|
||||
AND !$([System.String]::Copy('%(ReferenceCopyLocalPaths.NuGetPackageId)').StartsWith('SQLitePCLRaw'))" />
|
||||
</ItemGroup>
|
||||
</Target>
|
||||
<!-- Native libe_sqlite3 for Linux — ReferenceCopyLocalPaths alone is not enough. -->
|
||||
<Target Name="CopySqliteNativeRuntimes" AfterTargets="Build">
|
||||
<ItemGroup>
|
||||
<_SqliteNative Include="@(RuntimeCopyLocalItems)"
|
||||
Condition="$([System.String]::Copy('%(RuntimeCopyLocalItems.DestinationSubPath)').Contains('e_sqlite3'))" />
|
||||
</ItemGroup>
|
||||
<Copy SourceFiles="@(_SqliteNative)"
|
||||
DestinationFiles="$(OutputPath)@(_SqliteNative->'%(RuntimeCopyLocalItems.DestinationSubPath)')"
|
||||
SkipUnchangedFiles="true"
|
||||
Condition="'@(_SqliteNative)' != ''" />
|
||||
</Target>
|
||||
</Project>
|
||||
|
||||
Reference in New Issue
Block a user