Миграция questions.ai_hint и подсказки в редакторе теста

- Alembic 0003: колонка ai_hint (TEXT NULL)
- API черновика: отдаём aiHint, сохраняем из payload
- Карточка вопроса: textarea подсказки для прохождения

Made-with: Cursor
This commit is contained in:
Константин Лебединский
2026-04-29 21:50:19 +05:00
parent fba11ff4cc
commit 09d996ead0
5 changed files with 70 additions and 3 deletions
+1
View File
@@ -51,6 +51,7 @@ def load_questions_for_version(session, test_version_id, *, include_correct: boo
'text': q.text,
'questionOrder': q.question_order,
'hasMultipleAnswers': bool(q.has_multiple_answers),
'aiHint': (q.ai_hint or '').strip() or None,
'options': options,
})
return out