effect-io-ai

Package: @effect/ai-openai-compat
Module: OpenAiClient

OpenAiClient.ChatCompletionContentPart

Structured content parts accepted in chat completion messages.

Signature

type ChatCompletionContentPart = | {
    readonly type: "text"
    readonly text: string
  }
  | {
    readonly type: "image_url"
    readonly image_url: {
      readonly url: string
      readonly detail?: "low" | "high" | "auto" | undefined
    }
  }

Source

Since v4.0.0