A message input to the model with a role indicating instruction following hierarchy. Instructions given with the developer or system role take precedence over instructions given with the user role. Messages with the assistant role are presumed to have been generated by the model in previous interactions.

interface EasyInputMessage {
    content: string | ResponseInputMessageContentList;
    role:
        | "system"
        | "developer"
        | "assistant"
        | "user";
    type?: "message";
}

Properties

Properties

Text, image, or audio input to the model, used to generate a response. Can also contain previous assistant responses.

role:
    | "system"
    | "developer"
    | "assistant"
    | "user"

The role of the message input. One of user, assistant, system, or developer.

type?: "message"

The type of the message input. Always message.