Package com.embabel.agent.api.common
Interface AiBuilder
-
- All Implemented Interfaces:
-
com.embabel.agent.core.LlmVerbosity
public interface AiBuilder implements LlmVerbosity
Builder that can be injected into components to obtain Ai instances. Use when you want custom configuration.
-
-
Method Summary
Modifier and Type Method Description abstract Aiai()Build an Ai instance according to the configuration. abstract AiBuilderwithProcessOptions(ProcessOptions options)abstract AiBuilderwithShowPrompts(Boolean show)abstract AiBuilderwithShowLlmResponses(Boolean show)-
-
Method Detail
-
withProcessOptions
abstract AiBuilder withProcessOptions(ProcessOptions options)
-
withShowPrompts
abstract AiBuilder withShowPrompts(Boolean show)
-
withShowLlmResponses
abstract AiBuilder withShowLlmResponses(Boolean show)
-
-
-
-