Package: @effect/ai-openai-compat
Module: OpenAiClient
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
}
}
Since v4.0.0