File size: 17,861 Bytes
be6ee20 | 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 454 455 456 | # IDENTITY: backend/main.py
# VERSION: 2.6.0
# ⚙️ GEAR 2: The API Routes (Executing the Trades)
import os
import time
from fastapi import Depends, FastAPI, HTTPException, Query
from fastapi.middleware.cors import CORSMiddleware
from sqlalchemy.orm import Session
from sqlalchemy import func
from typing import List, Optional
import logging
try:
from database import Base, engine, get_db
import models as models
import schemas as schemas
from ai_engine import ai_engine
except ImportError:
from database import Base, engine, get_db
from . import models as models
from . import schemas as schemas
from .ai_engine import ai_engine
# Create database tables if they don't exist
Base.metadata.create_all(bind=engine)
app = FastAPI(title="Edu_AI Learning System", version="2.6.0")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/")
def read_root():
return {"status": "Active 📚", "message": "Edu_AI Backend v2.6.0 is Online."}
# Helper to find user by ID (int) or Username (string)
def find_user(user_id_or_name: str, db: Session):
user = None
if str(user_id_or_name).isdigit():
user = db.query(models.User).filter(models.User.id == int(user_id_or_name)).first()
if not user:
user = db.query(models.User).filter(models.User.username == str(user_id_or_name)).first()
return user
# --- USER MANAGEMENT ENDPOINTS ---
@app.post("/api/users", response_model=schemas.UserResponseSchema, tags=["User Management"])
def create_user(user_data: schemas.UserCreate, db: Session = Depends(get_db)):
db_user = db.query(models.User).filter(models.User.username == user_data.username).first()
if db_user:
raise HTTPException(status_code=400, detail="Username already registered")
new_user = models.User(
username=user_data.username,
role=user_data.role,
sensory_mode=user_data.sensory_mode,
difficulty=user_data.difficulty,
ai_persona=user_data.ai_persona,
semester_status=user_data.semester_status,
interests=user_data.interests
)
db.add(new_user)
db.commit()
db.refresh(new_user)
# Handle initial units if provided
if user_data.active_units:
for unit_name in user_data.active_units:
db.add(models.Unit(name=unit_name, owner_id=new_user.id, is_active=True))
db.commit()
db.refresh(new_user)
# Prepare response manually to include active_units
response = schemas.UserResponseSchema.from_orm(new_user)
response.active_units = new_user.active_units_list
return response
@app.get("/api/users/{user_id}", response_model=schemas.UserResponseSchema, tags=["User Management"])
def get_user(user_id: str, db: Session = Depends(get_db)):
user = find_user(user_id, db)
if not user:
role = "Student"
if "teacher" in user_id.lower(): role = "Teacher"
if "parent" in user_id.lower(): role = "Parent"
user = models.User(
username=user_id,
role=role,
sensory_mode="Standard",
ai_persona="Standard Edu_AI",
semester_status="Active"
)
db.add(user)
db.commit()
db.refresh(user)
response = schemas.UserResponseSchema.from_orm(user)
response.active_units = user.active_units_list
return response
@app.put("/api/users/{user_id}", response_model=schemas.UserResponseSchema, tags=["User Management"])
def update_user(user_id: str, user_update: schemas.UserUpdate, db: Session = Depends(get_db)):
user = find_user(user_id, db)
if not user:
raise HTTPException(status_code=404, detail="User not found")
update_data = user_update.dict(exclude_unset=True)
# Handle units separately if provided
if "active_units" in update_data:
new_unit_names = update_data.pop("active_units")
# Deactivate all current units first
db.query(models.Unit).filter(models.Unit.owner_id == user.id).update({"is_active": False})
for name in new_unit_names:
# Check if unit already exists for this user
existing_unit = db.query(models.Unit).filter(
models.Unit.owner_id == user.id,
models.Unit.name == name
).first()
if existing_unit:
existing_unit.is_active = True
else:
db.add(models.Unit(name=name, owner_id=user.id, is_active=True))
for key, value in update_data.items():
setattr(user, key, value)
db.commit()
db.refresh(user)
response = schemas.UserResponseSchema.from_orm(user)
response.active_units = user.active_units_list
return response
# --- TEACHER PORTAL ENDPOINTS ---
@app.get("/api/teacher/dashboard", response_model=schemas.TeacherDashboardResponse, tags=["Teacher Portal"])
def get_teacher_dashboard(db: Session = Depends(get_db)):
all_students = db.query(models.User).filter(models.User.role == "Student").all()
# Ensure some mock data exists if db is empty
if not all_students:
mock_students = [
("Neema Ongaga", "Year 4 - Redemption Arc"),
("Grace Naliaka", "Clinical Rotations"),
("Rayvins Otieno", "Pre-med Hustle"),
("Hillary Lweya", "Final Year"),
("Tatiana A.", "Anatomy Focus")
]
for name, status in mock_students:
s = models.User(username=name, role="Student", semester_status=status)
db.add(s)
db.commit()
db.refresh(s)
db.add(models.Unit(name="Biochemistry II", owner_id=s.id))
db.commit()
all_students = db.query(models.User).filter(models.User.role == "Student").all()
action_queue = []
total_score = 0
count = 0
for student in all_students:
quizzes = db.query(models.QuizHistory).filter(models.QuizHistory.owner_id == student.id).all()
total_quizzes = len(quizzes)
avg_pnl = sum([q.pnl for q in quizzes]) / total_quizzes if total_quizzes > 0 else 0.0
total_score += avg_pnl
count += 1
is_at_risk = False
risk_reason = None
# Logic for "Action Required" queue
if avg_pnl < 65 and total_quizzes > 0:
is_at_risk = True
risk_reason = f"Performance drop: {round(avg_pnl, 1)}% avg score. Intervention recommended."
elif total_quizzes == 0:
is_at_risk = True
risk_reason = "No assessment data recorded. Learning path stalled."
if is_at_risk:
action_queue.append(schemas.StudentSummary(
id=student.id,
username=student.username,
average_pnl=round(avg_pnl, 2),
total_quizzes=total_quizzes,
semester_status=student.semester_status,
active_units=student.active_units_list,
is_at_risk=True,
risk_reason=risk_reason
))
class_health = total_score / count if count > 0 else 100.0
return schemas.TeacherDashboardResponse(
action_required_queue=action_queue,
total_active_students=len(all_students),
class_health_score=round(class_health, 2)
)
@app.post("/api/teacher/send-report/{student_id}", tags=["Teacher Portal"])
def send_student_report(student_id: int, db: Session = Depends(get_db)):
student = db.query(models.User).filter(models.User.id == student_id).first()
if not student: raise HTTPException(status_code=404, detail="Student not found")
quizzes = db.query(models.QuizHistory).filter(models.QuizHistory.owner_id == student.id).all()
context = f"Student: {student.username}\nStatus: {student.semester_status}\nUnits: {', '.join(student.active_units_list)}\n"
context += "Grades: " + ", ".join([f"{q.unit_name}: {q.pnl}%" for q in quizzes])
prompt = f"Create a concise, encouraging progress report for a parent based on this data. Translate technical rubrics into accessible feedback:\n{context}"
ai_summary = ai_engine.ask(prompt, system_instruction="You are a pedagogical report assistant.")
# Store this as a 'teacher remark' for the parent portal
# For now, we'll just return it. In a full system, you'd save this to a 'Reports' table.
return {"status": "Success", "message": f"Report sent to parent of {student.username}", "ai_summary": ai_summary}
# --- PARENT PORTAL ENDPOINTS ---
@app.get("/api/parent/dashboard/{student_id}", response_model=schemas.ParentDashboardResponse, tags=["Parent Portal"])
def get_parent_dashboard(student_id: str, db: Session = Depends(get_db)):
student = find_user(student_id, db)
if not student: raise HTTPException(status_code=404, detail="Student record not found")
quizzes = db.query(models.QuizHistory).filter(models.QuizHistory.owner_id == student.id).order_by(models.QuizHistory.id.desc()).limit(5).all()
review_prompt = f"Review progress for parent: {student.username}, Units: {', '.join(student.active_units_list)}, Avg: {sum([q.pnl for q in quizzes])/len(quizzes) if quizzes else 0}%"
ai_review = ai_engine.ask(review_prompt, system_instruction="Act as a supportive AI Education Consultant.")
return schemas.ParentDashboardResponse(
student_name=student.username,
academic_status=student.semester_status,
current_study_path=student.active_units_list,
ai_progress_review=ai_review or "Compiling progress data...",
teacher_remarks="Student is showing consistent engagement with AI modules.",
recent_grades=[schemas.QuizHistoryResponse(unit_name=q.unit_name, pnl=q.pnl, timestamp=q.timestamp) for q in quizzes]
)
# --- DASHBOARD & ACTIVITY ---
@app.get("/api/user/{user_id}/dashboard", response_model=schemas.DashboardResponse)
def get_dashboard(user_id: str, db: Session = Depends(get_db)):
user = find_user(user_id, db)
if not user:
user = models.User(
username=user_id,
role="Student",
sensory_mode="Standard",
ai_persona="Socratic Tutor",
semester_status="Active"
)
db.add(user)
db.commit()
db.refresh(user)
active_units = db.query(models.Unit).filter(
models.Unit.owner_id == user.id,
models.Unit.is_active == True
).all()
if not active_units:
defaults = ["Biochemistry II", "General Surgery", "Internal Medicine"]
for name in defaults:
db.add(models.Unit(name=name, owner_id=user.id))
db.commit()
active_units = db.query(models.Unit).filter(models.Unit.owner_id == user.id).all()
unit_names = [u.name for u in active_units]
quizzes = db.query(models.QuizHistory).filter(models.QuizHistory.owner_id == user.id).all()
total_quizzes = len(quizzes)
average_pnl = sum([q.pnl for q in quizzes]) / total_quizzes if total_quizzes > 0 else 0.0
chat_messages = db.query(models.ChatMessage).filter(models.ChatMessage.owner_id == user.id).order_by(models.ChatMessage.id.asc()).all()
return schemas.DashboardResponse(
username=user.username,
role=user.role,
sensory_mode=user.sensory_mode,
semester_status=user.semester_status,
difficulty=user.difficulty,
ai_persona=user.ai_persona,
active_units=unit_names,
average_pnl=round(average_pnl, 2),
total_quizzes=total_quizzes,
quiz_history=[schemas.QuizHistoryResponse(unit_name=q.unit_name, pnl=q.pnl, timestamp=q.timestamp) for q in quizzes],
chat_history=[schemas.ChatMessageResponse(role=c.role, content=c.content, timestamp=c.timestamp or "") for c in chat_messages]
)
@app.get("/api/user/{user_id}/timetable", response_model=schemas.TimetableResponse, tags=["Activity & Planning"])
def get_ai_timetable(user_id: str, db: Session = Depends(get_db)):
user = find_user(user_id, db)
if not user: raise HTTPException(status_code=404, detail="User not found")
# Check for existing timetable generated in the last 7 days
one_week_ago = time.time() - (7 * 24 * 60 * 60)
existing_timetable = db.query(models.Timetable).filter(
models.Timetable.owner_id == user.id,
models.Timetable.timestamp > one_week_ago
).order_by(models.Timetable.timestamp.desc()).first()
if existing_timetable:
return schemas.TimetableResponse(
weekly_plan=existing_timetable.weekly_plan_json,
ai_brief=existing_timetable.ai_brief
)
# If no recent timetable, generate a new one with continuity
last_timetable = db.query(models.Timetable).filter(
models.Timetable.owner_id == user.id
).order_by(models.Timetable.timestamp.desc()).first()
previous_plan = last_timetable.weekly_plan_json if last_timetable else None
quiz_history = db.query(models.QuizHistory).filter(models.QuizHistory.owner_id == user.id).all()
active_units = db.query(models.Unit).filter(models.Unit.owner_id == user.id, models.Unit.is_active == True).all()
# NEW LOGIC: Look at the past ten chat session titles instead of raw messages
recent_sessions = db.query(models.ChatSession).filter(
models.ChatSession.owner_id == user.id
).order_by(models.ChatSession.id.desc()).limit(10).all()
chat_titles = [s.title for s in recent_sessions]
user_info = {
"username": user.username,
"semester_status": user.semester_status
}
unit_names = [u.name for u in active_units]
new_timetable_data = ai_engine.generate_timetable(
user_info, quiz_history, unit_names, chat_titles, previous_plan
)
if not new_timetable_data:
raise HTTPException(status_code=500, detail="The AI is still drafting your plan. Try again in a moment.")
# Save to database
new_db_timetable = models.Timetable(
owner_id=user.id,
weekly_plan_json=new_timetable_data["weekly_plan"],
ai_brief=new_timetable_data["ai_brief"],
timestamp=time.time()
)
db.add(new_db_timetable)
db.commit()
return schemas.TimetableResponse(
weekly_plan=new_timetable_data["weekly_plan"],
ai_brief=new_timetable_data["ai_brief"]
)
# --- AI ENDPOINTS ---
@app.post("/api/ai/chat", response_model=schemas.ChatResponse)
def ai_chat(request: schemas.ChatRequest, db: Session = Depends(get_db)):
user = find_user(str(request.user_id), db)
if not user:
raise HTTPException(status_code=404, detail="User not found")
user_msg = models.ChatMessage(role="user", content=request.prompt, owner_id=user.id)
db.add(user_msg)
db.commit()
system_instruction = f"You are {user.ai_persona} (an AI Study Companion). " \
f"The student is at level: {user.semester_status}. " \
f"Be encouraging, concise, and educational."
history_text = ""
for msg in request.history:
history_text += f"{msg.role}: {msg.content}\n"
full_prompt = f"{history_text}User: {request.prompt}"
response_text = ai_engine.ask(prompt=full_prompt, system_instruction=system_instruction)
if not response_text:
raise HTTPException(status_code=500, detail="AI engine is currently unavailable.")
ai_msg = models.ChatMessage(role="model", content=response_text, owner_id=user.id)
db.add(ai_msg)
db.commit()
return schemas.ChatResponse(response=response_text)
@app.post("/api/ai/quiz", response_model=schemas.QuizResponse)
def generate_quiz(
request: schemas.QuizRequest,
topic: Optional[str] = Query(None),
db: Session = Depends(get_db)
):
user = find_user(str(request.user_id), db)
if not user:
raise HTTPException(status_code=404, detail="User not found")
quiz_data = ai_engine.generate_quiz(
unit_name=request.unit_name,
student_level=user.semester_status,
topic=topic
)
if not quiz_data:
raise HTTPException(status_code=500, detail="Failed to ignite the Quiz Engine.")
return quiz_data
@app.post("/api/quiz/record")
def record_quiz(history: schemas.QuizRecordRequest, db: Session = Depends(get_db)):
user = find_user(str(history.user_id), db)
if not user:
raise HTTPException(status_code=404, detail="User not found")
new_record = models.QuizHistory(
unit_name=history.unit_name,
score=history.score,
total=history.total,
pnl=(history.score / history.total) * 100 if history.total > 0 else 0,
owner_id=user.id,
timestamp=str(history.timestamp)
)
db.add(new_record)
db.commit()
return {"status": "Success", "message": "Result recorded."}
@app.get("/api/user/{user_id}/recommendations", response_model=schemas.RecommendationResponse)
def get_recommendations(user_id: str, db: Session = Depends(get_db)):
user = find_user(user_id, db)
if not user:
raise HTTPException(status_code=404, detail="User not found")
quiz_history = db.query(models.QuizHistory).filter(models.QuizHistory.owner_id == user.id).all()
active_units = db.query(models.Unit).filter(models.Unit.owner_id == user.id, models.Unit.is_active == True).all()
unit_names = [u.name for u in active_units]
user_info = {
"username": user.username,
"ai_persona": user.ai_persona,
"semester_status": user.semester_status
}
rec_text = ai_engine.get_recommendations(user_info, quiz_history, unit_names)
if not rec_text:
rec_text = "Keep focusing on your current units! You're making progress."
return schemas.RecommendationResponse(recommendation=rec_text)
if __name__ == "__main__":
import uvicorn
port = int(os.environ.get("PORT", 8000))
uvicorn.run(app, host="0.0.0.0", port=port)
|