Spaces:
Runtime error
Runtime error
File size: 488 Bytes
aad7814 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | """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",
]
|