OllamaChatResponseSpecification
class OllamaChatResponseSpecification(var assistantContent: String = "This is a mock response from Ollama.", var thinking: String? = null, var toolCalls: List<Map<String, Any>>? = null, var finishReason: String? = "stop", delay: Duration = 0.seconds) : AbstractResponseSpecification<ChatRequest, ChatResponse> (source)
Specification for configuring chat completion responses.
This class is used to specify the content and behavior of responses to chat completion requests. It allows specifying the assistant message content, thinking content, and tool calls.