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

com.github.frtu.kotlin.ai.os.model.Message.kt Maven / Gradle / Ivy

package com.github.frtu.kotlin.ai.os.model

/**
 * Message class is a base unit from a Thread
 * @author frtu
 */
data class Message(
    val role: Role,
    val content: String,
)

//fun userMessage(content: String) = Message(Role.USER, content)
//fun systemMessage(content: String) = Message(Role.SYSTEM, content)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy