push up updates for VideoField

This commit is contained in:
Mary Hipp
2025-08-11 16:58:11 -04:00
committed by psychedelicious
parent efb54151fd
commit af8ad1de3d

View File

@@ -229,7 +229,10 @@ class ImageField(BaseModel):
class VideoField(BaseModel):
"""A video primitive field"""
video_name: str = Field(description="The name of the video")
video_id: str = Field(description="The id of the video")
width: int = Field(description="The width of the video in pixels")
height: int = Field(description="The height of the video in pixels")
duration_seconds: float = Field(description="The duration of the video in seconds")
class BoardField(BaseModel):