import uuid from datetime import datetime from pydantic import BaseModel, ConfigDict, EmailStr, Field class UserCreate(BaseModel): email: EmailStr password: str = Field(min_length=8, max_length=128) display_name: str = Field(min_length=1, max_length=160) class UserLogin(BaseModel): email: EmailStr password: str class UserRead(BaseModel): id: uuid.UUID email: EmailStr display_name: str created_at: datetime model_config = ConfigDict(from_attributes=True) class TokenRead(BaseModel): access_token: str token_type: str = "bearer" user: UserRead class MediaUploadRead(BaseModel): image_s3_url: str image_s3_key: str