Describes an OpenAI model offering that can be used with the API.

interface Model {
    created: number;
    id: string;
    object: "model";
    owned_by: string;
}

Properties

created: number

The Unix timestamp (in seconds) when the model was created.

id: string

The model identifier, which can be referenced in the API endpoints.

object: "model"

The object type, which is always "model".

owned_by: string

The organization that owns the model.