Package com.embabel.agent.core
Class Verbosity.Builder
-
- All Implemented Interfaces:
public final class Verbosity.BuilderNested builder for Verbosity objects.
-
-
Method Summary
Modifier and Type Method Description final Verbosity.BuildershowPrompts(Boolean showPrompts)Show or hide the prompts sent to the agent. final Verbosity.BuildershowLlmResponses(Boolean showLlmResponses)Show or hide the responses received from the LLM. final Verbosity.Builderdebug(Boolean debug)Enable or disable debugging output. final Verbosity.BuildershowPlanning(Boolean showPlanning)Show or hide planning steps taken by the agent. final Verbositybuild()Build the Verbosity. -
-
Method Detail
-
showPrompts
final Verbosity.Builder showPrompts(Boolean showPrompts)
Show or hide the prompts sent to the agent.
- Parameters:
showPrompts- whether to display prompts- Returns:
this Builder
-
showLlmResponses
final Verbosity.Builder showLlmResponses(Boolean showLlmResponses)
Show or hide the responses received from the LLM.
- Parameters:
showLlmResponses- whether to display LLM responses- Returns:
this Builder
-
debug
final Verbosity.Builder debug(Boolean debug)
Enable or disable debugging output.
- Parameters:
debug- true to enable debugging, false otherwise- Returns:
this Builder
-
showPlanning
final Verbosity.Builder showPlanning(Boolean showPlanning)
Show or hide planning steps taken by the agent.
- Parameters:
showPlanning- whether to display planning details- Returns:
this Builder
-
-
-
-