Full-stack application for predicting where humans look in images using DeepGaze saliency models. Includes heatmap overlays, gaze sequence prediction, hotspot detection, AOI analysis, rule-based insights, optional Claude AI design analysis, and professional PDF report generation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 lines
168 B
Python
7 lines
168 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class ReportRequest(BaseModel):
|
|
include_aois: bool = True
|
|
include_gaze_sequence: bool = True
|
|
include_hotspots: bool = True
|