cc.unitmesh.azure.AzureOpenAIDto.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openai Show documentation
Show all versions of openai Show documentation
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