docs: Quality-Level Parameter für KI-Analysen notiert (#28)
Notiert an 3 Stellen: 1. insights.py: TODO-Kommentar im Code 2. ROADMAP.md: Deliverable bei M0.2 (lokal, nicht im Git) 3. Gitea Issue #28: Kommentar mit Spezifikation Zukünftig: - GET /api/insights/run/{slug}?quality_level=quality - 4 Stufen: all, quality, very_good, excellent - Frontend: Dropdown wie in History.jsx - Pipeline-Configs können Standard-Level haben User-Request: Quality-Level-Auswahl für KI-Analysen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
848ba0a815
commit
b317246bcd
|
|
@ -76,6 +76,8 @@ def _get_profile_data(pid: str):
|
|||
cur.execute("SELECT * FROM nutrition_log WHERE profile_id=%s ORDER BY date DESC LIMIT 90", (pid,))
|
||||
nutrition = [r2d(r) for r in cur.fetchall()]
|
||||
# Quality-Filter: nur hochwertige Aktivitäten für KI-Analyse (Issue #24)
|
||||
# TODO (#28): quality_level als Parameter (all, quality, very_good, excellent)
|
||||
# Zukünftig: GET /api/insights/run/{slug}?quality_level=quality
|
||||
cur.execute("""
|
||||
SELECT * FROM activity_log
|
||||
WHERE profile_id=%s
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user