Package org.bsc.langgraph4j
Class CompileConfig.Builder
java.lang.Object
org.bsc.langgraph4j.CompileConfig.Builder
- Enclosing class:
- CompileConfig
This class is a builder for
CompileConfig
. It allows for the configuration of various options
to customize the compilation process.-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Builder
(CompileConfig config) Constructs a new instance ofBuilder
with the specified compile configuration. -
Method Summary
Modifier and TypeMethodDescriptionbuild()
Initializes the compilation configuration and returns it.checkpointSaver
(BaseCheckpointSaver checkpointSaver) Sets the checkpoint saver for the configuration.interruptAfter
(String... interruptAfter) Sets the strings that cause an interrupt in the configuration.interruptBefore
(String... interruptBefore) Sets the actions to be performed before an interruption.interruptsAfter
(Collection<String> interruptsAfter) Sets the collection of strings that specify which interrupts should occur after.interruptsBefore
(Collection<String> interruptsBefore) Sets the collection of interrupts to be executed before the configuration.
-
Constructor Details
-
Builder
Constructs a new instance ofBuilder
with the specified compile configuration.- Parameters:
config
- The compile configuration to be used. This value must not be null.
-
-
Method Details
-
checkpointSaver
Sets the checkpoint saver for the configuration.- Parameters:
checkpointSaver
- TheBaseCheckpointSaver
to set.- Returns:
- The current
Builder
instance for method chaining.
-
interruptBefore
Sets the actions to be performed before an interruption.- Parameters:
interruptBefore
- the actions to be performed before an interruption- Returns:
- a reference to the current instance of Builder
-
interruptAfter
Sets the strings that cause an interrupt in the configuration.- Parameters:
interruptAfter
- An array of string values representing the interruptions.- Returns:
- The current Builder instance, allowing method chaining.
-
interruptsBefore
Sets the collection of interrupts to be executed before the configuration.- Parameters:
interruptsBefore
- The collection of interrupt strings.- Returns:
- This builder instance for method chaining.
-
interruptsAfter
Sets the collection of strings that specify which interrupts should occur after.- Parameters:
interruptsAfter
- Collection of interrupt identifiers- Returns:
- The current Builder instance for method chaining
-
build
Initializes the compilation configuration and returns it.- Returns:
- the compiled
CompileConfig
object
-