Files
ai-training-monitor/backend/app/models/sample.py
2025-01-23 09:27:40 +01:00

13 lines
244 B
Python

from datetime import datetime
from pydantic import BaseModel
class Sample(BaseModel):
filename: str
url: str
created_at: datetime
source: str # 'local' or 'remote'
source_path: str # full path to the file
size: int