Spaces:
Sleeping
Sleeping
File size: 246 Bytes
05ae0b9 |
1 2 3 4 5 6 7 8 9 10 |
from typing import TypedDict, Optional
class AgentState(TypedDict):
video_1_url: str
video_2_url: str
analysis_1: Optional[str]
analysis_2: Optional[str]
bridging_prompt: Optional[str]
generated_video_path: Optional[str]
|