fix(recipe-generation): justera mock-ingredienser mot seed-katalogen så pilotbatch blir granskbar

This commit is contained in:
Sven (AAMOS AI)
2026-08-09 19:53:44 +07:00
parent 4b7dec2759
commit f321d53b30
3 changed files with 21 additions and 6 deletions
+9 -1
View File
@@ -248,13 +248,21 @@ export function mockOutputFor(taskType: AamosTaskType, input: unknown): unknown
note: null,
},
{
canonicalIngredientId: "onion_yellow",
canonicalIngredientId: "onion",
displayNameSv: "gul lök",
quantity: 2,
unit: "COUNT",
optional: false,
note: null,
},
{
canonicalIngredientId: "rice_white",
displayNameSv: "ris",
quantity: 3,
unit: "DECILITER",
optional: false,
note: null,
},
],
steps: [
{ instructionSv: "Förbered ingredienserna.", timerSeconds: null, temperatureC: null, tip: null },
@@ -73,12 +73,12 @@ const targets: PipelineTarget[] = [
{ mealType: "dinner", mainIngredientId: "chicken_breast", dietVariant: "standard", count: 4 },
{ mealType: "dinner", mainIngredientId: "chicken_thigh", dietVariant: "standard", count: 2 },
// Köttfärs × allätare
{ mealType: "dinner", mainIngredientId: "ground_beef", dietVariant: "standard", count: 3 },
{ mealType: "dinner", mainIngredientId: "ground_pork", dietVariant: "standard", count: 2 },
{ mealType: "dinner", mainIngredientId: "minced_beef", dietVariant: "standard", count: 3 },
{ mealType: "dinner", mainIngredientId: "minced_mixed", dietVariant: "standard", count: 2 },
// Veg-varianter
{ mealType: "dinner", mainIngredientId: "tofu_firm", dietVariant: "vegan", count: 3 },
{ mealType: "dinner", mainIngredientId: "lentils_red", dietVariant: "vegetarian", count: 2 },
{ mealType: "dinner", mainIngredientId: "chickpeas", dietVariant: "vegan", count: 2 },
{ mealType: "dinner", mainIngredientId: "tofu", dietVariant: "vegan", count: 3 },
{ mealType: "dinner", mainIngredientId: "red_lentils", dietVariant: "vegetarian", count: 2 },
{ mealType: "dinner", mainIngredientId: "chickpeas_canned", dietVariant: "vegan", count: 2 },
];
// ── 5. Kör pipelinen ───────────────────────────────────────────────────────