All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.xebia.functional.openai.generated.model.MessageDeltaContentImageFileObjectImageFile.kt Maven / Gradle / Ivy

There is a newer version: 0.0.5-alpha.118
Show newest version
/**
 *
 * Please note:
 * This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * Do not edit this file manually.
 *
 */

@file:Suppress(
    "ArrayInDataClass",
    "EnumEntryName",
    "RemoveRedundantQualifierName",
    "UnusedImport"
)

package com.xebia.functional.openai.generated.model




import kotlinx.serialization.Serializable
import kotlinx.serialization.SerialName
import kotlinx.serialization.Contextual
import kotlin.js.JsName
import kotlinx.serialization.json.*

/**
* 
*
    * @param fileId The [File](/docs/api-reference/files) ID of the image in the message content. Set `purpose=\"vision\"` when uploading the File if you need to later display the file content.
    * @param detail Specifies the detail level of the image if specified by the user. `low` uses fewer tokens, you can opt in to high resolution using `high`.
*/
@Serializable


data class MessageDeltaContentImageFileObjectImageFile (
        /* The [File](/docs/api-reference/files) ID of the image in the message content. Set `purpose=\"vision\"` when uploading the File if you need to later display the file content. */
    @SerialName(value = "file_id") val fileId: kotlin.String? = null,
        /* Specifies the detail level of the image if specified by the user. `low` uses fewer tokens, you can opt in to high resolution using `high`. */
    @SerialName(value = "detail") val detail: MessageDeltaContentImageFileObjectImageFile.Detail? = Detail.auto
) {

            /**
            * Specifies the detail level of the image if specified by the user. `low` uses fewer tokens, you can opt in to high resolution using `high`.
            *
            * Values: auto,low,high
            */
            @Serializable
            enum class Detail(val value: kotlin.String) {
                @SerialName(value = "auto") auto("auto"),
                @SerialName(value = "low") low("low"),
                @SerialName(value = "high") high("high");
                }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy