restructure project

This commit is contained in:
Yaojia Wang
2026-01-27 23:58:17 +01:00
parent 58bf75db68
commit d6550375b0
230 changed files with 5513 additions and 1756 deletions

View File

@@ -0,0 +1,13 @@
"""
Labeling API Schemas
Pydantic models for pre-labeling and label validation endpoints.
"""
from pydantic import BaseModel, Field
class PreLabelResponse(BaseModel):
"""API response for pre-label endpoint."""
document_id: str = Field(..., description="Document identifier for retrieving results")