interface FileRetrieveResponse {
    bytes: number;
    container_id: string;
    created_at: number;
    id: string;
    object: "container.file";
    path: string;
    source: string;
}

Properties

bytes: number

Size of the file in bytes.

container_id: string

The container this file belongs to.

created_at: number

Unix timestamp (in seconds) when the file was created.

id: string

Unique identifier for the file.

object: "container.file"

The type of this object (container.file).

path: string

Path of the file in the container.

source: string

Source of the file (e.g., user, assistant).