Spaces:
Sleeping
Sleeping
| """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", | |
| ] | |