Spaces:
Running
Running
File size: 1,550 Bytes
c6706bd 8ad42f5 c6706bd ab19ad9 c6706bd 8ad42f5 c6706bd 1006fab c6706bd 1006fab 8ad42f5 c6706bd 8ad42f5 4d4fccb |
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 |
"""Pydantic response schemas"""
from pydantic import BaseModel
from typing import Optional, List
from datetime import datetime
class PhotoResponse(BaseModel):
"""Response model for photo metadata"""
id: int
filename: str
image_url: str
tags: List[str]
caption: str
created_at: datetime
class Config:
from_attributes = True
class PhotoDetailResponse(PhotoResponse):
"""Detailed photo response with embedding info"""
# embedding: Optional[List[float]] = None
pass
class SearchResult(BaseModel):
"""Search result with similarity score"""
photo_id: int
filename: str
image_url: str
tags: List[str]
caption: str
distance: float # L2 distance (lower is more similar)
class Config:
from_attributes = True
class SearchResponse(BaseModel):
"""Response for search endpoint"""
query: str
results: List[SearchResult]
total_results: int
class UploadResponse(BaseModel):
"""Response after uploading a photo"""
id: int
filename: str
image_url: str
# tags: List[str]
# caption: str
message: str
class PhotoItem(BaseModel):
photo_id: int
filename: str
image_url: str
tags: List[str]
caption: str
distance: float
class AlbumItem(BaseModel):
album_summary: str
album: List[PhotoItem]
AlbumsResponse = List[AlbumItem]
class GenerateImageResponse(BaseModel):
"""Response for generating a similar image"""
description: str
generated_image_url: str
message: str |