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
442 B
YAML
13 lines
442 B
YAML
style_id: latin
|
|
name: Latin
|
|
aromatics: [cumin, chili, cilantro, epazote, mexican oregano, ancho, chipotle, smoked paprika]
|
|
depth_sources: [dried chilis, smoked peppers, chocolate, achiote]
|
|
brightness_sources: [lime, tomatillo, brined jalapeño, orange]
|
|
method_bias:
|
|
roast: 0.30
|
|
braise: 0.30
|
|
fry: 0.25
|
|
grill: 0.15
|
|
structure_forms: [wrapped in masa, pastry, stuffed, bowl]
|
|
seasoning_bias: kosher salt
|
|
finishing_fat: lard or neutral oil
|