commonMain.com.xebia.functional.openai.ServerSentEvent.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-jvm Show documentation
Show all versions of xef-openai-client-jvm Show documentation
Building applications with LLMs through composability in Kotlin
package com.xebia.functional.openai
import kotlinx.serialization.Serializable
import kotlinx.serialization.json.JsonElement
@Serializable
data class ServerSentEvent(
val event: String? = null,
val data: JsonElement? = null,
)