feat(onboarding): choose AI tagger model

Add WD and JoyTag selection to the Welcome Tour AI step so users can choose the model before downloading it.

Share tagger model metadata with Settings and keep the Settings close button anchored to the modal chrome.
This commit is contained in:
2026-07-03 08:07:42 +01:00
parent b92b850d02
commit f1116c6c26
3 changed files with 80 additions and 28 deletions
+16
View File
@@ -0,0 +1,16 @@
import type { TaggerModel } from "./store";
export const TAGGER_MODELS: Record<TaggerModel, { name: string; tab: string; description: string }> = {
wd: {
name: "WD SwinV2 Tagger v3",
tab: "WD (anime)",
description:
"Anime-focused vision model by SmilingWolf. Generates booru-style tags with configurable confidence thresholds.",
},
joytag: {
name: "JoyTag",
tab: "JoyTag (general)",
description:
"Booru-schema tagger that also handles photographic content and is strong on NSFW concepts. The explicitness rating is derived from its tags.",
},
};