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.
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
"""User settings endpoints."""
|
|
from __future__ import annotations
|
|
|
|
from fastapi import APIRouter, Depends, HTTPException
|
|
from pydantic import BaseModel
|
|
|
|
from app.cloud_session import CloudUser, get_session
|
|
from app.db.session import get_store
|
|
from app.db.store import Store
|
|
|
|
router = APIRouter()
|
|
|
|
_ALLOWED_KEYS = frozenset({"cooking_equipment"})
|
|
|
|
|
|
class SettingBody(BaseModel):
|
|
value: str
|
|
|
|
|
|
@router.get("/{key}")
|
|
async def get_setting(
|
|
key: str,
|
|
session: CloudUser = Depends(get_session),
|
|
store: Store = Depends(get_store),
|
|
) -> dict:
|
|
"""Return the stored value for a settings key."""
|
|
if key not in _ALLOWED_KEYS:
|
|
raise HTTPException(status_code=422, detail=f"Unknown settings key: '{key}'.")
|
|
value = store.get_setting(key)
|
|
if value is None:
|
|
raise HTTPException(status_code=404, detail=f"Setting '{key}' not found.")
|
|
return {"key": key, "value": value}
|
|
|
|
|
|
@router.put("/{key}")
|
|
async def set_setting(
|
|
key: str,
|
|
body: SettingBody,
|
|
session: CloudUser = Depends(get_session),
|
|
store: Store = Depends(get_store),
|
|
) -> dict:
|
|
"""Upsert a settings key-value pair."""
|
|
if key not in _ALLOWED_KEYS:
|
|
raise HTTPException(status_code=422, detail=f"Unknown settings key: '{key}'.")
|
|
store.set_setting(key, body.value)
|
|
return {"key": key, "value": body.value}
|