Task 13: StyleAdapter with 5 cuisine templates (Italian, Latin, East Asian,
Eastern European, Mediterranean). Each template includes weighted method_bias
(sums to 1.0), element-filtered aromatics/depth/structure helpers, and
seasoning/finishing-fat vectors. StyleTemplate is a fully immutable frozen
dataclass with tuple fields.
Task 14: LLMRecipeGenerator for Levels 3 and 4. Level 3 builds a structured
element-scaffold prompt; Level 4 generates a minimal wildcard prompt (<1500
chars). Allergy hard-exclusion wired through RecipeRequest.allergies into
both prompt builders and the generate() call path. Parsed LLM response
(title, ingredients, directions, notes) fully propagated to RecipeSuggestion.
Task 15: User settings key-value store. Migration 012 adds user_settings
table. Store.get_setting / set_setting with upsert. GET/PUT /settings/{key}
endpoints with Pydantic SettingBody, key allowlist, get_session dependency.
RecipeEngine reads cooking_equipment from settings when hard_day_mode=True.
55 tests passing.
13 lines
443 B
YAML
13 lines
443 B
YAML
style_id: mediterranean
|
|
name: Mediterranean
|
|
aromatics: [oregano, thyme, rosemary, mint, sumac, za'atar, preserved lemon]
|
|
depth_sources: [tahini, feta, halloumi, dried olives, harissa]
|
|
brightness_sources: [lemon, pomegranate molasses, yogurt, sumac]
|
|
method_bias:
|
|
roast: 0.35
|
|
grill: 0.30
|
|
braise: 0.25
|
|
saute: 0.10
|
|
structure_forms: [flatbread, stuffed vegetables, grain bowl, mezze plate]
|
|
seasoning_bias: sea salt
|
|
finishing_fat: olive oil
|