commonMain.com.xebia.functional.xef.reasoning.serpapi.SearchResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xef-reasoning-jvm Show documentation
Show all versions of xef-reasoning-jvm Show documentation
Building applications with LLMs through composability, in Kotlin and Scala
The newest version!
package com.xebia.functional.xef.reasoning.serpapi
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
data class SearchResult(
val title: String,
@SerialName("snippet") val document: String? = null,
@SerialName("link") val source: String
)