start
Method
This is a method of the VideoAgent class in the video_agent module.Generate video with optional wait and file output. Beginner-friendly method that handles the full workflow:
- Generate video
- Wait for completion (if wait=True)
- Download and save to file (if output is specified)
Signature
Parameters
Text description of the desired video
If True, wait for completion before returning
Path to save the video file (e.g., “video.mp4”) **kwargs: Additional parameters for generate()
Returns
VideoObject with initial status
- If wait=True and output: bytes (video content)
- If wait=True and no output: VideoObject with completed status

