feat: Enhance template filtering with Fuse.js and add model selection

This commit is contained in:
Johnpaul
2025-08-20 17:17:13 +01:00
parent deba8df8ce
commit ac8b108f39
5 changed files with 680 additions and 85 deletions

View File

@@ -12,12 +12,18 @@ export interface TemplateInfo {
localizedTitle?: string
localizedDescription?: string
sourceModule?: string
tags?: string[]
models?: string[]
date?: string
}
export interface WorkflowTemplates {
moduleName: string
templates: TemplateInfo[]
title: string
localizedTitle?: string
category?: string
type?: string
}
export interface TemplateGroup {