from pathlib import Pathfrom vlmrun.client import VLMRunfrom vlmrun.client.types import PredictionResponse# Initialize the clientclient = VLMRun()# Process a video file with a predefined schemaresponse: PredictionResponse = client.video.generate( file=Path("path/to/video.mp4"), domain="video.transcription",)