Spaces:
Running
Running
File size: 16,460 Bytes
900dd15 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 | """
MathPulse AI - Try It Yourself Quiz State Management
POST /api/try-it-yourself/resolve-question - Report question resolution (correct/revealed)
POST /api/try-it-yourself/use-hint - Record hint usage, return next hint tier
POST /api/try-it-yourself/complete-session - Finalize session, calculate server-side XP
Implements:
- user_question_states Firestore collection (per-user, per-question progress)
- Server-side XP decay based on hints_used and attempts
- Struggle flag for shadow retry injection
- Brute Force Floor XP (never 0 for correct answers)
"""
from __future__ import annotations
import logging
from datetime import datetime, timezone
from typing import Any, Dict, List, Literal, Optional
from fastapi import APIRouter, HTTPException, Request
from pydantic import BaseModel, Field
import firebase_admin
from firebase_admin import firestore as fs
logger = logging.getLogger("mathpulse.try_it_yourself")
router = APIRouter(prefix="/api/try-it-yourself", tags=["try-it-yourself"])
# --- XP Decay Constants ---
BASE_XP_PER_QUESTION = 10
HINT_DECAY = {0: 1.0, 1: 0.7, 2: 0.4, 3: 0.2} # multiplier per hints_used
BRUTE_FORCE_FLOOR_XP = 2 # minimum XP for correct answer (never 0)
REVEAL_XP = 0 # complete forfeit
STRUGGLE_THRESHOLD = 3 # attempts before flagging struggle
# --- Request/Response Models ---
class ResolveQuestionRequest(BaseModel):
userId: str
sessionId: str
questionId: str
resolution: Literal["correct", "revealed"]
attempts: int = Field(ge=1, description="Total attempts on this question")
hintsUsed: int = Field(ge=0, le=3, description="Number of hints used (0-3)")
class ResolveQuestionResponse(BaseModel):
xpAwarded: int
status: str # New | Retry | Learning | Mastered
struggleFlag: bool
class UseHintRequest(BaseModel):
userId: str
sessionId: str
questionId: str
currentHintTier: int = Field(ge=0, le=2, description="0-indexed hint tier being requested")
class UseHintResponse(BaseModel):
hintsUsed: int
xpMultiplier: float
acknowledged: bool
class CompleteSessionRequest(BaseModel):
userId: str
sessionId: str
questionResults: List[Dict[str, Any]] # [{questionId, resolution, attempts, hintsUsed, xpAwarded}]
class CompleteSessionResponse(BaseModel):
totalXP: int
questionsResolved: int
questionsRevealed: int
averageAttempts: float
struggleTopics: List[str]
# --- Helpers ---
def _get_firestore():
if firebase_admin._apps:
return firebase_admin.firestore.client()
return None
def _calculate_xp(hints_used: int, attempts: int, resolution: str) -> int:
"""Calculate XP for a resolved question using decay model."""
if resolution == "revealed":
return REVEAL_XP
# Base XP with hint decay
multiplier = HINT_DECAY.get(min(hints_used, 3), 0.2)
xp = int(BASE_XP_PER_QUESTION * multiplier)
# Brute force floor: never 0 for correct answers
return max(xp, BRUTE_FORCE_FLOOR_XP)
def _determine_status(attempts: int, hints_used: int, resolution: str, previous_status: str = "New") -> str:
"""
Determine question mastery status based on performance AND previous status.
Follows Bloom's taxonomy phase progression:
New → Learning (correct in Phase 1)
Learning → Mastered (correct in Phase 2+)
Any → Retry (revealed or excessive attempts)
Retry → Learning (correct on retry)
"""
if resolution == "revealed":
return "Retry"
# Correct answer — promote based on previous status
if previous_status == "New":
if hints_used == 0 and attempts == 1:
return "Learning" # Clean pass → skip to Learning
return "Learning" # Any correct from New → Learning
elif previous_status == "Retry":
return "Learning" # Correct retry → back to Learning
elif previous_status == "Learning":
if hints_used <= 1 and attempts <= 2:
return "Mastered" # Clean-ish pass → Mastered
return "Learning" # Struggled but correct → stay Learning
elif previous_status == "Mastered":
return "Mastered" # Already mastered, stays mastered
return "Learning"
def _authenticate(request: Request, userId: str) -> None:
user = getattr(request.state, "user", None)
if not user:
raise HTTPException(status_code=401, detail="Authentication required")
uid = getattr(user, "uid", None)
if uid != userId:
raise HTTPException(status_code=403, detail="Not authorized for this user")
# --- Endpoints ---
@router.post("/resolve-question", response_model=ResolveQuestionResponse)
async def resolve_question(request: Request, body: ResolveQuestionRequest):
"""
Called when a question is formally resolved (answered correctly or revealed).
Calculates server-side XP, updates user_question_states in Firestore.
"""
_authenticate(request, body.userId)
xp = _calculate_xp(body.hintsUsed, body.attempts, body.resolution)
struggle_flag = body.attempts >= STRUGGLE_THRESHOLD
# Fetch previous status for proper state transition
previous_status = "New"
db = _get_firestore()
if db:
try:
state_ref = db.collection("user_question_states").document(f"{body.userId}_{body.questionId}")
existing = state_ref.get()
if existing.exists:
previous_status = existing.to_dict().get("status", "New")
except Exception as e:
logger.warning("Firestore read failed for previous status: %s", e)
status = _determine_status(body.attempts, body.hintsUsed, body.resolution, previous_status)
if db:
try:
state_ref = db.collection("user_question_states").document(f"{body.userId}_{body.questionId}")
state_ref.set({
"user_id": body.userId,
"question_id": body.questionId,
"session_id": body.sessionId,
"status": status,
"attempts": body.attempts,
"hints_used": body.hintsUsed,
"struggle_flag": struggle_flag,
"resolution": body.resolution,
"xp_awarded": xp,
"resolved_at": datetime.now(timezone.utc).isoformat(),
}, merge=True)
except Exception as e:
logger.warning("Firestore write failed for question state: %s", e)
return ResolveQuestionResponse(
xpAwarded=xp,
status=status,
struggleFlag=struggle_flag,
)
@router.post("/use-hint", response_model=UseHintResponse)
async def use_hint(request: Request, body: UseHintRequest):
"""
Record hint usage for a question. Returns updated hint count and XP multiplier.
Frontend uses this to track decay — backend is the source of truth.
"""
_authenticate(request, body.userId)
new_hints_used = body.currentHintTier + 1
multiplier = HINT_DECAY.get(min(new_hints_used, 3), 0.2)
db = _get_firestore()
if db:
try:
state_ref = db.collection("user_question_states").document(f"{body.userId}_{body.questionId}")
state_ref.set({
"user_id": body.userId,
"question_id": body.questionId,
"session_id": body.sessionId,
"hints_used": new_hints_used,
"last_hint_at": datetime.now(timezone.utc).isoformat(),
}, merge=True)
except Exception as e:
logger.warning("Firestore write failed for hint usage: %s", e)
return UseHintResponse(
hintsUsed=new_hints_used,
xpMultiplier=multiplier,
acknowledged=True,
)
@router.post("/complete-session", response_model=CompleteSessionResponse)
async def complete_session(request: Request, body: CompleteSessionRequest):
"""
Finalize a Try It Yourself session. Calculates total XP server-side,
identifies struggle topics, and updates user profile.
"""
_authenticate(request, body.userId)
total_xp = 0
questions_resolved = 0
questions_revealed = 0
total_attempts = 0
struggle_topics: List[str] = []
for result in body.questionResults:
resolution = result.get("resolution", "correct")
hints_used = result.get("hintsUsed", 0)
attempts = result.get("attempts", 1)
# Server-side XP recalculation (never trust frontend)
xp = _calculate_xp(hints_used, attempts, resolution)
total_xp += xp
total_attempts += attempts
if resolution == "correct":
questions_resolved += 1
else:
questions_revealed += 1
if attempts >= STRUGGLE_THRESHOLD:
topic = result.get("topic", "Unknown")
if topic not in struggle_topics:
struggle_topics.append(topic)
avg_attempts = total_attempts / max(len(body.questionResults), 1)
# Update user XP in Firestore
db = _get_firestore()
if db and total_xp > 0:
try:
user_ref = db.collection("users").document(body.userId)
user_ref.update({
"totalXP": fs.Increment(total_xp),
"currentXP": fs.Increment(total_xp),
})
except Exception as e:
logger.warning("User XP update failed: %s", e)
return CompleteSessionResponse(
totalXP=total_xp,
questionsResolved=questions_resolved,
questionsRevealed=questions_revealed,
averageAttempts=round(avg_attempts, 1),
struggleTopics=struggle_topics,
)
class ShadowRetryRequest(BaseModel):
userId: str
sessionId: str
struggleTopics: List[str] = Field(..., description="Topics the student struggled with in previous phase")
subject: str
difficulty: str = "medium"
count: int = Field(default=3, ge=1, le=5)
class ShadowRetryResponse(BaseModel):
variants: List[Dict[str, Any]]
generated: bool
# --- Generate Round Models ---
class GenerateRoundRequest(BaseModel):
userId: str
sessionId: str
questionIds: List[str] = Field(..., description="All question IDs available for this quiz")
class PhaseQuestions(BaseModel):
phase: int
label: str # "Foundation", "Application", "Complexity", "Gauntlet"
questionIds: List[str]
class GenerateRoundResponse(BaseModel):
phases: List[PhaseQuestions]
questionStatuses: Dict[str, str] # questionId -> status (New/Retry/Learning/Mastered)
@router.post("/generate-round", response_model=GenerateRoundResponse)
async def generate_round(request: Request, body: GenerateRoundRequest):
"""
Queries user_question_states for all provided question IDs and groups them
into Bloom's taxonomy phases based on their mastery status:
Phase 1 (Foundation): New + Retry questions (Remembering & Understanding)
Phase 2 (Application): Learning questions (Applying)
Phase 3 (Complexity): Learning questions via spaced repetition
Phase 4 (Gauntlet): Mastered questions (Analyzing)
Returns phase-grouped question IDs so the frontend can build the quiz flow.
"""
_authenticate(request, body.userId)
# Fetch all user_question_states for these questions
statuses: Dict[str, str] = {}
db = _get_firestore()
if db and body.questionIds:
try:
# Batch fetch all question states in one round-trip
doc_refs = [db.collection("user_question_states").document(f"{body.userId}_{qid}") for qid in body.questionIds]
docs = db.get_all(doc_refs)
for qid, doc in zip(body.questionIds, docs):
if doc.exists:
statuses[qid] = doc.to_dict().get("status", "New")
else:
statuses[qid] = "New"
except Exception as e:
logger.warning("Firestore batch read failed: %s", e)
# Default all to New if read fails
for qid in body.questionIds:
statuses[qid] = "New"
else:
for qid in body.questionIds:
statuses[qid] = "New"
# Group questions by status
new_questions = [qid for qid, s in statuses.items() if s == "New"]
retry_questions = [qid for qid, s in statuses.items() if s == "Retry"]
learning_questions = [qid for qid, s in statuses.items() if s == "Learning"]
mastered_questions = [qid for qid, s in statuses.items() if s == "Mastered"]
# Build phases per spec v7
phases: List[PhaseQuestions] = []
# Phase 1 (Foundation): New + Retry
phase1_ids = new_questions + retry_questions
if phase1_ids:
phases.append(PhaseQuestions(phase=1, label="Foundation", questionIds=phase1_ids))
# Phase 2 (Application): Learning
if learning_questions:
phases.append(PhaseQuestions(phase=2, label="Application", questionIds=learning_questions))
# Phase 3 (Complexity): Learning spaced repetition (re-include learning if enough)
# Only activate if there are learning questions AND we already have a Phase 1
if learning_questions and phase1_ids:
phases.append(PhaseQuestions(phase=3, label="Complexity", questionIds=learning_questions))
# Phase 4 (Gauntlet): Mastered questions
if mastered_questions:
phases.append(PhaseQuestions(phase=4, label="Gauntlet", questionIds=mastered_questions))
# If no phases were built (all questions are new), put everything in Phase 1
if not phases:
phases.append(PhaseQuestions(phase=1, label="Foundation", questionIds=body.questionIds))
return GenerateRoundResponse(phases=phases, questionStatuses=statuses)
@router.post("/shadow-retry", response_model=ShadowRetryResponse)
async def generate_shadow_retries(request: Request, body: ShadowRetryRequest):
"""
Generate variant questions for topics the student struggled with.
Called between phases during the round summary screen.
Returns lightweight variant questions targeting weak areas.
"""
_authenticate(request, body.userId)
# Import quiz generation utilities
try:
from routes.quiz_generation_routes import _get_inference_client, _parse_quiz_response
from services.inference_client import InferenceRequest
from rag.curriculum_rag import retrieve_curriculum_context
except ImportError as e:
logger.warning("Shadow retry generation unavailable: %s", e)
return ShadowRetryResponse(variants=[], generated=False)
if not body.struggleTopics:
return ShadowRetryResponse(variants=[], generated=False)
# Build a focused prompt for variant generation
topics_str = ", ".join(body.struggleTopics[:3]) # Max 3 topics
try:
# Retrieve curriculum context for the struggle topics
chunks = retrieve_curriculum_context(
query=topics_str,
subject=body.subject,
top_k=4,
)
context = "\n".join(chunk.get("document", "") for chunk in chunks[:4]) if chunks else topics_str
prompt = f"""Generate {body.count} VARIANT math questions for topics the student struggled with.
Topics: {topics_str}
Subject: {body.subject}
Difficulty: {body.difficulty}
These are RETRY questions — test the SAME concepts but with different numbers, scenarios, or phrasing.
Include 3 progressive hints per question.
Context: {context[:2000]}
Return JSON array:
[{{"id": "v1", "question_text": "...", "type": "multiple_choice", "bloom_level": "understand",
"options": [{{"key": "A", "text": "..."}}, ...], "correct_answer": "A",
"explanation": "...", "hints": ["hint1", "hint2", "hint3"],
"points": 1, "xp_reward": 10, "difficulty": "{body.difficulty}", "competency_code": "N/A"}}]
Return ONLY valid JSON array."""
inference_request = InferenceRequest(
messages=[
{"role": "system", "content": "You are a math question generator creating retry variants for struggling students."},
{"role": "user", "content": prompt},
],
task_type="quiz_generation",
max_new_tokens=2000,
temperature=0.8,
)
raw = _get_inference_client().generate_from_messages(inference_request)
variants = _parse_quiz_response(raw, body.count)
return ShadowRetryResponse(variants=variants, generated=True)
except Exception as e:
logger.warning("Shadow retry generation failed: %s", e)
return ShadowRetryResponse(variants=[], generated=False) |