π¨ Open Responses API (Alpha). Learn more here
Learn about file handling and management in Julep
id: string; // Unique identifier name: string; // Name of the file content: string; // Base64 encoded content created_at: string; // Creation timestamp size: number; // File size in bytes hash: string; // File hash for verification description?: string; // Optional description mime_type?: string; // Optional MIME type
from julep import Julep client = Julep() file = client.files.create( name="example.pdf", content="base64_encoded_content", description="Sample document", mime_type="application/pdf" )
file = client.files.get("file_id")
client.files.delete("file_id")