import { VlmRun } from "vlmrun";const client = new VlmRun({ apiKey: "your-api-key",});// Upload a file using local file pathconst file = await client.files.upload({ filePath: "path/to/document.pdf",});// The response includes the file ID and metadataconsole.log(file.id); // "file_abc123"console.log(file.filename); // "document.pdf"console.log(file.bytes); // 1234567console.log(file.purpose); // "document"console.log(file.created_at); // "2024-01-01T00:00:00Z"