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
str
required
Text description of the desired video
bool
default:"True"
If True, wait for completion before returning
Optional
Path to save the video file (e.g., “video.mp4”) **kwargs: Additional parameters for generate()
Returns
Union[Any, bytes]
VideoObject with initial status
- If wait=True and output: bytes (video content)
- If wait=True and no output: VideoObject with completed status
Usage
Uses
generatewait_for_completioncontentf.write
Used By
Source
View on GitHub
praisonaiagents/agent/video_agent.py at line 550
