io.cequence.openaiscala.domain.ChatRole.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openai-scala-core_3 Show documentation
Show all versions of openai-scala-core_3 Show documentation
Core module of OpenAI Scala client
package io.cequence.openaiscala.domain
sealed trait ChatRole extends EnumValue {
override def toString: String = super.toString.toLowerCase
}
object ChatRole {
case object User extends ChatRole
case object System extends ChatRole
case object Assistant extends ChatRole
@Deprecated
case object Function extends ChatRole
case object Tool extends ChatRole
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy