Text

Send a simple text-only message to the assistant.

{
  "role": "user",
  "content": "How can I reset my password?",
  "timestamp": 1742268182058
}

Image

Send a single image to the assistant for analysis or reference.

{
  "role": "user",
  "content": {
    "type": "image",
    "image_url": {
      "url": "https://example.com/image.jpg"
    }
  },
  "timestamp": 1742268182058
}

Mixed Content

Combine text and multiple images in a single message.

{
  "role": "user",
  "content": [
    {
      "type": "text",
      "text": "I'm having an issue with this product:"
    },
    {
      "type": "image",
      "image_url": {
        "url": "https://example.com/image1.jpg"
      }
    },
    {
      "type": "image",
      "image_url": {
        "url": "https://example.com/image2.jpg"
      }
    }
  ],
  "timestamp": 1742268182058
}