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