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

cc.unitmesh.azure.AzureOpenAIDto.kt Maven / Gradle / Ivy

Go to download

Chocolate Factory is a cutting-edge LLM toolkit designed to empower you in creating your very own AI assistant.

The newest version!
package cc.unitmesh.azure

import com.theokanning.openai.completion.chat.ChatMessage
import kotlinx.serialization.Serializable

@Serializable
data class SimpleOpenAIFormat(val role: String, val content: String) {
    companion object {
        fun fromChatMessage(message: ChatMessage): SimpleOpenAIFormat {
            return SimpleOpenAIFormat(message.role, message.content)
        }
    }
}

@Serializable
data class SimpleOpenAIBody(val messages: List, val temperature: Double, val stream: Boolean)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy