Spaces:
Build error
Build error
File size: 953 Bytes
886572e |
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 |
"""Validation helpers for user-provided solutions."""
from __future__ import annotations
import google.generativeai as genai
from ..config import settings
def validate_user_solution(question: str, proposed_solution: str) -> bool:
"""Use Gemini to validate a user-uploaded solution."""
if not settings.gemini_api_key:
raise RuntimeError("Gemini API key required for solution validation")
genai.configure(api_key=settings.gemini_api_key)
model = genai.GenerativeModel(settings.gemini_model)
prompt = (
"You are an expert mathematics professor. Validate the student's solution. "
"Return ONLY 'VALID' if the reasoning is mathematically correct. "
"Return ONLY 'INVALID' otherwise.\n\n"
f"Question: {question}\nStudent solution:\n{proposed_solution}"
)
response = model.generate_content(prompt)
text = (response.text or "").strip().lower()
return text.startswith("valid")
|