from vlmrun.client import VLMRunfrom vlmrun.client.types import FileResponse# Initialize the clientclient = VLMRun()# Upload a filefile_response: FileResponse = client.files.upload(file="path/to/file.jpg",# File path or file-like object purpose="assistants"# Purpose of the file (e.g. "assistants", "fine-tune", "datasets", "batch"))# Get file ID for later usefile_id = file_response.id