commonMain.com.xebia.functional.xef.SelectedItems.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xef-core-jvm Show documentation
Show all versions of xef-core-jvm Show documentation
Building applications with LLMs through composability in Kotlin
The newest version!
package com.xebia.functional.xef
import com.xebia.functional.xef.conversation.Description
import kotlinx.serialization.Serializable
@Serializable
@Description("The selected items indexes")
data class SelectedItems(
@Description("The selected items indexes") val selectedItems: List,
)