BotLLMSearchResponseData

@Serializable
data class BotLLMSearchResponseData(val searchEntryPoint: SearchEntryPoint? = null, val groundingChunks: List<GroundingChunk>? = null, val groundingSupports: List<GroundingSupport>? = null, val webSearchQueries: List<String>? = null)

Constructors

Link copied to clipboard
constructor(searchEntryPoint: SearchEntryPoint? = null, groundingChunks: List<GroundingChunk>? = null, groundingSupports: List<GroundingSupport>? = null, webSearchQueries: List<String>? = null)

Properties

Link copied to clipboard
@SerialName(value = "grounding_chunks")
val groundingChunks: List<GroundingChunk>? = null
Link copied to clipboard
@SerialName(value = "grounding_supports")
val groundingSupports: List<GroundingSupport>? = null
Link copied to clipboard
@SerialName(value = "search_entry_point")
val searchEntryPoint: SearchEntryPoint? = null
Link copied to clipboard
@SerialName(value = "web_search_queries")
val webSearchQueries: List<String>? = null