This commit is contained in:
2026-08-23 20:49:40 +02:00
parent 3b678ca857
commit f3d4fb56ed
31 changed files with 3608 additions and 111 deletions
+3 -1
View File
@@ -20,7 +20,9 @@ func (s stubCompleter) Complete(_ context.Context, system, user string) (Complet
func TestResolveSteps(t *testing.T) {
cases := map[string][]string{
"full": {StepNormalize, StepParseSpecs, StepFillFields, StepEPREL, StepCategorize, StepAIEnhance},
"enhance_only": {StepNormalize, StepAIEnhance},
"enhance_only": {StepNormalize, StepParseSpecs, StepFillFields, StepCategorize, StepAIEnhance},
"title": {StepNormalize, StepParseSpecs, StepFillFields, StepCategorize, StepAIEnhance},
"description": {StepNormalize, StepParseSpecs, StepFillFields, StepCategorize, StepAIEnhance},
"attributes_only": {StepNormalize, StepParseSpecs, StepFillFields},
"eprel_only": {StepNormalize, StepParseSpecs, StepEPREL},
"normalize_only": {StepNormalize},