OllamaChatMessageDTO

@Serializable
data class OllamaChatMessageDTO(val role: String, val content: String, val images: List<String>? = null, val toolCalls: List<OllamaToolCallDTO>? = null)(source)

Message for the chat API.

Constructors

Link copied to clipboard
constructor(role: String, content: String, images: List<String>? = null, toolCalls: List<OllamaToolCallDTO>? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val images: List<String>? = null
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "tool_calls")
val toolCalls: List<OllamaToolCallDTO>? = null