commonMain.com.xebia.functional.openai.AssistantEvent.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 Show documentation
Show all versions of xef-openai-client Show documentation
Building applications with LLMs through composability in Kotlin
package com.xebia.functional.openai
import kotlinx.serialization.Serializable
// TODO write proper AssistantEvent
// According to:
// https://platform.openai.com/docs/api-reference/assistants-streaming/message-delta-object
@Serializable data class AssistantEvent(val todo: String)