Verbosity

data class Verbosity constructor(val showPrompts: Boolean = false, val showLlmResponses: Boolean = false, val debug: Boolean = false, val showPlanning: Boolean = false) : LlmVerbosity

Controls log output.

Parameters

showPrompts

whether to show prompts sent to the LLM

showLlmResponses

whether to show responses received from the LLM

debug

whether to enable debug logging. will also show planning details.

showPlanning

whether to show planning details

Constructors

Link copied to clipboard
constructor(showPrompts: Boolean = false, showLlmResponses: Boolean = false, debug: Boolean = false, showPlanning: Boolean = false)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val debug: Boolean = false
Link copied to clipboard
open override val showLlmResponses: Boolean = false
Link copied to clipboard
Link copied to clipboard
val showPlanning: Boolean = false
Link copied to clipboard
open override val showPrompts: Boolean = false

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun withShowLlmResponses(showLlmResponses: Boolean): Verbosity
Link copied to clipboard
fun withShowPlanning(showPlanning: Boolean): Verbosity
Link copied to clipboard
fun withShowPrompts(showPrompts: Boolean): Verbosity