Package: @effect/ai-openai-compat
Module: OpenAiClient
JSON response format configuration for chat completion requests.
Signature
type ChatCompletionResponseFormat = | {
readonly type: "json_object"
}
| {
readonly type: "json_schema"
readonly json_schema: {
readonly name: string
readonly schema: JsonObject
readonly description?: string | undefined
readonly strict?: boolean | undefined
}
}
Since v4.0.0