Spaces:
Sleeping
Sleeping
File size: 14,567 Bytes
942216e |
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 |
"""
API Layer - FastAPI Application
This module implements the FastAPI application for the MCP EdTech project,
providing RESTful endpoints for interacting with the MCP system.
"""
import os
from typing import Dict, List, Optional, Any, Union
from datetime import datetime, timedelta
from fastapi import FastAPI, Depends, HTTPException, status, BackgroundTasks
from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse, FileResponse
from fastapi.staticfiles import StaticFiles
from pydantic import BaseModel
from ..mcp_core.context import Context, ContextManager
from ..mcp_core.model_adapters import ModelRegistry, MockModelAdapter
from ..mcp_core.processor import InteractionProcessor
from ..mcp_core.protocol import (
MCPRequest, MCPResponse, InteractionType, ContentFormat,
EducationalLevel, LearningObjective, StudentProfile
)
from ..edtech_extensions.student_profile import StudentProfileManager
from ..edtech_extensions.progress_tracking import ProgressTracker, AssessmentType
from ..edtech_extensions.content_adaptation import ContentAdapter
# Initialize FastAPI app
app = FastAPI(
title="MCP EdTech API",
description="Model Context Protocol implementation for EdTech applications",
version="1.0.0"
)
# Add CORS middleware
app.add_middleware(
CORSMiddleware,
allow_origins=["*"], # In production, specify actual origins
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Initialize core components
context_manager = ContextManager()
model_registry = ModelRegistry()
# Register mock model adapter for demonstration
mock_adapter = MockModelAdapter(model_id="mock-edtech-model")
model_registry.register_adapter("mock", mock_adapter)
# Initialize processor
interaction_processor = InteractionProcessor(context_manager, model_registry)
# Initialize EdTech extensions
os.makedirs("./storage", exist_ok=True)
student_profile_manager = StudentProfileManager()
progress_tracker = ProgressTracker()
content_adapter = ContentAdapter()
# API Models
class ContextCreate(BaseModel):
"""Request model for creating a new context."""
metadata: Dict[str, Any] = {}
class ContextUpdate(BaseModel):
"""Request model for updating a context."""
metadata: Dict[str, Any] = {}
state: Dict[str, Any] = {}
class InteractionRequest(BaseModel):
"""Request model for processing an interaction."""
context_id: Optional[str] = None
interaction_type: InteractionType
content: Dict[str, Any]
format: ContentFormat = ContentFormat.TEXT
metadata: Dict[str, Any] = {}
model_name: str = "mock" # Default to mock model
class StudentProfileCreate(BaseModel):
"""Request model for creating a student profile."""
name: str
educational_level: EducationalLevel
learning_style: Optional[str] = None
interests: List[str] = []
strengths: List[str] = []
areas_for_improvement: List[str] = []
class StudentProfileUpdate(BaseModel):
"""Request model for updating a student profile."""
name: Optional[str] = None
educational_level: Optional[EducationalLevel] = None
learning_style: Optional[str] = None
interests: Optional[List[str]] = None
strengths: Optional[List[str]] = None
areas_for_improvement: Optional[List[str]] = None
class AssessmentCreate(BaseModel):
"""Request model for creating an assessment."""
student_id: str
assessment_type: AssessmentType
title: str
score: float
max_score: float
objectives: List[str]
feedback: str = ""
details: Dict[str, Any] = {}
class ContentAdaptRequest(BaseModel):
"""Request model for adapting content."""
content: Dict[str, Any]
student_id: str
learning_objectives: List[str]
content_format: ContentFormat = ContentFormat.TEXT
# API Routes
@app.get("/")
async def root():
"""Root endpoint returning API information."""
return {
"name": "MCP EdTech API",
"version": "1.0.0",
"description": "Model Context Protocol implementation for EdTech applications"
}
# Context endpoints
@app.post("/api/v1/context/create", response_model=Dict[str, Any])
async def create_context(request: ContextCreate):
"""Create a new context."""
context = context_manager.create_context(metadata=request.metadata)
return context.to_dict()
@app.get("/api/v1/context/{context_id}", response_model=Dict[str, Any])
async def get_context(context_id: str):
"""Get context information."""
context = context_manager.get_context(context_id)
if not context:
raise HTTPException(status_code=404, detail="Context not found")
return context.to_dict()
@app.put("/api/v1/context/{context_id}", response_model=Dict[str, Any])
async def update_context(context_id: str, request: ContextUpdate):
"""Update context."""
context = context_manager.get_context(context_id)
if not context:
raise HTTPException(status_code=404, detail="Context not found")
if request.metadata:
context.metadata.update(request.metadata)
if request.state:
context.update_state(request.state)
return context.to_dict()
@app.delete("/api/v1/context/{context_id}", response_model=Dict[str, str])
async def delete_context(context_id: str):
"""Delete context."""
success = context_manager.delete_context(context_id)
if not success:
raise HTTPException(status_code=404, detail="Context not found")
return {"status": "deleted", "context_id": context_id}
# Interaction endpoint
@app.post("/api/v1/interact", response_model=Dict[str, Any])
async def process_interaction(request: InteractionRequest):
"""Process an interaction."""
try:
mcp_request = MCPRequest(
context_id=request.context_id,
interaction_type=request.interaction_type,
content=request.content,
format=request.format,
metadata=request.metadata
)
response = await interaction_processor.process_interaction(
mcp_request,
request.model_name
)
return response.dict()
except ValueError as e:
raise HTTPException(status_code=400, detail=str(e))
except Exception as e:
raise HTTPException(status_code=500, detail=f"Error processing interaction: {str(e)}")
# Student profile endpoints
@app.post("/api/v1/students", response_model=Dict[str, Any])
async def create_student_profile(request: StudentProfileCreate):
"""Create student profile."""
profile = await student_profile_manager.create_profile(
name=request.name,
educational_level=request.educational_level,
learning_style=request.learning_style,
interests=request.interests,
strengths=request.strengths,
areas_for_improvement=request.areas_for_improvement
)
return profile.dict()
@app.get("/api/v1/students/{student_id}", response_model=Dict[str, Any])
async def get_student_profile(student_id: str):
"""Get student information."""
profile = await student_profile_manager.get_profile(student_id)
if not profile:
raise HTTPException(status_code=404, detail="Student profile not found")
return profile.dict()
@app.put("/api/v1/students/{student_id}", response_model=Dict[str, Any])
async def update_student_profile(student_id: str, request: StudentProfileUpdate):
"""Update student information."""
updates = {k: v for k, v in request.dict().items() if v is not None}
profile = await student_profile_manager.update_profile(student_id, updates)
if not profile:
raise HTTPException(status_code=404, detail="Student profile not found")
return profile.dict()
# Progress tracking endpoints
@app.get("/api/v1/students/{student_id}/progress", response_model=Dict[str, Any])
async def get_student_progress(student_id: str):
"""Get learning progress."""
# Check if student exists
profile = await student_profile_manager.get_profile(student_id)
if not profile:
raise HTTPException(status_code=404, detail="Student profile not found")
summary = await progress_tracker.get_progress_summary(student_id)
return summary
@app.post("/api/v1/assessments", response_model=Dict[str, Any])
async def create_assessment(request: AssessmentCreate):
"""Create assessment."""
# Check if student exists
profile = await student_profile_manager.get_profile(request.student_id)
if not profile:
raise HTTPException(status_code=404, detail="Student profile not found")
result = await progress_tracker.record_assessment(
student_id=request.student_id,
assessment_type=request.assessment_type,
title=request.title,
score=request.score,
max_score=request.max_score,
objectives=request.objectives,
feedback=request.feedback,
details=request.details
)
# Update student profile with completed objectives if score is good
if request.score / request.max_score >= 0.7: # 70% or better
for objective_id in request.objectives:
await student_profile_manager.add_completed_objective(
request.student_id,
objective_id
)
return result.dict()
@app.get("/api/v1/students/{student_id}/assessments", response_model=List[Dict[str, Any]])
async def list_student_assessments(student_id: str):
"""List assessments for a student."""
# Check if student exists
profile = await student_profile_manager.get_profile(student_id)
if not profile:
raise HTTPException(status_code=404, detail="Student profile not found")
results = await progress_tracker.list_assessments(student_id)
return [result.dict() for result in results]
# Content adaptation endpoint
@app.post("/api/v1/content/adapt", response_model=Dict[str, Any])
async def adapt_content(request: ContentAdaptRequest):
"""Adapt content for a student."""
# Get student profile
profile = await student_profile_manager.get_profile(request.student_id)
if not profile:
raise HTTPException(status_code=404, detail="Student profile not found")
# Create learning objectives (in a real app, these would come from a database)
learning_objectives = [
LearningObjective(
id=obj_id,
description=f"Learning objective {obj_id}",
taxonomy_level="understand",
subject_area="general",
prerequisites=[]
)
for obj_id in request.learning_objectives
]
# Adapt content
adapted_content = await content_adapter.adapt_content(
content=request.content,
student_profile=profile,
learning_objectives=learning_objectives,
content_format=request.content_format
)
return adapted_content
# Learning path endpoint
@app.get("/api/v1/learning-paths/{student_id}", response_model=Dict[str, Any])
async def get_learning_path(student_id: str):
"""Get personalized learning path."""
# Check if student exists
profile = await student_profile_manager.get_profile(student_id)
if not profile:
raise HTTPException(status_code=404, detail="Student profile not found")
# In a real implementation, this would generate a personalized learning path
# based on the student's profile, progress, and available learning materials.
# For this demo, we'll return a mock learning path.
# Get student's completed objectives
completed_objectives = profile.completed_objectives
current_objectives = profile.current_objectives
# Mock learning path
return {
"student_id": student_id,
"student_name": profile.name,
"educational_level": profile.educational_level,
"completed_objectives": completed_objectives,
"current_objectives": current_objectives,
"recommended_objectives": [
{
"id": f"obj-{i}",
"title": f"Recommended Objective {i}",
"description": f"This is a recommended learning objective for {profile.name}",
"estimated_time": f"{i*2} hours",
"difficulty": "intermediate"
}
for i in range(1, 4)
],
"recommended_resources": [
{
"id": f"res-{i}",
"title": f"Resource {i}",
"type": "video" if i % 2 == 0 else "article",
"url": f"https://example.com/resource-{i}",
"description": f"This is a recommended resource for {profile.name}"
}
for i in range(1, 6)
],
"generated_at": datetime.utcnow().isoformat()
}
# Model information endpoints
@app.get("/api/v1/models", response_model=List[str])
async def list_models():
"""List available models."""
return model_registry.list_adapters()
@app.get("/api/v1/models/{model_name}/capabilities", response_model=Dict[str, Any])
async def get_model_capabilities(model_name: str):
"""Get model capabilities."""
capabilities = model_registry.get_adapter_capabilities(model_name)
if not capabilities:
raise HTTPException(status_code=404, detail="Model not found")
return capabilities
# Health check endpoint
@app.get("/health", response_model=Dict[str, str])
async def health_check():
"""Health check endpoint."""
return {
"status": "healthy",
"timestamp": datetime.utcnow().isoformat()
}
# Demo UI route
@app.get("/demo", response_class=FileResponse)
async def demo_ui():
"""Serve the demo UI."""
return FileResponse("static/index.html")
# Serve static files for demo UI
app.mount("/static", StaticFiles(directory="static"), name="static")
# Main function to run the app
def start():
"""Start the FastAPI application using uvicorn."""
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
if __name__ == "__main__":
start()
|