Report-Genius / backend /models /__init__.py
StormShadow308's picture
Deploy RICS v2 backend (CPU embedder + reranker, baked jina models)
a671976
Raw
History Blame Contribute Delete
488 Bytes
"""Pydantic data models for the v2 backend."""
from backend.models.report import GeneratedSection, ReportResult
from backend.models.schema import (
PlaceholderSyntax,
RatingSystem,
RatingValue,
SectionDefinition,
TemplateSchema,
)
from backend.models.section import SectionNote
__all__ = [
"RatingValue",
"RatingSystem",
"PlaceholderSyntax",
"SectionDefinition",
"TemplateSchema",
"SectionNote",
"GeneratedSection",
"ReportResult",
]