A list of Files attached to an assistant.

interface AssistantFile {
    assistant_id: string;
    created_at: number;
    id: string;
    object: "assistant.file";
}

Properties

assistant_id: string

The assistant ID that the file is attached to.

created_at: number

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

id: string

The identifier, which can be referenced in API endpoints.

object: "assistant.file"

The object type, which is always assistant.file.

Generated using TypeDoc