CompleteResult
data class CompleteResult(val completion: CompleteResult.Completion, val meta: JsonObject? = null) : ServerResult(source)
The server's response to a CompleteRequest.
Provides completion options for prompt or resource template arguments, along with pagination information if there are many possible completions.
Types
Link copied to clipboard
data class Completion(val values: List<String>, val total: Int? = null, val hasMore: Boolean? = null)
Completion options and pagination information.