commonMain.com.xebia.functional.openai.generated.model.ChatCompletionNamedToolChoice.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xef-openai-client Show documentation
Show all versions of xef-openai-client Show documentation
Building applications with LLMs through composability in Kotlin
The 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 com.xebia.functional.openai.generated.model.ChatCompletionNamedToolChoiceFunction
import kotlinx.serialization.Serializable
import kotlinx.serialization.SerialName
import kotlinx.serialization.Contextual
import kotlin.js.JsName
import kotlinx.serialization.json.*
/**
* Specifies a tool the model should use. Use to force the model to call a specific function.
*
* @param type The type of the tool. Currently, only `function` is supported.
* @param function
*/
@Serializable
data class ChatCompletionNamedToolChoice (
/* The type of the tool. Currently, only `function` is supported. */
@SerialName(value = "type") val type: ChatCompletionNamedToolChoice.Type,
@SerialName(value = "function") val function: ChatCompletionNamedToolChoiceFunction
) {
/**
* The type of the tool. Currently, only `function` is supported.
*
* Values: function
*/
@Serializable
enum class Type(val value: kotlin.String) {
@SerialName(value = "function") function("function");
}
}