Class LangGraphFlow.Builder
java.lang.Object
org.bsc.langgraph4j.studio.springboot.LangGraphFlow.Builder
- Enclosing class:
- LangGraphFlow
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddInputImageArg
(String name) Adds an input image argument to the server configuration with required set to true.addInputImageArg
(String name, boolean required) Adds an input image argument to the server configuration.addInputStringArg
(String name) Adds an input string argument to the server configuration with required set to true.addInputStringArg
(String name, boolean required) Adds an input string argument to the server configuration.build()
compileConfig
(CompileConfig compileConfig) Sets the checkpoint saver for the server.<State extends AgentState>
LangGraphFlow.BuilderstateGraph
(StateGraph<State> stateGraph) Sets the state graph for the server.Sets the title for the server.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
title
Sets the title for the server.- Parameters:
title
- the title to be set- Returns:
- the Builder instance
-
addInputStringArg
Adds an input string argument to the server configuration.- Parameters:
name
- the name of the argumentrequired
- whether the argument is required- Returns:
- the Builder instance
-
addInputStringArg
Adds an input string argument to the server configuration with required set to true.- Parameters:
name
- the name of the argument- Returns:
- the Builder instance
-
addInputImageArg
Adds an input image argument to the server configuration.- Parameters:
name
- the name of the argumentrequired
- whether the argument is required- Returns:
- the Builder instance
-
addInputImageArg
Adds an input image argument to the server configuration with required set to true.- Parameters:
name
- the name of the argument- Returns:
- the Builder instance
-
compileConfig
Sets the checkpoint saver for the server.- Parameters:
compileConfig
- the graph compiler config to be used- Returns:
- the Builder instance
-
stateGraph
Sets the state graph for the server.- Type Parameters:
State
- the type of the state- Parameters:
stateGraph
- the state graph to be used- Returns:
- the Builder instance
-
build
-