49 lines
1.8 KiB
Python
49 lines
1.8 KiB
Python
from datetime import datetime
|
|
from typing import List, Optional
|
|
from sqlalchemy import JSON, Column, DateTime
|
|
from sqlmodel import SQLModel, Field
|
|
|
|
from models.presentation_layout import PresentationLayoutModel
|
|
from models.presentation_outline_model import (
|
|
PresentationOutlineModel,
|
|
SlideOutlineModel,
|
|
)
|
|
from models.presentation_structure_model import PresentationStructureModel
|
|
|
|
|
|
class PresentationModel(SQLModel, table=True):
|
|
id: str = Field(primary_key=True)
|
|
prompt: str
|
|
n_slides: int
|
|
language: str
|
|
title: Optional[str] = None
|
|
notes: Optional[List[str]] = Field(sa_column=Column(JSON), default=None)
|
|
outlines: Optional[List[dict]] = Field(sa_column=Column(JSON), default=None)
|
|
summary: Optional[str] = None
|
|
created_at: datetime = Field(sa_column=Column(DateTime, default=datetime.now))
|
|
updated_at: datetime = Field(sa_column=Column(DateTime, default=datetime.now))
|
|
layout: Optional[dict] = Field(sa_column=Column(JSON), default=None)
|
|
structure: Optional[dict] = Field(sa_column=Column(JSON), default=None)
|
|
|
|
def get_presentation_outline(self):
|
|
if not self.outlines:
|
|
return None
|
|
return PresentationOutlineModel(
|
|
title=self.title,
|
|
slides=[SlideOutlineModel(**each) for each in self.outlines],
|
|
notes=self.notes,
|
|
)
|
|
|
|
def get_layout(self):
|
|
return PresentationLayoutModel(**self.layout)
|
|
|
|
def set_layout(self, layout: PresentationLayoutModel):
|
|
self.layout = layout.model_dump()
|
|
|
|
def get_structure(self):
|
|
if not self.structure:
|
|
return None
|
|
return PresentationStructureModel(**self.structure)
|
|
|
|
def set_structure(self, structure: PresentationStructureModel):
|
|
self.structure = structure.model_dump()
|