Skip to main content
Send chat completions to deployed models using the Adaptive SDK, OpenAI Python library, or any HTTP client. You can also chat with models directly in the UI: open your project and click Chat. If you omit model, requests route to the project’s default model, or to a model in an active A/B test. Every interaction (prompt + completion pair) is logged automatically. See Interactions for details.

Chat completions

Streaming

Completion ID

Use completion_id to log Metrics against the response:
See SDK Reference for all chat methods.

Multimodal chat completions

Models with the Multimodal tag accept images alongside text. In the UI, attach images directly in the Chat view. For multimodal requests, content is a list of content fragments instead of a plain string. Each fragment has a type field:
  • text: a text fragment: {"type": "text", "text": "..."}
  • image_url: an image fragment: {"type": "image_url", "image_url": {"url": "data:image/png;base64,..."}}
Images must be base64-encoded data: URIs (PNG, JPEG, GIF, or WebP, up to 10MB). HTTP URLs are not supported. You can combine multiple text and image fragments in a single message.
The Adaptive SDK also accepts a flat string for image_url: